Advertisement
ouchiess

Untitled

Jun 15th, 2020
2,623
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. F1::
  2. {
  3. Random:
  4.     {
  5.     Loop,
  6.         {
  7.         random, x, 1, 2
  8.         if(x=1)
  9.         goto Left
  10.         else
  11.         goto Right
  12.         }
  13.     }
  14. Left:
  15. {
  16.     Send {Left Down}
  17.     Sleep 150
  18.     Send {c Down} ; Set to teleport key
  19.     Sleep, 200
  20.     Send {c Up} ; Teleport key
  21.     Sleep, 500
  22.     Send {Left Up}
  23.     Sleep 150
  24.     goto KishAttack
  25. }
  26.  
  27. Right:
  28. {
  29.     Send {Right Down}
  30.     Sleep 150
  31.     Send {c Down} ; Set to teleport key
  32.     Sleep, 200
  33.     Send {c Up} ; Teleport key
  34.     Sleep, 500
  35.     Send {Right Up}
  36.     Sleep 150
  37.     goto KishAttack
  38. }
  39.  
  40. KishAttack:
  41. {
  42.     Send {x Down} ; Set to your attack key
  43.     Sleep 150
  44.     Send {x Up} ; Set to attack key
  45.     Sleep 500
  46.     Send {= Down} ; Set to kishin key
  47.     Sleep 300
  48.     Send {= Up} ; Set to kishin key
  49.     Sleep, 150
  50.     goto Random
  51. }
  52. }
  53.  
  54. `::
  55. {
  56. Send {c Up}
  57. Send {x Up}
  58. Send {= Up}
  59. Send {Right Up}
  60. Send {Left Up}
  61. reload
  62. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement