Advertisement
ouchiess

Untitled

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