Advertisement
Guest User

tactics

a guest
Feb 21st, 2020
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.36 KB | None | 0 0
  1. Bob:
  2. put bob
  3. match CounterReset Roundtime
  4. match Dead You turn to face
  5. match Dead There is nothing else to face
  6. matchwait
  7.  
  8. CounterReset:
  9. counter set 0
  10. goto Analyze
  11.  
  12. Analyze:
  13. put analyze
  14. match Dead Analyze what?
  15. match Analyze ...wait
  16. match Analyze You fail to find any holes
  17. match WaitForIt analyze what
  18. match Jab landing a jab
  19. match Feint landing a feint
  20. match Chop landing a chop
  21. match Thrust landing a thrust
  22. match Lunge landing a lunge
  23. match Slice landing a slice
  24. match Draw landing a draw
  25. match Sweep landing a sweep
  26. match Swing landing a swing
  27. match Bash landing a bash
  28. match Slam landing a slam
  29. match Punch landing a punch
  30. match Claw landing a claw
  31. match Kick landing a kick
  32. match Elbow landing an elbow
  33. match Slap landing a slap
  34. match Bite landing a bite
  35. match Butt landing a butt
  36. match Knee landing a knee
  37. match Gouge landing a gouge
  38. matchwait
  39.  
  40. Attack:
  41. counter add 1
  42. put %A
  43. match Attack ...wait
  44. match Dead sand sprite slowly
  45. match Dead howls and falls on its side
  46. match Dead lies still
  47. match Dead falls to the ground like a stone
  48. match Dead falls still
  49. match Dead falls over with a *THUD*
  50. match Dead one last time and collapses
  51. match Dead before closing its eyes forever
  52. match Dead crumples to the ground
  53. match Dead with a heavy thud
  54. match Dead ceases all movement
  55. match Dead ceasing all movement
  56. match Exp4 combat expertise
  57. match Analyze Roundtime
  58. matchwait
  59.  
  60. FatigueCheck:
  61. put fatigue
  62. match BalanceCheck slightly fatigued
  63. match BalanceCheck rested
  64. match BalanceCycle somewhat tired
  65. match BalanceCycle You are tired
  66. match BalanceCycle You are fatigued
  67. match BalanceCycle worn-out
  68. match BalanceCycle You are beat
  69. match BalanceCycle exhausted
  70. matchwait
  71.  
  72. BalanceCheck:
  73. put balance
  74. match Exp%c nimbly balanced
  75. match Exp%c adeptly balanced
  76. match Exp%c incredibly balanced
  77. match BalanceCycle slightly off
  78. match BalanceCycle solidly balanced
  79. match BalanceCycle You are off balance
  80. match BalanceCycle You are somewhat off
  81. match BalanceCycle badly balanced
  82. match BalanceCycle imbalanced
  83. match BalanceCycle unbalanced
  84. matchwait
  85.  
  86. BalanceCycle:
  87. pause 3
  88. put bob
  89. waitfor Roundtime
  90. goto FatigueCheck
  91.  
  92.  
  93. Dead:
  94. pause 1
  95. put skin %1
  96. pause 2
  97. put loot %1
  98. goto BalanceCycle
  99.  
  100. Exp0:
  101. Exp1:
  102. Exp2:
  103. Exp3:
  104. goto Analyze
  105.  
  106. Exp4:
  107. pause 1
  108. put exp tactic
  109. match Done 34/34
  110. match Done 33/34
  111. match CounterReset /34
  112. matchwait
  113.  
  114. WaitForIt:
  115. pause 20
  116. goto Bob
  117.  
  118. Done:
  119. pause 1
  120. echo
  121. echo *************************
  122. echo
  123. echo *** Tactics mind locked ***
  124. echo
  125. echo *************************
  126. echo
  127. Exit
  128.  
  129. Jab:
  130. setvariable A jab
  131. goto Attack
  132.  
  133. Feint:
  134. setvariable A feint
  135. goto Attack
  136.  
  137. Chop:
  138. setvariable A chop
  139. goto Attack
  140.  
  141. Thrust:
  142. setvariable A thrust
  143. goto Attack
  144.  
  145. Lunge:
  146. setvariable A lunge
  147. goto Attack
  148.  
  149. Slice:
  150. setvariable A slice
  151. goto Attack
  152.  
  153. Draw:
  154. setvariable A draw
  155. goto Attack
  156.  
  157. Sweep:
  158. setvariable A sweep
  159. goto Attack
  160.  
  161. Swing:
  162. setvariable A swing
  163. goto Attack
  164.  
  165. Bash:
  166. setvariable A bash
  167. goto Attack
  168.  
  169. Slam:
  170. setvariable A slam
  171. goto Attack
  172.  
  173. Punch:
  174. setvariable A punch
  175. goto Attack
  176.  
  177. Claw:
  178. setvariable A claw
  179. goto Attack
  180.  
  181. Kick:
  182. setvariable A kick
  183. goto Attack
  184.  
  185. Elbow:
  186. setvariable A elbow
  187. goto Attack
  188.  
  189. Slap:
  190. setvariable A slap
  191. goto Attack
  192.  
  193. Bite:
  194. setvariable A bite
  195. goto Attack
  196.  
  197. Butt:
  198. setvariable A butt
  199. goto Attack
  200.  
  201. Knee:
  202. setvariable A knee
  203. goto Attack
  204.  
  205. Gouge:
  206. setvariable A gouge
  207. goto attack
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement