Jump to content

Recommended Posts

Posted

Is there a faster way to modify using the tool table? Adding 450 lapiz lazuli to a pickaxe 2 at a time is quite the time sink. I've tried dozens of combinations of clicking/shift/alt/control/etc... and can't seem to get it to apply by the stack. Thanks

Posted

I didn't even realize I could use blocks. Duhhh. Also I didn't realize minecraft had any kind of macro support so I'll check into that. Thanks!

Posted

While there is a mod that allows you to make macros in game, I'd suggest downloading autohotkey and making a script like the following


^Space::

Loop, n

{

WinWait, Hexxit, 

IfWinNotActive, Hexxit, , WinActivate, Hexxit, 

WinWaitActive, Hexxit, 

MouseClick, left,  xxx,  yyy

Sleep, 2

MouseClick, left,  xxx,  yyy

Sleep, 2

}

Return

Get the mouse coordinates you'd need and just jam ctrl + Space to get it moving, edit how many times you want it to loop.

I know it's basic, but I haven't really worked with it that much yet.

Posted

Oh man, I totally forgot, add


Esc::ExitApp

To the end of any hotkey file, else it'll just infinitely loop and you won't be able to shut it down if something goes wrong >.>

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...