Advertisement
Sanwi

AutoSprint

Aug 17th, 2014
576
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. $${
  2. //Loops forward and sprint keys to autorun
  3. // Remove the comment tags (//) from before keyup(jump); and keydown(jump); to make the script jump while it's sprinting
  4.  
  5. if(autowalk);
  6. unset(autowalk);
  7. keyup(sprint);
  8. keyup(forward);
  9. // keyup(jump);
  10. stop();
  11. else;
  12. set(autowalk);
  13. do;
  14. keydown(sprint);
  15. keydown(forward);
  16. while(autowalk);
  17. endif;
  18. }$$
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement