Advertisement
Domagoj_Vida

HAXBALL MACRO

Jun 27th, 2019
1,524
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. /*
  2. Use ScrollLock to toggle this script on/off, usable at www.haxball.com/play
  3. */
  4.  
  5. ;splashtext
  6.  
  7. Progress, B1 w400 cwFFFFFF fs18 zh0, Use ScrollLock to toggle the script`n On/Off, , , Arial
  8. Sleep 3000
  9. Progress, Off
  10.  
  11.  
  12. ~Tab::
  13. if ( GetKeyState("ScrollLock", "T") ) ; this will be 'true' if ScrollLock is toggled 'on'
  14. Suspend, On
  15. Else
  16. send {}
  17. return
  18.  
  19. ~Enter::Suspend, Off
  20.  
  21. ;double kick
  22. $z::
  23. if ( GetKeyState("ScrollLock", "T") ) ; this will be 'true' if ScrollLock is toggled 'on'
  24. {send, {x down}
  25. sleep, 10
  26. send, {x up}
  27. sleep, 25
  28. send, {x down}
  29. sleep, 10
  30. send, {x up}
  31. sleep, 300
  32. }
  33. else send z
  34. return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement