Advertisement
Guest User

Untitled

a guest
Feb 20th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. f1::
  2. while (true) {
  3.     comboCounter := 0
  4.     while(comboCounter < 3) {
  5.         fiveSSC()
  6.         sleep 300
  7.         comboCounter += 1
  8.     }
  9.     regen()
  10.     sleep 6000
  11. }
  12. Return
  13.  
  14. fiveSSC() {
  15.     counter := 0
  16.     skill("Enter")
  17.     sleep 250
  18.     while (counter < 2) {
  19.         skill("h")
  20.         sleep 250
  21.         skill("Enter")
  22.         sleep 250
  23.         counter += 1
  24.     }
  25. }
  26.  
  27. regen() {
  28.     SendInput, {x down}
  29.     sleep 200
  30.     SendInput, {n down}
  31.     SendInput, {x up}
  32.     sleep 200
  33.     SendInput, {n up}
  34. }
  35.  
  36. skill(key) {
  37.     sleep 50
  38.     SendInput, {%key% down}
  39.     sleep 50
  40.     SendInput, {%key% up}
  41.     sleep 50
  42. }
  43.  
  44. f2::
  45. Reload
  46. Return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement