What's new
  • Visit Rebornbuddy
  • Visit Resources
  • Visit API Documentation
  • Visit Downloads
  • Visit Portal
  • Visit Panda Profiles
  • Visit LLamamMagic

Code for running back, jump and drop back

tictoc

Member
Joined
Sep 21, 2012
Messages
380
Reaction score
5
I am looking how to implement a jump and drop back.

I can drop back with
Code:
UseSkill("Drop Back");
I seem to be able to jump and drop back with
Code:
try { Jump(true); UseSkill("Drop Back"); } finally { Jump(false); }

But i want to jump, run backwards and drop back at nearly the same time. How can i code that?

My Bonus Question is how to turn exactly 180 degrees :-)
 
You can use this i think ?
MoveBackward(true);
UseSkill("Drop back");
Thread.Sleep(2000);
MoveBackward(false);
 
Back
Top