Perfect Wall Jump Macro (using /dump command)

08/18/2009 12:00 jitsuk#1
Just copy any of the following into a macro to do the jump very simple!

Jump then Forward


/dump JumpOrAscendStart()
/dump MoveForwardStart(GetTime()*1000 + 1000);
/dump MoveForwardStop(GetTime()*1000 + 2000);

Forward Jump


/dump MoveForwardStart(GetTime()*1000 + 1000);
/dump JumpOrAscendStart()
/dump MoveForwardStop(GetTime()*1000 + 2000);

Jump Backwards

/dump MoveBackwardStart(GetTime()*1000 + 1000);
/dump JumpOrAscendStart()
/dump MoveBackwardStop(GetTime()*1000 + 2000);

Jump then move backwards

/dump JumpOrAscendStart()
/dump MoveBackwardStart(GetTime()*1000 + 1000);
/dump MoveBackwardStop(GetTime()*1000 + 2000);

Jump Left

/dump StrafeLeftStart(GetTime()*1000 + 1000);
/dump JumpOrAscendStart()
/dump StrafeLeftStop(GetTime()*1000 + 2000);

Jump then Strafe Left

/dump JumpOrAscendStart()
/dump StrafeLeftStart(GetTime()*1000 + 1000);
/dump StrafeLeftStop(GetTime()*1000 + 2000);


Jump Right

/dump StrafeRightStart(GetTime()*1000 + 1000);
/dump JumpOrAscendStart()
/dump StrafeRightStop(GetTime()*1000 + 2000);

Jump then Strafe Right

/dump JumpOrAscendStart()
/dump StrafeRightStart(GetTime()*1000 + 1000);
/dump StrafeRightStop(GetTime()*1000 + 2000);


Enjoy before its fixed!
08/20/2009 07:49 komat#2
fixed