Advertisement
Guest User

Untitled

a guest
Jun 29th, 2016
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 57.14 KB | None | 0 0
  1. #### THE MAX-KHY HUNTING SCRIPT VERSION ?.IDUNNO ####
  2.  
  3.  
  4. ########### YOU NEED TO READ THE INSTRUCTIONS TO USE THIS, BUT YOU CAN DO IT! ##################
  5.  
  6. ############################## BASIC USE NOTES ################################################
  7. ###
  8. ### 1. This script swaps two gloves of your choice for training 2 additional amors.
  9. ### 2. You can choose to skin or arranage for skin/bone/parts.
  10. ### 3. This script will lock a weapon and move on; it takes a long time to make it to the end.
  11. ### 3. Therefore, you can choose which weapon in the cycle you wish to start with (good for backtraining).
  12. ### 4. There's an optional section for exiting combat to train out-of-combat skills.
  13. ### 5. There are lots of variables: weapons, ammo, spells, mana, camb, critter deaths
  14. ### 6. You've got to fill in these variables with your weapons, etc. for the script to work.
  15. ### 7. Note the hashtag symbol ('#'). This blocks a line and thus functions as a toggle.
  16.  
  17.  
  18. ####### <------------------------SKINNING VARIABLE SECTION---------------------------> #######
  19. ####### #######
  20. ####### HERE ARE THE VARIABLES TO SIMPLY SKIN AND/OR ARRANGE FOR SKINS, BONES OR PARTS #######
  21. ####### REMEMBER, THE ('#') SYMBOL IS USED TO TOGGLE #######
  22.  
  23. #setVariable animalpart bone
  24. setVariable animalpart skin
  25. #setVariable animalpart part
  26.  
  27. #setVariable arrange yes
  28. setVariable arrange no
  29.  
  30.  
  31. ####### <----------------------- SPELL & CAMB VARIABLE SECTION ----------------------> #######
  32. ####### #######
  33. ####### SPELL VARIABLES: SET SPELL NAME & MANA #######
  34. ####### CAMBBRINTH ITEMS ARE USED WITH THE 'WARDING' SPELL #######
  35. ####### SPELLS CAN ACTUALLY BE ANY SPELLS - THEY DON'T NEED TO BE AUG/WARDING/CYCLICS #######
  36.  
  37.  
  38. setVariable cyclicspell dalu
  39. setVariable cyclicmana 5
  40. setVariable augspell name
  41. setVariable augmana 30
  42. setVariable wardspell harmony
  43. setVariable wardmana 30
  44. setVariable cambrinth1 cambrinth fox
  45. setVariable camb1mana 10
  46. setVariable cambrinth2 cambrinth cufflinks
  47. setVariable camb2mana 4
  48.  
  49. setVariable snapspell rage
  50. setVariable snapmana 15
  51. setVariable snapseconds 8
  52.  
  53.  
  54.  
  55. ####### <--------------------- THESE ARE YOUR WEAPON VARIABLES SECTION -------------> #######
  56. ####### #######
  57. ####### HERE YOU WRITE THE SPECIFIC WEAPON YOU WANT TO USE FOR EACH TYPE #######
  58. ####### THIS INCLUDES YOUR TM SPELL NAME AND MANA LEVEL #######
  59. ####### THE LIST IS IN THE ORDER OF THE WEAPON CYCLE #######
  60. ####### POLEARMS TRAINS TACTICS AND THE WEAPONS MUST MATCH THE WEAPON TYPE #######
  61. ####### DONT FORGET TO INCLUDE THE CROSSBOW BOLT AMMO VARIABLE AT THE BOTTOM #######
  62.  
  63. setVariable ht svidaw sis
  64. setVariable tm bos
  65. setVariable tmmana 5
  66. setVariable polearm scythe
  67. setVariable offhand cuska
  68. setVariable lt cuska
  69. setVariable bow shortbow
  70. setVariable crossbow stonebow
  71. setVariable the warring axe
  72. setVariable sb cuska
  73. setVariable se sickle
  74. setVariable le boarding axe
  75. setVariable lb svidaw sis
  76. setVariable thb flail
  77. setVariable stave nightstick
  78. setVariable sling sling
  79.  
  80. setVariable crossammo shard
  81. setVariable slingammo shard
  82.  
  83.  
  84.  
  85. ####### <------------------------- WEAPON START VARIABLE ---------------------------> #######
  86. ####### #######
  87. ####### HERE ARE TWO IMPORTANT VARIABLES #######
  88. ####### SET THE NUMBER TO THE WEAPON'S PLACE IN THE CYCLE YOU WISH TO START WIH #######
  89. ####### EXAMPLE: IF THE SEVENTH WEAPON IN YOUR LIST IS 'BOW' - counter set 7 #######
  90. ####### THIS WILL ALSO CYCLE BACK TO THIS AS THE FIRST WEAPON #######
  91. ####### THE SECOND NUMBER CAN RESTART THE CYCLE AT A NEW POINT #######
  92.  
  93. counter set 7
  94.  
  95.  
  96.  
  97.  
  98. ####### <--------------- GET/STOW/WEAR/TIE VARIABLES FOR WEAPONS -------------------> #######
  99. ####### #######
  100. ####### HERE YOU SPECIFY BOTH THE STOW AND GET MESSAGING FOR ALL OF YOUR WEAPONS #######
  101. ####### YOU CAN WRITE A VARIABLE TO DO WHAT YOU NEED; STOW, TIE, UNTE, WEAR, REMOVE #######
  102. ####### THIS USES THE PREVIOUS VARIABLES YOU SET FOR YOUR WEAPONS #######
  103.  
  104.  
  105. setVariable stowht stow my %ht
  106. setVariable stowpole tie my %polearm to my willowy toolstrap
  107. setVariable stowlt stow my %lt
  108. setVariable stowse stow my %se
  109. setVariable stowsb stow my %sb
  110. setVariable stowbow stow my %bow
  111. setVariable stowoff stow my %offhand
  112. setVariable stowthe tie my %the to my steel-plated bandolier
  113. setVariable stowle tie my %le to my steel-plated bandolier
  114. setVariable stowlb stow my %lb
  115. setVariable stowthb stow my %thb
  116. setVariable stowstave tie my %stave to my leather toolstrap
  117. setVariable stowxbow stow my %crossbow
  118. setVariable stowsling stow my %sling
  119.  
  120. setVariable getht get my %ht
  121. setVariable getpole untie my %polearm from my willowy toolstrap
  122. setVariable getlt get my %lt
  123. setVariable getse get my %se
  124. setVariable getsb get my %sb
  125. setVariable getbow get my %bow
  126. setVariable getoff get my %offhand
  127. setVariable getthe untie my %the from my steel-plated bandolier
  128. setVariable getle untie my %le from my steel-plated bandolier
  129. setVariable getlb get my %lb
  130. setVariable getthb get my %thb
  131. setVariable getstave untie my %stave from my leather toolstrap
  132. setVariable getxbow get my %crossbow
  133. setVariable getsling get my %sling
  134.  
  135.  
  136.  
  137. ####### <------------ THESE ARE VARIABLES OF CRITTER DEATH MESSAGES ----------> #######
  138. ####### #######
  139. ####### YOU WILL NEED TO ADD NEW CRITTER DEATH MESSAGING AS NEEDED #######
  140. ####### 'skin' VARIABLE IS DEFUNCT, BUT LEFT FOR POSTERITY #######
  141.  
  142. setVariable death prereni softly exhales its final breath|death before collapsing.|deflate slightly.|collapses, her dance stilled at last.|firecat falls to the ground and|A fire sprite screams in anguish and lies still.|her dance stilled at last.|The fire maiden screams in anguish and lies still.|blood wolf whines|A rock troll collapses|grendel grunts|boar screams|topples over|flutters|ground and lies|uncoils rapidly|falls still.|lies still.|ceases all|all movement.|deer softly exhales its final breath.|and drops dead.|falls on its side, dead.|and dies.|before it dies.|antennae twitching feebly.|twitch now and then.|ground like a stone.|pile of stone rubble.|dies out completely.|falls into a heap.|worthless pottery shards.
  143.  
  144. setVariable skin prereni which appears|viper which appears|leucro which appears|crocodile which appears|blood wolf which appears|young firecat which appears|immature firecat which appears|maiden which appears dead|rock troll which appears|eel which appears dead|faenrae reaver which appears dead|sprite which appears|boar which appears|paper which appears|rat which appears|cougar which appears|hog which appears|goblin which appears|troll which appears|wind hound which appears|deer which appears dead|kobold which appears|jackal which appears|wasp which appears|wolf which appears|ghoul which appears|bobcat which appears|pothanit which appears|trollkin which appears|beisswurm which appears|spider which appears|shaman which appears|grub which appears|burrower which appears|scout which appears|rubble which appears|hound which appears|lout which appears|snowbeast which appears|archer which appears|mage which appears|soldier which appears
  145.  
  146.  
  147.  
  148.  
  149. ####### <------------ OPTIONAL SKILL CHECK TO TRAIN OUT-OF-COMBAT SKILLS ---------> #######
  150. ####### #######
  151. ####### THIS WILL EXIT COMBAT AND RUN TO A SAFE PLACE TO TRAI OUT-OF-COMBAT SKILLS #######
  152. ####### THIS IS ALSO THE START/TOP OF THE SCRIPT #######
  153. ####### YOU WILL NEED TO EDIT THE MOVEMENTS & ADD ANY DESIRED SKILL TRAINING #######
  154. ####### THIS IS LOCATED AT THE VERY BOTTOM OF THE SCRIPT #######
  155. ####### EDIT THE EXPERIENCE CHECK FOR WHEN YOU WISH TO LEAVE COMBAT #######
  156. ####### USE THE '#' SYMBOL TO TOGGLE BETWEEN LEAVING TO TRAIN OR NOT #######
  157.  
  158.  
  159. TOP:
  160. #goto PERFORMANCE_EXP
  161. goto CYCLIC_RELEASE
  162.  
  163. PERFORMANCE_EXP:
  164. put exp performance
  165. matchre PERFORMANCE_EXP /...wait|Sorry, you|still stunned./
  166. matchre CYCLIC_RELEASE /dabbling|perusing|thoughtful|thinking|considering|pondering|ruminating|concentrating|attentive|deliberative|interested|examining|understanding|absorbing|intrigued|scrutinizing|analyzing|studious|focused|very focused|engaged|very engaged|cogitating|fascinated|captivated|engrossed|riveted|very riveted|rapt|very rapt|enthralled|nearly locked|mind lock/
  167. match GTFO_RUN_AWAY clear
  168. matchwait
  169.  
  170.  
  171. #################################################
  172. ### BEGINS CYCLIC SPELL SECTION
  173. #################################################
  174.  
  175. PREP_CYCLIC:
  176. put prep %cyclicspell %cyclicmana
  177. matchre PREP_CYCLIC /...wait|Sorry, you|still stunned./
  178. match TIE_CYCLIC_1 You begin
  179. matchwait
  180.  
  181. TIE_CYCLIC_1:
  182. put %stowpole
  183. matchre TIE_CYCLIC_1 /...wait|Sorry, you|still stunned./
  184. matchre TIE_CYCLIC_2 /You put|You attach|You sling|You must|You are already|Stow what?/
  185. matchwait
  186.  
  187. TIE_CYCLIC_2:
  188. put %stowstave
  189. matchre TIE_CYCLIC_2 /...wait|Sorry, you|still stunned./
  190. matchre TIE_CYCLIC_3 /You put|You attach|You sling|You must|You are already|Stow what?/
  191. matchwait
  192.  
  193. TIE_CYCLIC_3:
  194. put %stowle
  195. matchre TIE_CYCLIC_3 /...wait|Sorry, you|still stunned./
  196. matchre TIE_CYCLIC_4 /You put|You attach|You sling|You must|You are already|Stow what?/
  197. matchwait
  198.  
  199. TIE_CYCLIC_4:
  200. put %stowthe
  201. matchre TIE_CYCLIC_4 /...wait|Sorry, you|still stunned./
  202. matchre STOW_CYCLIC_1 /You put|You attach|You sling|You must|You are already|Stow what?/
  203. matchwait
  204.  
  205. STOW_CYCLIC_1:
  206. put stow right
  207. matchre STOW_CYCLIC_1 /...wait|Sorry, you|still stunned./
  208. matchre STOW_CYCLIC_2 /You put|You attach|You sling|You must|You are already|Stow what?/
  209. matchwait
  210.  
  211. STOW_CYCLIC_2:
  212. put stow left
  213. matchre STOW_CYCLIC_2 /...wait|Sorry, you|still stunned./
  214. matchre STOW_CYCLIC_LT /You put|You attach|You sling|You must|You are already|Stow what?/
  215. matchwait
  216.  
  217. STOW_CYCLIC_LT:
  218. put %stowlt
  219. matchre STOW_CYCLIC_LT /...wait|Sorry, you|still stunned./
  220. matchre STOW_CYCLIC_HT /You put|You attach|You sling|You must|You are already|Stow what?/
  221. matchwait
  222.  
  223. STOW_CYCLIC_HT:
  224. put %stowht
  225. matchre STOW_CYCLIC_HT /...wait|Sorry, you|still stunned./
  226. match CAST_CYCLIC You feel fully prepared to cast
  227. matchre CAST_CYCLIC_PAUSE /You put|You attach|You sling|You must|You are already|Stow what?/
  228. matchwait
  229.  
  230. CAST_CYCLIC_PAUSE:
  231. pause 5
  232. goto CAST_CYCLIC
  233.  
  234. CAST_CYCLIC:
  235. put cast
  236. matchre CAST_CYCLIC /...wait|Sorry, you|still stunned./
  237. matchre BARDWHISTLE1 /You release|You gesture./
  238. match CYCLIC_RELEASE two cyclic spells at once is beyond
  239. matchwait
  240.  
  241. CYCLIC_RELEASE:
  242. put release
  243. goto PREP_CYCLIC
  244.  
  245. #################################################
  246. ### ENDS CYCLIC SPELL SECTION
  247. #################################################
  248.  
  249.  
  250. #################################################
  251. ### PICK UP LOOT, AMMO, (BARD WHISTLE TOO)
  252. #################################################
  253.  
  254. BARDWHISTLE1:
  255. put whistle piercing
  256. pause 3
  257. put scream concussive
  258. goto GETCOINS
  259.  
  260. GETCOINS:
  261. put stow coin
  262. matchre GETCOINS /...wait|Sorry, you|still stunned.|You pick up/
  263. match GETGEMS Stow what?
  264. matchwait
  265.  
  266. GETGEMS:
  267. put stow gem
  268. matchre GETGEMS /...wait|Sorry, you|still stunned.|You pick up/
  269. match GETTINROCKS Stow what?
  270. matchwait
  271.  
  272. GETTINROCKS:
  273. put stow %slingammo
  274. matchre GETTINROCKS /...wait|Sorry, you|still stunned.|You pick up/
  275. match GETTINXBOWAMMO Stow what?
  276. matchwait
  277.  
  278. GETTINXBOWAMMO:
  279. put stow %crossammo
  280. matchre GETTINXBOWAMMO /...wait|Sorry, you|still stunned.|You pick up/
  281. match GETTINARROWS Stow what?
  282. matchwait
  283.  
  284. GETTINARROWS:
  285. put stow arrow
  286. matchre GETTINARROWS /...wait|Sorry, you|still stunned.|You pick up/
  287. match REMOVEGLOVES Stow what?
  288. matchwait
  289.  
  290. #################################################
  291. ### END PICK UP LOOT/AMMO SECTION
  292. #################################################
  293.  
  294.  
  295. #################################################
  296. ### ARMOR SWAP SECTION (TWO GLOVES)
  297. #################################################
  298.  
  299. REMOVEGLOVES:
  300. put remove my gloves
  301. matchre REMOVEGLOVES /...wait|Sorry, you|still stunned./
  302. matchre STOWGLOVES /Remove what?|You pull off/
  303. matchwait
  304.  
  305. STOWGLOVES:
  306. put stow my gloves
  307. matchre STOWGLOVES /...wait|Sorry, you|still stunned./
  308. matchre GETOTHERGLOVES /You put|You pick up|Stow what?/
  309. matchwait
  310.  
  311. GETOTHERGLOVES:
  312. put get my other gloves
  313. matchre GETOTHERGLOVES /...wait|Sorry, you|still stunned./
  314. match WEAROTHERGLOVES You get
  315. matchwait
  316.  
  317. WEAROTHERGLOVES:
  318. put wear my gloves
  319. matchre WEAROTHERGLOVES /...wait|Sorry, you|still stunned./
  320. matchre EXP_SHIELD_CHECK /Wear what?|You slip/
  321. matchwait
  322.  
  323. #################################################
  324. ### END ARMOR SWAP SECTION (TWO GLOVES)
  325. #################################################
  326.  
  327.  
  328. #################################################
  329. ### SHIELD/PARRY SWAP SECTION
  330. #################################################
  331.  
  332. EXP_SHIELD_CHECK:
  333. put exp shield
  334. matchre EXP_SHIELD_CHECK /...wait|Sorry, you|still stunned./
  335. match PARRYSTANCE mind lock
  336. match SHIELDSTANCE clear
  337. matchwait
  338.  
  339. PARRYSTANCE:
  340. put stance parry
  341. matchre PARRYSTANCE /...wait|Sorry, you|still stunned./
  342. match HUNTROUTINEEXP You are now set
  343. matchwait
  344.  
  345. SHIELDSTANCE:
  346. put stance shield
  347. matchre SHIELDSTANCE /...wait|Sorry, you|still stunned./
  348. match HUNTROUTINEEXP You are now set
  349. matchwait
  350.  
  351. #################################################
  352. ### END SHIELD/PARRY SWAP SECTION
  353. #################################################
  354.  
  355.  
  356. #################################################
  357. #### DEBILITATION SPELL SECTION
  358. # REMOVED
  359. #### ENDING PRE_DEBIL SECTION
  360. #################################################
  361.  
  362.  
  363. #################################################
  364. ### HUNT SECTION (PERCEPTIO)
  365. #################################################
  366.  
  367. HUNTROUTINEEXP:
  368. put exp Perception
  369. matchre HUNTROUTINEEXP /...wait|Sorry, you|still stunned./
  370. matchre SPELL_CYCLE /mind lock|nearly locked|enthralled/
  371. match HUNTROUTINE clear
  372. matchwait
  373.  
  374. HUNTROUTINE:
  375. put hunt
  376. matchre HUNTROUTINE /...wait|Sorry, you|still stunned./
  377. match SPELL_CYCLE You take note
  378. matchwait
  379.  
  380. #################################################
  381. ### END HUNT SECTION (PERCEPTION)
  382. #################################################
  383.  
  384.  
  385. #################################################
  386. ### SPELL CYCLE SECTON: ALTERNATES WITH WEAPON CYCLE
  387. #################################################
  388.  
  389. SPELL_CYCLE:
  390. GOTO SPELL%c
  391.  
  392. SPELL1:
  393. GOTO AUGCHECK
  394. SPELL3:
  395. GOTO AUGCHECK
  396. SPELL5:
  397. GOTO AUGCHECK
  398. SPELL7:
  399. GOTO AUGCHECK
  400. SPELL9:
  401. GOTO AUGCHECK
  402. SPELL11:
  403. GOTO AUGCHECK
  404. SPELL13:
  405. GOTO AUGCHECK
  406. SPELL15:
  407. GOTO AUGCHECK
  408.  
  409. SPELL2:
  410. GOTO WARDING_CHECK
  411. SPELL4:
  412. GOTO WARDING_CHECK
  413. SPELL6:
  414. GOTO WARDING_CHECK
  415. SPELL8:
  416. GOTO WARDING_CHECK
  417. SPELL10:
  418. GOTO WARDING_CHECK
  419. SPELL12:
  420. GOTO WARDING_CHECK
  421. SPELL14:
  422. GOTO WARDING_CHECK
  423. SPELL16:
  424. GOTO WARDING_CHECK
  425.  
  426. #################################################
  427. ### END SPELL CYCLE SECTION
  428. #################################################
  429.  
  430.  
  431. #################################################
  432. ### RESONANCE SECTION HAS BEEN REMOVED
  433. #################################################
  434.  
  435.  
  436. #################################################
  437. ### AUGMENTATION SPELL SECTION
  438. #################################################
  439.  
  440. AUGCHECK:
  441. put exp Augmentation
  442. matchre AUGCHECK /...wait|Sorry, you|still stunned./
  443. matchre WEAPON_CYCLE /mind lock|nearly locked|enthralled/
  444. match PREP_AUG clear
  445. matchwait
  446.  
  447. PREP_AUG:
  448. put prep %augspell %augmana
  449. matchre PREP_AUG /...wait|Sorry, you|still stunned./
  450. matchre AUG_CIRCLE /You trace|With a mnemonic tune/
  451. matchwait
  452.  
  453. AUG_CIRCLE:
  454. put circle
  455. matchre AUG_CIRCLE /...wait|Sorry, you|still stunned./
  456. matchre AUG_WEAVE /You aren't close|You must be closer|Roundtime/
  457. match AUG_WEAVE There is nothing else
  458. match AUG_CAST You feel fully prepared to cast
  459. matchwait
  460.  
  461. AUG_WEAVE:
  462. put shove
  463. matchre AUG_WEAVE /...wait|Sorry, you|still stunned./
  464. match AUG_CAST You feel fully prepared to cast
  465. matchwait
  466.  
  467. AUG_CAST:
  468. put cast
  469. matchre AUG_CAST /...wait|Sorry, you|still stunned./
  470. matchre SNAPCAST_PREP_1 /You gesture.|backfires|You strain,|Your blood rises as images of ferocious battles/
  471. matchwait
  472.  
  473. SNAPCAST_PREP_1:
  474. put prep %snapspell %snapmana
  475. pause %snapseconds
  476. put cast
  477. goto WEAPON_CYCLE
  478.  
  479. #################################################
  480. ### END AUGMENTATION SPELL SECTON
  481. #################################################
  482.  
  483.  
  484. #################################################
  485. ### WARDING SPELL SECTION (USES CAMBRINTH)
  486. #################################################
  487.  
  488. WARDING_CHECK:
  489. put exp Warding
  490. matchre WARDING_CHECK /...wait|Sorry, you|still stunned./
  491. matchre WEAPON_CYCLE /mind lock|nearly locked|enthralled/
  492. match PREP_WARDING clear
  493. matchwait
  494.  
  495. PREP_WARDING:
  496. put prep %wardspell %wardmana
  497. matchre PREP_WARDING /...wait|Sorry, you|still stunned./
  498. matchre CAMBRINTH_WARD_1 /You trace|With a mnemonic tune/
  499. matchwait
  500.  
  501. CAMBRINTH_WARD_1:
  502. put charge my %cambrinth1 %camb1mana
  503. matchre CAMBRINTH_WARD_1 /...wait|Sorry, you|still stunned./
  504. match INVOKE_CAMBRINTH_1_WARD You are able
  505. match WEAR_CAMBRINTH_1_WARD You strain,
  506. matchwait
  507.  
  508. INVOKE_CAMBRINTH_1_WARD:
  509. put invoke my %cambrinth1
  510. matchre INVOKE_CAMBRINTH_1_WARD /...wait|Sorry, you|still stunned./
  511. matchre CAMBRINTH_WARD_2 /pulses with|pulse with|is intact./
  512. matchwait
  513.  
  514. CAMBRINTH_WARD_2:
  515. put charge my %cambrinth2 %camb2mana
  516. matchre CAMBRINTH_WARD_2 /...wait|Sorry, you|still stunned./
  517. match INVOKE_CAMBRINTH_2_WARD You are able
  518. match WEAR_CAMBRINTH_2_WARD You strain,
  519. matchwait
  520.  
  521. INVOKE_CAMBRINTH_2_WARD:
  522. put invoke my %cambrinth2
  523. matchre INVOKE_CAMBRINTH_2_WARD /...wait|Sorry, you|still stunned./
  524. match CAST_WARDING You feel fully prepared to cast
  525. matchwait
  526.  
  527. CAST_WARDING:
  528. put cast
  529. matchre CAST_WARDING /...wait|Sorry, you|still stunned./
  530. matchre SNAPCAST_PREP_2 /backfires|You strain,|You gesture./
  531. matchwait
  532.  
  533. SNAPCAST_PREP_2:
  534. put prep %snapspell %snapmana
  535. pause %snapseconds
  536. put cast
  537. goto WEAPON_CYCLE
  538.  
  539. #################################################
  540. ### END WARDING SPELL SECTION (USES CAMBRINTH)
  541. #################################################
  542.  
  543.  
  544. #################################################
  545. ### START OF EXP/WEAPON CYCLE VARIABLE
  546. #################################################
  547.  
  548. WEAPON_CYCLE:
  549. put whistle piercing
  550. pause 3
  551. put scream concussive
  552. goto WEAPON%c
  553. matchwait
  554.  
  555. WEAPON_CYCLE_2:
  556. counter set 7
  557. pause
  558. put whistle piercing
  559. pause 3
  560. put scream concussive
  561. goto WEAPON%c
  562. matchwait
  563.  
  564. #################################################
  565. ### END OF EXP/WEAPON CYCLE VARIABLE
  566. #################################################
  567.  
  568.  
  569. #################################################
  570. ### EXP CHECKING SECTION
  571. #################################################
  572.  
  573. WEAPON1:
  574. put exp Heavy Thrown
  575. matchre WEAPON1 /...wait|Sorry, you|still stunned./
  576. match HT_STOW mind lock
  577. match HT_THROW clear
  578. matchwait
  579.  
  580. HT_STOW:
  581. counter add 1
  582. put %stowht
  583. matchre HT_STOW /...wait|Sorry, you|still stunned./
  584. matchre WEAPON2 /You put|You attach|You sling|You must|You are already|Stow what?/
  585. matchwait
  586.  
  587.  
  588. WEAPON2:
  589. put exp Targeted Magic
  590. matchre WEAPON2 /...wait|Sorry, you|still stunned./
  591. match TMCOUNTER mind lock
  592. match STOW_TM clear
  593. matchwait
  594.  
  595. TMCOUNTER:
  596. counter add 1
  597. goto WEAPON3
  598.  
  599.  
  600. WEAPON3:
  601. put exp Polearms
  602. matchre WEAPON3 /...wait|Sorry, you|still stunned./
  603. match POLE_WEAR mind lock
  604. match REMOVE_POLEARM clear
  605. matchwait
  606.  
  607. POLE_WEAR:
  608. counter add 1
  609. put %stowpole
  610. matchre POLE_WEAR /...wait|Sorry, you|still stunned./
  611. matchre WEAPON4 /You put|You attach|You sling|You must|You are already|Stow what?/
  612. matchwait
  613.  
  614.  
  615. WEAPON4:
  616. put exp Brawling
  617. matchre WEAPON4 /...wait|Sorry, you|still stunned./
  618. match BRAWLCOUNTER mind lock
  619. match BRAWLATTACK clear
  620. matchwait
  621.  
  622. BRAWLCOUNTER:
  623. counter add 1
  624. goto WEAPON5
  625.  
  626.  
  627. WEAPON5:
  628. put exp Offhand
  629. matchre WEAPON5 /...wait|Sorry, you|still stunned./
  630. match OFFHANDSTOW mind lock
  631. match OFFHANDSTANCE clear
  632. matchwait
  633.  
  634. OFFHANDSTOW:
  635. counter add 1
  636. put %stowlt
  637. matchre OFFHANDSTOW /...wait|Sorry, you|still stunned./
  638. matchre WEAPON6 /You put|You attach|You sling|You must|You are already|Stow what?/
  639. matchwait
  640.  
  641.  
  642. WEAPON6:
  643. put exp Light Thrown
  644. matchre WEAPON6 /...wait|Sorry, you|still stunned./
  645. match LT_STOW mind lock
  646. match LT_THROW clear
  647. matchwait
  648.  
  649. LT_STOW:
  650. counter add 1
  651. put %stowlt
  652. matchre POLE_WEAR /...wait|Sorry, you|still stunned./
  653. matchre WEAPON7 /You put|You attach|You sling|You must|You are already|Stow what?/
  654. matchwait
  655.  
  656.  
  657. WEAPON7:
  658. put exp Bows
  659. matchre WEAPON7 /...wait|Sorry, you|still stunned./
  660. match BOWSTOW mind lock
  661. match BOWSHIELDSTANCE clear
  662. matchwait
  663.  
  664. BOWSTOW:
  665. counter add 1
  666. put %stowbow
  667. matchre BOWSTOW /...wait|Sorry, you|still stunned./
  668. matchre BOWGET /You put|You attach|You sling|You must|You are already|Stow what?/
  669. matchwait
  670.  
  671. BOWGET:
  672. put stow arrow
  673. matchre BOWGET /...wait|Sorry, you|still stunned.|You pick up/
  674. match WEAPON8 Stow what?
  675. matchwait
  676.  
  677.  
  678. WEAPON8:
  679. put exp crossbow
  680. matchre WEAPON8 /...wait|Sorry, you|still stunned./
  681. match XBOWSTOW mind lock
  682. match XBOWSHIELDSTANCE clear
  683. matchwait
  684.  
  685. XBOWSTOW:
  686. counter add 1
  687. put %stowxbow
  688. matchre XBOWSTOW /...wait|Sorry, you|still stunned./
  689. matchre XBOWGET /You put|You attach|You sling|You must|You are already|Stow what?/
  690. matchwait
  691.  
  692. XBOWGET:
  693. put stow %crossammo
  694. matchre XBOWGET /...wait|Sorry, you|still stunned.|You pick up/
  695. match WEAPON9 Stow what?
  696. matchwait
  697.  
  698.  
  699. WEAPON9:
  700. put exp Twohanded Edged
  701. matchre WEAPON9 /...wait|Sorry, you|still stunned./
  702. match THESTOW mind lock
  703. match GETTHE clear
  704. matchwait
  705.  
  706. THESTOW:
  707. counter add 1
  708. put tie my %the to my steel-plated bandolier
  709. matchre THESTOW /...wait|Sorry, you|still stunned./
  710. matchre WEAPON10 /You put|You attach|You sling|You must|You are already|Stow what?/
  711. matchwait
  712.  
  713.  
  714. WEAPON10:
  715. put exp Small Blunt
  716. matchre WEAPON10 /...wait|Sorry, you|still stunned./
  717. match SBSTOW mind lock
  718. match GETSB clear
  719. matchwait
  720.  
  721. SBSTOW:
  722. counter add 1
  723. put %stowsb
  724. matchre SBSTOW /...wait|Sorry, you|still stunned./
  725. matchre WEAPON11 /You put|You attach|You sling|You must|You are already|Stow what?/
  726. matchwait
  727.  
  728.  
  729. WEAPON11:
  730. put exp Small Edge
  731. matchre WEAPON11 /...wait|Sorry, you|still stunned./
  732. match SESTOW mind lock
  733. match GETSE clear
  734. matchwait
  735.  
  736. SESTOW:
  737. counter add 1
  738. put %stowse
  739. matchre SESTOW /...wait|Sorry, you|still stunned./
  740. matchre WEAPON12 /You put|You attach|You sling|You must|You are already|Stow what?/
  741. matchwait
  742.  
  743.  
  744. WEAPON12:
  745. put exp Large Edged
  746. matchre WEAPON12 /...wait|Sorry, you|still stunned./
  747. match LESTOW mind lock
  748. match GETLE clear
  749. matchwait
  750.  
  751. LESTOW:
  752. counter add 1
  753. put tie my %le to my steel-plated bandolier
  754. matchre LESTOW /...wait|Sorry, you|still stunned./
  755. matchre WEAPON13 /You put|You attach|You sling|You must|You are already|Stow what?/
  756. matchwait
  757.  
  758.  
  759. WEAPON13:
  760. put exp Large Blunt
  761. matchre WEAPON13 /...wait|Sorry, you|still stunned./
  762. match LBSTOW mind lock
  763. match GETLB clear
  764. matchwait
  765.  
  766. LBSTOW:
  767. counter add 1
  768. put %stowlb
  769. matchre LBSTOW /...wait|Sorry, you|still stunned./
  770. matchre WEAPON14 /You put|You attach|You sling|You must|You are already|Stow what?/
  771. matchwait
  772.  
  773.  
  774. WEAPON14:
  775. put exp Twohanded Blunt
  776. matchre WEAPON14 /...wait|Sorry, you|still stunned./
  777. match THBSTOW mind lock
  778. match GETTHB clear
  779. matchwait
  780.  
  781. THBSTOW:
  782. counter add 1
  783. put %stowthb
  784. matchre THBSTOW /...wait|Sorry, you|still stunned./
  785. matchre WEAPON15 /You put|You attach|You sling|You must|You are already|Stow what?/
  786. matchwait
  787.  
  788.  
  789. WEAPON15:
  790. put exp Staves
  791. matchre WEAPON15 /...wait|Sorry, you|still stunned./
  792. match STAVESTOW mind lock
  793. match GETSTAVE clear
  794. matchwait
  795.  
  796. STAVESTOW:
  797. counter add 1
  798. put %stowstave
  799. matchre STAVESTOW /...wait|Sorry, you|still stunned./
  800. matchre WEAPON16 /You put|You attach|You sling|You must|You are already|Stow what?/
  801. matchwait
  802.  
  803.  
  804. WEAPON16:
  805. put exp Slings
  806. matchre WEAPON16 /...wait|Sorry, you|still stunned./
  807. match SLINGSTOW mind lock
  808. match SLINGSHIELDSTANCE clear
  809. matchwait
  810.  
  811. SLINGSTOW:
  812. put %stowsling
  813. matchre SLINGSTOW /...wait|Sorry, you|still stunned./
  814. matchre SLINGGET /You put|You attach|You sling|You must|You are already|Stow what?/
  815. matchwait
  816.  
  817. SLINGGET:
  818. put stow %slingammo
  819. matchre SLINGGET /...wait|Sorry, you|still stunned.|You pick up/
  820. match WEAPON_CYCLE_2 Stow what?
  821. matchwait
  822.  
  823. #################################################
  824. ### END OF EXP SECTION
  825. #################################################
  826.  
  827.  
  828. #################################################
  829. ### MIS ACTION SECTION: WAITS, SHEATHS, FACES, POINTS
  830. #################################################
  831.  
  832. CRITTER_BREAK_PAUSE:
  833. pause 1.5
  834. goto CRITTERSTOW
  835.  
  836. CRITTERSTOW:
  837. put unload
  838. pause 2.5
  839. put %stowpole
  840. pause
  841. put %stowstave
  842. pause
  843. put %stowlt
  844. pause
  845. put %stowht
  846. pause
  847. put %stowle
  848. pause
  849. put %stowthe
  850. pause
  851. put stow right
  852. pause
  853. put stow left
  854. pause
  855. goto TOP
  856.  
  857. FACENEXT:
  858. put face next
  859. matchre FACENEXT /...wait|Sorry, you|still stunned.
  860. matchre FACESEARCH /There is nothing else|Face what?/
  861. match CRITTER_BREAK_PAUSE You turn to face
  862. matchwait
  863.  
  864. FACESEARCH:
  865. put search
  866. matchre FACESEARCH /...wait|Sorry, you|still stunned./
  867. match FACEPOINT Roundtime
  868. matchwait
  869.  
  870. FACEPOINT:
  871. put point
  872. matchre FACEPOINT /...wait|Sorry, you|still stunned./
  873. match CRITTER_BREAK_PAUSE Roundtime
  874. matchwait
  875.  
  876. #################################################
  877. ### END MISC ACTION SECTION
  878. #################################################
  879.  
  880.  
  881. #################################################
  882. ### START HT PORTION OF SCRIPT HERE ###
  883. #################################################
  884.  
  885. HT_THROW:
  886. put throw
  887. matchre HT_THROW /...wait|Sorry, you|still stunned./
  888. matchre FACENEXT /At what are|There is nothing else/
  889. match GETHT2 What are you trying to throw?
  890. matchre GETHTKILL /%death/
  891. matchRE WEAPON1 /Roundtime|shatters into a thousand/
  892. matchwait
  893.  
  894. GETHT2:
  895. put %getht
  896. goto HT_THROW
  897.  
  898. GETHT:
  899. put %getht
  900. matchre GETHT /...wait|Sorry, you|still stunned./
  901. matchre HT_THROW /You are already|You pick up/
  902. matchwait
  903.  
  904. GETHTKILL:
  905. put %getht
  906. matchre GETHTKILL /...wait|Sorry, you|still stunned./
  907. matchre SKIN%arrange /You pull|You pick up|You are already/
  908. matchwait
  909.  
  910. #################################################
  911. ### END HT HT_THROW PORTION OF SCRIPT HERE ###
  912. #################################################
  913.  
  914.  
  915. #################################################
  916. ### START TM PORTION OF SCRIPT HERE
  917. #################################################
  918.  
  919. STOW_TM:
  920. put stow
  921. matchre STOW_TM /...wait|Sorry, you|still stunned./
  922. matchre PREP_TM /You put|You attach|You sling|You must|You are already|Stow what?/
  923. matchwait
  924.  
  925. PREP_TM:
  926. put prep %tm %tmmana
  927. matchre PREP_TM /...wait|Sorry, you|still stunned./
  928. matchre TARGET_TM /You have already|You trace a|With a mnemonic tune/
  929. matchwait
  930.  
  931. TARGET_TM:
  932. put target
  933. matchre TARGET_TM /...wait|Sorry, you|still stunned./
  934. match TARGET_TMBOB You begin
  935. matchre %startweapon /There is nothing else|Your pattern dissipates/
  936. matchwait
  937.  
  938. TARGET_TMBOB:
  939. put weave
  940. matchre TARGET_TMBOB /...wait|Sorry, you|still stunned./
  941. matchre TOP /You are not engaged|Your target pattern dissipates because|Your pattern dissipates/
  942. match CAST_TM Your formation of a
  943. match TARGET_TMWEAVE Roundtime
  944. matchwait
  945.  
  946. TARGET_TMWEAVE:
  947. put shove
  948. matchre TARGET_TMWEAVE /...wait|Sorry, you|still stunned./
  949. matchre %startweapon /You are not engaged|Your target pattern dissipates because|Your pattern dissipates/
  950. match CAST_TM Your formation of a
  951. matchwait
  952.  
  953. CAST_TM:
  954. put cast
  955. matchre CAST_TM /...wait|Sorry, you|still stunned./
  956. matchre SKIN%arrange /%death/
  957. matchre WEAPON2 /Roundtime|You strain,|Your pattern dissipates|shatters into a thousand/
  958. match TM_RELEASE Your target pattern dissipates because you lose sight
  959. matchwait
  960.  
  961. TM_RELEASE:
  962. put release
  963. goto WEAPON2
  964.  
  965. #################################################
  966. ### END TM PORTION OF SCRIPT HERE
  967. #################################################
  968.  
  969. #################################################
  970. ### START POLEARMS PORTION OF SCRIPT HERE ###
  971. #################################################
  972.  
  973. REMOVE_POLEARM:
  974. put %getpole
  975. matchre REMOVE_POLEARM /...wait|Sorry, you|still stunned./
  976. matchre POLEARMWHISTLE /Already holding|You get|You remove|You sling|Untie what?|You are already/
  977. matchwait
  978.  
  979. WEAR_POLEARM:
  980. put %stowpole
  981. matchre WEAR_POLEARM /...wait|Sorry, you|still stunned./
  982. matchre SKIN%arrange /You put|You attach|You sling|You must|You are already|Stow what?/
  983. matchwait
  984.  
  985. POLEARMWHISTLE:
  986. put whistle piercing
  987. goto POLE_ANALYZE
  988.  
  989. POLE_ANALYZE:
  990. put analyze
  991. matchre POLE_ANALYZE /...wait|Sorry, you|still stunned./
  992. matchre FACENEXT /There is nothing else|Face what?|Analyze what?/
  993. matchre REPOLE_ANALYZE /fail to find|must be closer/
  994. match SLICE landing a slice
  995. match JAB landing a jab
  996. match THRUST landing a thrust
  997. match DRAW landing a draw
  998. match FEINT landing a feint
  999. match CHOP landing a chop
  1000. match LUNGE landing a lunge
  1001. matchwait
  1002.  
  1003. REPOLE_ANALYZE:
  1004. put advance
  1005. pause 3
  1006. goto POLE_ANALYZE
  1007.  
  1008. SLICE:
  1009. put slice
  1010. matchre SLICE /...wait|Sorry, you|still stunned./
  1011. matchre WEAPON3 /tactics|combat expertise/
  1012. matchre FACENEXT /At what are|There is nothing else/
  1013. matchre WEAR_POLEARM /%death/
  1014. match REPOLE_ANALYZE You aren't close
  1015. matchre POLE_ANALYZE /Roundtime|shatters into a thousand/
  1016. matchwait
  1017.  
  1018. JAB:
  1019. put jab
  1020. matchre JAB /...wait|Sorry, you|still stunned./
  1021. matchre WEAPON3 /tactics|combat expertise/
  1022. matchre FACENEXT /At what are|There is nothing else/
  1023. matchre WEAR_POLEARM /%death/
  1024. match REPOLE_ANALYZE You aren't close
  1025. matchre POLE_ANALYZE /Roundtime|shatters into a thousand/
  1026. matchwait
  1027.  
  1028. THRUST:
  1029. put thrust
  1030. matchre THRUST /...wait|Sorry, you|still stunned./
  1031. matchre WEAPON3 /tactics|combat expertise/
  1032. matchre FACENEXT /At what are|There is nothing else/
  1033. matchre WEAR_POLEARM /%death/
  1034. match REPOLE_ANALYZE You aren't close
  1035. matchre POLE_ANALYZE /Roundtime|shatters into a thousand/
  1036. matchwait
  1037.  
  1038. DRAW:
  1039. put draw
  1040. matchre DRAW /...wait|Sorry, you|still stunned./
  1041. matchre WEAPON3 /tactics|combat expertise/
  1042. matchre FACENEXT /At what are|There is nothing else/
  1043. matchre WEAR_POLEARM /%death/
  1044. match REPOLE_ANALYZE You aren't close
  1045. matchre POLE_ANALYZE /Roundtime|shatters into a thousand/
  1046. matchwait
  1047.  
  1048. FEINT:
  1049. put feint
  1050. matchre FEINT /...wait|Sorry, you|still stunned./
  1051. matchre WEAPON3 /tactics|combat expertise/
  1052. matchre FACENEXT /At what are|There is nothing else/
  1053. matchre WEAR_POLEARM /%death/
  1054. match REPOLE_ANALYZE You aren't close
  1055. matchre POLE_ANALYZE /Roundtime|shatters into a thousand/
  1056. matchwait
  1057.  
  1058. CHOP:
  1059. put chop
  1060. matchre CHOP /...wait|Sorry, you|still stunned./
  1061. matchre WEAPON3 /tactics|combat expertise/
  1062. matchre FACENEXT /At what are|There is nothing else/
  1063. matchre WEAR_POLEARM /%death/
  1064. match REPOLE_ANALYZE You aren't close
  1065. matchre POLE_ANALYZE /Roundtime|shatters into a thousand/
  1066. matchwait
  1067.  
  1068. LUNGE:
  1069. put lunge
  1070. matchre LUNGE /...wait|Sorry, you|still stunned./
  1071. matchre WEAPON3 /tactics|combat expertise/
  1072. matchre FACENEXT /At what are|There is nothing else/
  1073. matchre WEAR_POLEARM /%death/
  1074. match REPOLE_ANALYZE You aren't close
  1075. matchre POLE_ANALYZE /Roundtime|shatters into a thousand/
  1076. matchwait
  1077.  
  1078. ### START BRAWLING ##
  1079.  
  1080. BRAWLATTACK:
  1081. put attack
  1082. matchre BRAWLATTACK /...wait|Sorry, you|still stunned./
  1083. match BRAWLATTACK You close to melee
  1084. matchre CRITTER_BREAK_PAUSE /You aren't close enough|Face what?/
  1085. matchre FACENEXT /At what are|There is nothing else/
  1086. matchre SKIN%arrange /%death/
  1087. matchre WEAPON4 /Roundtime|You bob|shatters into a thousand/
  1088. matchwait
  1089.  
  1090. #################################################
  1091. ### END BRAWL PORTION OF SCRIPT HERE ###
  1092. #################################################
  1093.  
  1094.  
  1095. #################################################
  1096. ### START OFFHAND LT_THROW PORTION OF SCRIPT HERE ###
  1097. #################################################
  1098.  
  1099. OFFHANDSTANCE:
  1100. put stance parry
  1101. matchre BOWSHIELDSTANCE /...wait|Sorry, you|still stunned./
  1102. match OFFHANDLT_THROW You are now set
  1103. matchwait
  1104.  
  1105. OFFHANDLT_THROW:
  1106. put throw left
  1107. matchre OFFHANDLT_THROW /...wait|Sorry, you|still stunned./
  1108. matchre FACENEXT /At what are|There is nothing else/
  1109. match GETOFFHAND2 What are you trying to throw?
  1110. matchre GETOFFHANDKILL /%death/
  1111. matchre WEAPON5 /Roundtime|shatters into a thousand/
  1112. match OFFHANDSWAP You must hold
  1113. matchwait
  1114.  
  1115. OFFHANDSWAP:
  1116. put swap
  1117. match GETOFFHAND2 You have nothing
  1118. match OFFHANDLT_THROW to your left hand.
  1119. matchre OFFHANDSWAP /...wait|Sorry, you|still stunned./
  1120. matchwait
  1121.  
  1122. GETOFFHAND2:
  1123. put %stowlt
  1124. pause
  1125. put %getlt
  1126. goto OFFHANDLT_THROW
  1127.  
  1128. GETOFFHAND:
  1129. put %getlt
  1130. matchre OFFHANDLT_THROW /You are already|You pick up/
  1131. matchre GETOFFHAND /...wait|Sorry, you|still stunned./
  1132. matchwait
  1133.  
  1134. GETOFFHANDKILL:
  1135. put %getlt
  1136. matchre SKIN%arrange /You pull|You pick up|You are already/
  1137. matchre GETOFFHANDKILL /...wait|Sorry, you|still stunned./
  1138. matchwait
  1139.  
  1140. #################################################
  1141. ### END OFFHAND THROW PORTION OF SCRIPT HERE ###
  1142. #################################################
  1143.  
  1144. #################################################
  1145. ### START LT PORTION OF SCRIPT HERE ###
  1146. #################################################
  1147.  
  1148. LT_THROW:
  1149. put throw
  1150. matchre LT_THROW /...wait|Sorry, you|still stunned./
  1151. matchre FACENEXT /At what are|There is nothing else/
  1152. match GETLT2 What are you trying to throw?
  1153. matchre GETLTKILL /%death/
  1154. matchre WEAPON6 /Roundtime|shatters into a thousand/
  1155. matchwait
  1156.  
  1157. GETLT2:
  1158. put %stowlt
  1159. pause
  1160. put %getlt
  1161. goto LT_THROW
  1162.  
  1163. GETLT:
  1164. put %getlt
  1165. matchre /LT_THROW You are already|You pick up/
  1166. matchre GETLT /...wait|Sorry, you|still stunned./
  1167. matchwait
  1168.  
  1169. GETLTKILL:
  1170. put %getlt
  1171. matchre SKIN%arrange /You pull|You pick up|You are already/
  1172. matchre GETLTKILL /...wait|Sorry, you|still stunned./
  1173. matchwait
  1174.  
  1175. #################################################
  1176. ### END LT_THROW PORTION OF SCRIPT HERE ###
  1177. #################################################
  1178.  
  1179.  
  1180. #################################################
  1181. ### START BOW PART OF SCRIPT HERE ###
  1182. #################################################
  1183.  
  1184. BOWSHIELDSTANCE:
  1185. put stance shield
  1186. matchre BOWSHIELDSTANCE /...wait|Sorry, you|still stunned./
  1187. match GETBOW You are now set
  1188. matchwait
  1189.  
  1190. GETBOW:
  1191. put %getbow
  1192. goto BOWLOAD
  1193.  
  1194. BOWLOAD:
  1195. put load
  1196. matchre BOWLOAD /...wait|Sorry, you|still stunned./
  1197. matchre BOWAIM /Roundtime|You load|You reach|already loaded/
  1198. matchwait
  1199.  
  1200. BOWAIM:
  1201. put aim
  1202. matchre BOWAIM /...wait|Sorry, you|still stunned./
  1203. matchre FACENEXT /There is nothing|What are you/
  1204. match BOWANALYZE You begin
  1205. match BOWFIRE You stop concentrating
  1206. matchwait
  1207.  
  1208. BOWANALYZE:
  1209. put analyze
  1210. matchre BOWANALYZE /...wait|Sorry, you|still stunned./
  1211. matchre BOWCIRCLE /Roundtime|fail to find|You must be closer|Analyze what?/
  1212. matchwait
  1213.  
  1214. BOWCIRCLE:
  1215. put weave
  1216. matchre BOWCIRCLE /...wait|Sorry, you|still stunned./
  1217. matchre BOWWEAVE /You aren't close|You must be closer|Roundtime/
  1218. match BOWFIRE You think
  1219. match FACENEXT There is nothing else
  1220. matchwait
  1221.  
  1222. BOWWEAVE:
  1223. put shove
  1224. matchre BOWWEAVE /...wait|Sorry, you|still stunned./
  1225. matchre BOWFIRE /You think|You stop concentrating/
  1226. match FACENEXT There is nothing else
  1227. matchre BOWAIMWAIT /You aren't close|You must be closer/
  1228. matchwait
  1229.  
  1230. BOWAIMWAIT:
  1231. matchre BOWFIRE /You think|You stop concentrating/
  1232. matchwait
  1233.  
  1234. BOWFIRE:
  1235. put fire
  1236. matchre BOWFIRE /...wait|Sorry, you|still stunned.|You close/
  1237. matchre CRITTER_BREAK_PAUSE /You aren't close enough|Face what?/
  1238. match BOWSHIELDSTANCE I could not find
  1239. match BOWSTOW2 You don't have the proper
  1240. matchre FACENEXT /At what are|There is nothing else/
  1241. match BOWSTOW You don't have the proper ammunition
  1242. matchre BOWSTOW2 /%death/
  1243. matchre WEAPON7 /Roundtime|You bob|shatters into a thousand/
  1244. matchwait
  1245.  
  1246. BOWSTOW2:
  1247. put stow arrow
  1248. matchre BOWSTOW2 /...wait|Sorry, you|still stunned.|You pick up/
  1249. match SKIN%arrange Stow what?
  1250. matchwait
  1251.  
  1252. #################################################
  1253. ### END BOW PART OF SCRIPT HERE ###
  1254. #################################################
  1255.  
  1256.  
  1257. #################################################
  1258. ### START CROSSBOW PART OF SCRIPT HERE ###
  1259. #################################################
  1260.  
  1261. XBOWSHIELDSTANCE:
  1262. put stance shield
  1263. matchre XBOWSHIELDSTANCE /...wait|Sorry, you|still stunned./
  1264. match GETXBOW You are now set
  1265. matchwait
  1266.  
  1267. GETXBOW:
  1268. put %getxbow
  1269. goto XBOWLOAD
  1270.  
  1271. XBOWLOAD:
  1272. put load
  1273. matchre XBOWLOAD /...wait|Sorry, you|still stunned./
  1274. matchre XBOWAIM /Roundtime|You load|You reach|already loaded/
  1275. matchwait
  1276.  
  1277. XBOWAIM:
  1278. put aim
  1279. matchre XBOWAIM /...wait|Sorry, you|still stunned./
  1280. matchre FACENEXT /There is nothing|What are you/
  1281. match XBOWANALYZE You begin
  1282. match XBOWFIRE You stop concentrating
  1283. matchwait
  1284.  
  1285. XBOWANALYZE:
  1286. put analyze
  1287. matchre XBOWANALYZE /...wait|Sorry, you|still stunned./
  1288. matchre XBOWCIRCLE /Roundtime|fail to find|You must be closer|Analyze what?/
  1289. matchwait
  1290.  
  1291. XBOWCIRCLE:
  1292. put weave
  1293. matchre XBOWCIRCLE /...wait|Sorry, you|still stunned./
  1294. matchre XBOWWEAVE /You aren't close|You must be closer|Roundtime/
  1295. matchre XBOWFIRE /You think|You stop concentrating/
  1296. match FACENEXT There is nothing else
  1297. matchwait
  1298.  
  1299. XBOWWEAVE:
  1300. put shove
  1301. matchre XBOWWEAVE /...wait|Sorry, you|still stunned./
  1302. matchre XBOWFIRE /You think|You stop concentrating/
  1303. match FACENEXT There is nothing else
  1304. matchre XBOWAIMWAIT /You aren't close|You must be closer/
  1305. matchwait
  1306.  
  1307. XBOWAIMWAIT:
  1308. matchre XBOWFIRE /You think|You stop concentrating/
  1309. matchwait
  1310.  
  1311. XBOWFIRE:
  1312. put fire
  1313. matchre XBOWFIRE /...wait|Sorry, you|still stunned.|You close/
  1314. matchre CRITTER_BREAK_PAUSE /You aren't close enough|Face what?/
  1315. match XBOWSHIELDSTANCE I could not find
  1316. match XBOWSTOW2 You don't have the proper
  1317. matchre FACENEXT /At what are|There is nothing else/
  1318. match XBOWSTOW You don't have the proper ammunition
  1319. matchre XBOWSTOW2 /%death/
  1320. matchre XBOW_RETRIEVE_1 /Roundtime|You bob|shatters into a thousand/
  1321. matchwait
  1322.  
  1323. XBOW_RETRIEVE_1:
  1324. put stow %crossammo
  1325. matchre XBOW_RETRIEVE_1 /...wait|Sorry, you|still stunned.|You pick up/
  1326. match WEAPON8 Stow what?
  1327. matchwait
  1328.  
  1329. XBOWSTOW2:
  1330. put stow %crossammo
  1331. matchre XBOWSTOW2 /...wait|Sorry, you|still stunned.|You pick up/
  1332. match SKIN%arrange Stow what?
  1333. matchwait
  1334.  
  1335. #################################################
  1336. ### END CROSSBOW PART OF SCRIPT HERE ###
  1337. #################################################
  1338.  
  1339.  
  1340.  
  1341. #################################################
  1342. ### START 2HE PART OF SCRIPT HERE ###
  1343. #################################################
  1344.  
  1345. GETTHE:
  1346. put %getthe
  1347. goto THEATTACK
  1348.  
  1349. THEATTACK:
  1350. put attack
  1351. matchre THEATTACK /...wait|Sorry, you|still stunned./
  1352. match THEATTACK You close to melee
  1353. matchre CRITTER_BREAK_PAUSE /You aren't close enough|Face what?/
  1354. matchre FACENEXT /At what are|There is nothing else/
  1355. matchre SKIN%arrange /%death/
  1356. matchre WEAPON9 /Roundtime|You bob|shatters into a thousand/
  1357. matchwait
  1358.  
  1359. #################################################
  1360. ### END 2HE PART OF SCRIPT HERE ###
  1361. #################################################
  1362.  
  1363. #################################################
  1364. ### START SMALL BLUNT PART BLUNT OF SCRIPT HERE ###
  1365. #################################################
  1366.  
  1367. GETSB:
  1368. put %getsb
  1369. goto SBATTACK
  1370.  
  1371. SBATTACK:
  1372. put attack
  1373. matchre SBATTACK /...wait|Sorry, you|still stunned./
  1374. match SBATTACK You close to melee
  1375. matchre CRITTER_BREAK_PAUSE /You aren't close enough|Face what?/
  1376. matchre FACENEXT /At what are|There is nothing else/
  1377. matchre SKIN%arrange /%death/
  1378. matchre WEAPON10 /Roundtime|You bob|shatters into a thousand/
  1379. matchwait
  1380.  
  1381. #################################################
  1382. ### END SMALL BLUNT BLUNT PART OF SCRIPT HERE ###
  1383. #################################################
  1384.  
  1385.  
  1386. #################################################
  1387. ### START SMALL EDGED PART BLUNT OF SCRIPT HERE ###
  1388. #################################################
  1389.  
  1390. GETSE:
  1391. put %getse
  1392. goto SEATTACK
  1393.  
  1394. SEATTACK:
  1395. put attack
  1396. matchre SEATTACK /...wait|Sorry, you|still stunned./
  1397. match SEATTACK You close to melee
  1398. matchre CRITTER_BREAK_PAUSE /You aren't close enough|Face what?/
  1399. matchre FACENEXT /At what are|There is nothing else/
  1400. matchre SKIN%arrange /%death/
  1401. matchre WEAPON11 /Roundtime|You bob|shatters into a thousand/
  1402. matchwait
  1403.  
  1404. #################################################
  1405. ### END SMALL EDGED PART OF SCRIPT HERE ###
  1406. #################################################
  1407.  
  1408. #################################################
  1409. ### START LARGE EDGED PART OF SCRIPT HERE ###
  1410. #################################################
  1411.  
  1412. GETLE:
  1413. put %getle
  1414. goto LEATTACK
  1415.  
  1416. LEATTACK:
  1417. put attack
  1418. matchre LEATTACK /...wait|Sorry, you|still stunned./
  1419. match LEATTACK You close to melee
  1420. matchre CRITTER_BREAK_PAUSE /You aren't close enough|Face what?/
  1421. matchre FACENEXT /At what are|There is nothing else/
  1422. matchre SKIN%arrange /%death/
  1423. matchre WEAPON12 /Roundtime|You bob|shatters into a thousand/
  1424. matchwait
  1425.  
  1426. #################################################
  1427. ### END LARGE EDGED PART OF SCRIPT HERE ###
  1428. #################################################
  1429.  
  1430.  
  1431. #################################################
  1432. ### START LARGE BLUNT OF SCRIPT HERE ###
  1433. #################################################
  1434.  
  1435. GETLB:
  1436. put %getlb
  1437. goto LBATTACK
  1438.  
  1439. LBATTACK:
  1440. put attack
  1441. matchre LBATTACK /...wait|Sorry, you|still stunned./
  1442. match LBATTACK You close to melee
  1443. matchre CRITTER_BREAK_PAUSE /You aren't close enough|Face what?/
  1444. matchre FACENEXT /At what are|There is nothing else/
  1445. matchre SKIN%arrange /%death/
  1446. matchre WEAPON13 /Roundtime|You bob|shatters into a thousand/
  1447. matchwait
  1448.  
  1449. #################################################
  1450. ### END LARGE BLUNT OF SCRIPT HERE ###
  1451. #################################################
  1452.  
  1453.  
  1454. #################################################
  1455. ### START TWO HANDED PART BLUNT OF SCRIPT HERE ###
  1456. #################################################
  1457.  
  1458. GETTHB:
  1459. put %getthb
  1460. goto THBATTACK
  1461.  
  1462. THBATTACK:
  1463. put attack
  1464. matchre THBATTACK /...wait|Sorry, you|still stunned./
  1465. match THBATTACK You close to melee
  1466. matchre CRITTER_BREAK_PAUSE /You aren't close enough|Face what?/
  1467. matchre FACENEXT /At what are|There is nothing else/
  1468. matchre SKIN%arrange /%death/
  1469. matchre WEAPON14 /Roundtime|You bob|shatters into a thousand/
  1470. matchwait
  1471.  
  1472. ### END TWO HANDED BLUNT PART OF SCRIPT HERE ###
  1473.  
  1474. ### START STAVES PART OF SCRIPT HERE ###
  1475.  
  1476. GETSTAVE:
  1477. put %getstave
  1478. goto STAVEATTACK
  1479.  
  1480. STAVEATTACK:
  1481. put attack
  1482. matchre STAVEATTACK /...wait|Sorry, you|still stunned./
  1483. match STAVEATTACK You close to melee
  1484. matchre CRITTER_BREAK_PAUSE /You aren't close enough|Face what?/
  1485. matchre FACENEXT /At what are|There is nothing else/
  1486. matchre SKIN%arrange /%death/
  1487. matchre WEAPON15 /Roundtime|You bob|shatters into a thousand/
  1488. matchwait
  1489.  
  1490. #################################################
  1491. ### END STAVES PART OF SCRIPT HERE ###
  1492. #################################################
  1493.  
  1494.  
  1495. #################################################
  1496. ### START SLING PART OF SCRIPT HERE ###
  1497. #################################################
  1498.  
  1499. SLINGSHIELDSTANCE:
  1500. put stance shield
  1501. matchre SLINGSHIELDSTANCE /...wait|Sorry, you|still stunned./
  1502. match GETSLING You are now set
  1503. matchwait
  1504.  
  1505. GETSLING:
  1506. put %getsling
  1507. goto SLINGLOAD
  1508.  
  1509. SLINGLOAD:
  1510. put load
  1511. matchre SLINGLOAD /...wait|Sorry, you|still stunned./
  1512. matchre SLINGAIM /Roundtime|You load|You reach|already loaded/
  1513. matchwait
  1514.  
  1515. SLINGAIM:
  1516. put aim
  1517. matchre SLINGAIM /...wait|Sorry, you|still stunned./
  1518. matchre FACENEXT /There is nothing|What are you/
  1519. match SLINGANALYZE You begin
  1520. match SLINGFIRE You stop concentrating
  1521. matchwait
  1522.  
  1523. SLINGANALYZE:
  1524. put analyze
  1525. matchre SLINGANALYZE /...wait|Sorry, you|still stunned./
  1526. matchre SLINGCIRCLE /Roundtime|fail to find|You must be closer|Analyze what?/
  1527. matchwait
  1528.  
  1529. SLINGCIRCLE:
  1530. put weave
  1531. matchre SLINGCIRCLE /...wait|Sorry, you|still stunned./
  1532. matchre SLINGWEAVE /You aren't close|You must be closer|Roundtime/
  1533. matchre SLINGFIRE /You think|You stop concentrating/
  1534. match FACENEXT There is nothing else
  1535. matchwait
  1536.  
  1537. SLINGWEAVE:
  1538. put shove
  1539. matchre SLINGWEAVE /...wait|Sorry, you|still stunned./
  1540. matchre SLINGFIRE /You think|You stop concentrating/
  1541. match FACENEXT There is nothing else
  1542. matchre SLINGAIMWAIT /You aren't close|You must be closer/
  1543. matchwait
  1544.  
  1545. SLINGAIMWAIT:
  1546. matchre SLINGFIRE /You think|You stop concentrating/
  1547. matchwait
  1548.  
  1549. SLINGFIRE:
  1550. put fire
  1551. matchre SLINGFIRE /...wait|Sorry, you|still stunned.|You close/
  1552. matchre CRITTER_BREAK_PAUSE /You aren't close enough|Face what?/
  1553. match SLINGSHIELDSTANCE I could not find
  1554. match SLINGSTOW2 You don't have the proper
  1555. matchre FACENEXT /At what are|There is nothing else/
  1556. match SLINGSTOW You don't have the proper ammunition
  1557. matchre SLINGSTOW2 /%death/
  1558. matchre SLING_RETRIEVE_1 /Roundtime|You bob|shatters into a thousand/
  1559. matchwait
  1560.  
  1561. SLING_RETRIEVE_1:
  1562. put stow %slingammo
  1563. matchre SLING_RETRIEVE_1 /...wait|Sorry, you|still stunned.|You pick up/
  1564. match WEAPON16 Stow what?
  1565. matchwait
  1566.  
  1567. SLINGSTOW2:
  1568. put stow %slingammo
  1569. matchre SLINGSTOW2 /...wait|Sorry, you|still stunned.|You pick up/
  1570. match SKIN%arrange Stow what?
  1571. matchwait
  1572.  
  1573. #################################################
  1574. ### END SLING PART OF SCRIPT HERE ###
  1575. #################################################
  1576.  
  1577.  
  1578. #################################################
  1579. ### CHECK FOR SKINNING HERE
  1580. #################################################
  1581.  
  1582. SKINyes:
  1583. goto SKIN1
  1584.  
  1585. SKINno:
  1586. goto SKIN2
  1587.  
  1588. SKIN1:
  1589. put arrange for %animalpart
  1590. matchre SKIN1 /...wait|Sorry, you|still stunned./
  1591. matchre SKIN2 /That has already|This creature cannot produce|cannot be skinned/
  1592. match SKIN1 Roundtime
  1593. match TOP Arrange what?
  1594. matchwait
  1595.  
  1596. SKIN2:
  1597. put skin
  1598. matchre SKIN2 /...wait|Sorry, you|still stunned./
  1599. matchre TOP /Skin what?|A small slip|You can't skin|vital juncture|hideously bungle|end up destroying|to that of mud./
  1600. matchre PRERENISKIN /prereni skin|prereni bone/
  1601. matchre DEERSKIN /deer skin|deer bone/
  1602. matchre LEUCROSKIN /leucro hide|leucro paw/
  1603. matchre VIPERSKIN /viper sac/
  1604. matchre CROCODILESKIN /crocodile skin|crocodile bone/
  1605. matchre FIRECATSKIN /milk-tooth|firecat bone|soot-streaked fang/
  1606. matchre SLAISKIN /toenail/
  1607. matchre BEARSKIN /bear paw|bear bone|bear pelt/
  1608. matchre SNOWBEASTSKIN /pure white pelt/
  1609. matchre BLOODWOLFSKIN /wolf paw|wolf pelt/
  1610. matchre TROLLSKIN /troll skin|troll bone/
  1611. matchre BEISSWURMSKIN /razorsharp claw/
  1612. matchre REAVERSKIN /reaver pelt|reaver bone/
  1613. matchre GHOULSKIN /ghoul skin|ghoul bone|ghoul rib/
  1614. matchre GRENDELSKIN /grendel ear|grendel bone/
  1615. matchre SPIDERSKIN /spider eye/
  1616. matchre TROLLKINSKIN /leathery scalp|trollkin hide/
  1617. matchre BOBCATSKIN /bobcat bone|claw from the bobcat|bobcat pelt/
  1618. matchre BADGERSKIN /badger pelt|badger bone|claw from the badger/
  1619. matchre POTHANITSKIN /pothanit tusks/
  1620. matchre JACKALSKIN /jackal bone|jackal pelt|jackal paw/
  1621. matchre KOBOLDSKIN /kobold bone|kobold tail|kobold skin/
  1622. matchre COUGARSKIN /cougar pelt|claw from the cougar|cougar bone/
  1623. matchre GRUBSKIN /slimy pseudopod/
  1624. matchre BURROWERSKIN /burrower claw/
  1625. matchre BOARSKIN /boar skin|boar tusk/
  1626. matchre GOBLINSKIN /goblin skin|goblin bone|goblin hand/
  1627. matchre HOGSKIN /hog hoof|hog bone/
  1628. matchre WASPSKIN /wasp antenna/
  1629. matchre EELSKIN /eel skin/
  1630. matchre RATSKIN /rat tail|rat pelt|rat bone/
  1631.  
  1632. match SOLDIERSKIN soldier cannot be skinned
  1633. match MAGESKIN mage cannot be skinned
  1634. match ARCHERSKIN archer cannot be skinned
  1635. match WINDHOUNDSKIN hound cannot be skinned
  1636. match GUARDIANSKIN rubble cannot be skinned
  1637. match GOBLINSHAMANSKIN shaman cannot be skinned
  1638. match MAIDENSKIN maiden cannot be skinned
  1639. match FIRESPRITESKIN sprite cannot be skinned
  1640. match PAPERSKIN paper cannot be skinned
  1641. match LOUTSKIN lout cannot be skinned
  1642. matchwait
  1643.  
  1644. SOLDIERSKIN:
  1645. put search mage
  1646. matchre SOLDIERSKIN /...wait|Sorry, you|still stunned./
  1647. matchre TOP /What were|Perhaps you should|You search/
  1648. matchwait
  1649. MAGESKIN:
  1650. put search mage
  1651. matchre MAGESKIN /...wait|Sorry, you|still stunned./
  1652. matchre TOP /What were|Perhaps you should|You search/
  1653. matchwait
  1654. ARCHERSKIN:
  1655. put search archer
  1656. matchre ARCHERSKIN /...wait|Sorry, you|still stunned./
  1657. matchre TOP /What were|Perhaps you should|You search/
  1658. matchwait
  1659. PRERENISKIN:
  1660. put search prereni
  1661. matchre PRERENISKIN /...wait|Sorry, you|still stunned./
  1662. matchre TOP /What were|Perhaps you should|You search/
  1663. matchwait
  1664. DEERSKIN:
  1665. put search deer
  1666. matchre DEERSKIN /...wait|Sorry, you|still stunned./
  1667. matchre TOP /What were|Perhaps you should|You search/
  1668. matchwait
  1669. GUARDIANSKIN:
  1670. put search guardian
  1671. matchre GUARDIANSKIN /...wait|Sorry, you|still stunned./
  1672. matchre TOP /What were|Perhaps you should|You search/
  1673. matchwait
  1674. VIPERSKIN:
  1675. put search viper
  1676. matchre VIPERSKIN /...wait|Sorry, you|still stunned./
  1677. matchre TOP /What were|Perhaps you should|You search/
  1678. matchwait
  1679. LEUCROSKIN:
  1680. put search leucro
  1681. matchre LEUCROSKIN /...wait|Sorry, you|still stunned./
  1682. matchre TOP /What were|Perhaps you should|You search/
  1683. matchwait
  1684. CROCODILESKIN:
  1685. put search crocodile
  1686. matchre CROCODILESKIN /...wait|Sorry, you|still stunned./
  1687. matchre TOP /What were|Perhaps you should|You search/
  1688. matchwait
  1689. SLAISKIN:
  1690. put search scout
  1691. matchre SLAISKIN /...wait|Sorry, you|still stunned./
  1692. matchre TOP /What were|Perhaps you should|You search/
  1693. matchwait
  1694. BEARSKIN:
  1695. put search bear
  1696. matchre BEARSKIN /...wait|Sorry, you|still stunned./
  1697. matchre TOP /What were|Perhaps you should|You search/
  1698. matchwait
  1699. SNOWBEASTSKIN:
  1700. put search snowbeast
  1701. matchre SNOWBEASTSKIN /...wait|Sorry, you|still stunned./
  1702. matchre TOP /What were|Perhaps you should|You search/
  1703. matchwait
  1704. BLOODWOLFSKIN:
  1705. put search wolf
  1706. matchre BLOODWOLFSKIN /...wait|Sorry, you|still stunned./
  1707. matchre TOP /What were|Perhaps you should|You search/
  1708. matchwait
  1709. FIRECATSKIN:
  1710. put search firecat
  1711. matchre FIRECATSKIN /...wait|Sorry, you|still stunned./
  1712. matchre TOP /What were|Perhaps you should|You search/
  1713. matchwait
  1714. MAIDENSKIN:
  1715. put search maiden
  1716. matchre MAIDENSKIN /...wait|Sorry, you|still stunned./
  1717. matchre TOP /What were|Perhaps you should|You search/
  1718. matchwait
  1719. FIRESPRITESKIN:
  1720. put search sprite
  1721. matchre FIRESPRITESKIN /...wait|Sorry, you|still stunned./
  1722. matchre TOP /What were|Perhaps you should|You search/
  1723. matchwait
  1724. PAPERSKIN:
  1725. put search paper
  1726. matchre PAPERSKIN /...wait|Sorry, you|still stunned./
  1727. matchre TOP /What were|Perhaps you should|You search/
  1728. matchwait
  1729. TROLLSKIN:
  1730. put search troll
  1731. matchre ROCKTROLLSKIN /...wait|Sorry, you|still stunned./
  1732. matchre TOP /What were|Perhaps you should|You search/
  1733. matchwait
  1734. BEISSWURMSKIN:
  1735. put search beisswurm
  1736. matchre BEISSWURMSKIN /...wait|Sorry, you|still stunned./
  1737. matchre TOP /What were|Perhaps you should|You search/
  1738. matchwait
  1739. REAVERSKIN:
  1740. put search reaver
  1741. matchre REAVERSKIN /...wait|Sorry, you|still stunned./
  1742. matchre TOP /What were|Perhaps you should|You search/
  1743. matchwait
  1744. WINDHOUNDSKIN:
  1745. put search hound
  1746. matchre REAVERSKIN /...wait|Sorry, you|still stunned./
  1747. matchre TOP /What were|Perhaps you should|You search/
  1748. matchwait
  1749. GHOULSKIN:
  1750. put search ghoul
  1751. matchre GHOULSKIN /...wait|Sorry, you|still stunned./
  1752. matchre TOP /What were|Perhaps you should|You search/
  1753. matchwait
  1754. GRENDELSKIN:
  1755. put search grendel
  1756. matchre GRENDELSKIN /...wait|Sorry, you|still stunned./
  1757. matchre TOP /What were|Perhaps you should|You search/
  1758. matchwait
  1759. GRUBSKIN:
  1760. put search grub
  1761. matchre GRUBSKIN /...wait|Sorry, you|still stunned./
  1762. matchre TOP /What were|Perhaps you should|You search/
  1763. matchwait
  1764. BURROWERSKIN:
  1765. put search burrower
  1766. matchre BURROWERSKIN /...wait|Sorry, you|still stunned./
  1767. matchre TOP /What were|Perhaps you should|You search/
  1768. matchwait
  1769. SPIDERSKIN:
  1770. put search spider
  1771. matchre SPIDERSKIN /...wait|Sorry, you|still stunned./
  1772. matchre TOP /What were|Perhaps you should|You search/
  1773. matchwait
  1774. TROLLKINSKIN:
  1775. put search trollkin
  1776. matchre TROLLKINSKIN /...wait|Sorry, you|still stunned./
  1777. matchre TOP /What were|Perhaps you should|You search/
  1778. matchwait
  1779. BOBCATSKIN:
  1780. put search bobcat
  1781. matchre BOBCATSKIN /...wait|Sorry, you|still stunned./
  1782. matchre TOP /What were|Perhaps you should|You search/
  1783. matchwait
  1784. BADGERSKIN:
  1785. put search badger
  1786. matchre BADGERSKIN /...wait|Sorry, you|still stunned./
  1787. matchre TOP /What were|Perhaps you should|You search/
  1788. matchwait
  1789. POTHANITSKIN:
  1790. put search pothanit
  1791. matchre POTHANITSKIN /...wait|Sorry, you|still stunned./
  1792. matchre TOP /What were|Perhaps you should|You search/
  1793. matchwait
  1794. JACKALSKIN:
  1795. put search jackal
  1796. matchre JACKALSKIN /...wait|Sorry, you|still stunned./
  1797. matchre TOP /What were|Perhaps you should|You search/
  1798. matchwait
  1799. KOBOLDSKIN:
  1800. put search kobold
  1801. matchre KOBOLDSKIN /...wait|Sorry, you|still stunned./
  1802. matchre TOP /What were|Perhaps you should|You search/
  1803. matchwait
  1804. COUGARSKIN:
  1805. put search cougar
  1806. matchre COUGARSKIN /...wait|Sorry, you|still stunned./
  1807. matchre TOP /What were|Perhaps you should|You search/
  1808. matchwait
  1809. BOARSKIN:
  1810. put search boar
  1811. matchre BOARSKIN /...wait|Sorry, you|still stunned./
  1812. matchre TOP /What were|Perhaps you should|You search/
  1813. matchwait
  1814. GOBLINSHAMANSKIN:
  1815. put search shaman
  1816. matchre GOBLINSHAMANSKIN /...wait|Sorry, you|still stunned./
  1817. matchre TOP /What were|Perhaps you should|You search/
  1818. matchwait
  1819. GOBLINSKIN:
  1820. put search goblin
  1821. matchre GOBLINSKIN /...wait|Sorry, you|still stunned./
  1822. matchre TOP /What were|Perhaps you should|You search/
  1823. matchwait
  1824. HOGSKIN:
  1825. put search hog
  1826. matchre HOGSKIN /...wait|Sorry, you|still stunned./
  1827. matchre TOP /What were|Perhaps you should|You search/
  1828. matchwait
  1829. WASPSKIN:
  1830. put search wasp
  1831. matchre WASPSKIN /...wait|Sorry, you|still stunned./
  1832. matchre TOP /What were|Perhaps you should|You search/
  1833. matchwait
  1834. EELSKIN:
  1835. put search eel
  1836. matchre EELSKIN /...wait|Sorry, you|still stunned./
  1837. matchre TOP /What were|Perhaps you should|You search/
  1838. matchwait
  1839. LOUTSKIN:
  1840. put search lout
  1841. matchre LOUTSKIN /...wait|Sorry, you|still stunned./
  1842. matchre TOP /What were|Perhaps you should|You search/
  1843. matchwait
  1844. RATSKIN:
  1845. put search rat
  1846. matchre RATSKIN /...wait|Sorry, you|still stunned./
  1847. matchre TOP /What were|Perhaps you should|You search/
  1848. matchwait
  1849.  
  1850.  
  1851.  
  1852.  
  1853.  
  1854.  
  1855.  
  1856.  
  1857.  
  1858. #################################################
  1859. ### EXIT COMBAT TO TRAIN SECTION
  1860. #################################################
  1861.  
  1862. ################################################################
  1863. ### HERE WE'RE PICKING EVERYTHING UP & STOWING EVERYTHING
  1864. ################################################################
  1865.  
  1866. GTFO_STOW_1:
  1867. put %stowpole
  1868. matchre GTFO_STOW_1 /...wait|Sorry, you|still stunned./
  1869. matchre GTFO_STOW_2 /You put|You attach|You sling|You must|You are already|Stow what?/
  1870. matchwait
  1871.  
  1872. GTFO_STOW_2:
  1873. put %stowstave
  1874. matchre GTFO_STOW_2 /...wait|Sorry, you|still stunned./
  1875. matchre GTFO_STOW_3 /You put|You attach|You sling|You must|You are already|Stow what?/
  1876. matchwait
  1877.  
  1878. GTFO_STOW_3:
  1879. put %stowle
  1880. matchre GTFO_STOW_3 /...wait|Sorry, you|still stunned./
  1881. matchre GTFO_STOW_4 /You put|You attach|You sling|You must|You are already|Stow what?/
  1882. matchwait
  1883.  
  1884. GTFO_STOW_4:
  1885. put %stowthe
  1886. matchre GTFO_STOW_4 /...wait|Sorry, you|still stunned./
  1887. matchre GTFO_STOW_5 /You put|You attach|You sling|You must|You are already|Stow what?/
  1888. matchwait
  1889.  
  1890. GTFO_STOW_5:
  1891. put stow right
  1892. matchre GTFO_STOW_5 /...wait|Sorry, you|still stunned./
  1893. matchre GTFO_STOW_6 /You put|You attach|You sling|You must|You are already|Stow what?/
  1894. matchwait
  1895.  
  1896. GTFO_STOW_6:
  1897. put stow left
  1898. matchre GTFO_STOW_6 /...wait|Sorry, you|still stunned./
  1899. matchre GTFO_STOW_LT /You put|You attach|You sling|You must|You are already|Stow what?/
  1900. matchwait
  1901.  
  1902. GTFO_STOW_LT:
  1903. put %stowlt
  1904. matchre GTFO_STOW_LT /...wait|Sorry, you|still stunned./
  1905. matchre GTFO_STOW_HT /You put|You attach|You sling|You must|You are already|Stow what?/
  1906. matchwait
  1907.  
  1908. GTFO_STOW_HT:
  1909. put %stowht
  1910. matchre GTFO_STOW_HT /...wait|Sorry, you|still stunned./
  1911. matchre GTFO_GETCOINS /You put|You attach|You sling|You must|You are already|Stow what?/
  1912. matchwait
  1913.  
  1914. GTFO_GETCOINS:
  1915. put stow coin
  1916. matchre GTFO_GETCOINS /...wait|Sorry, you|still stunned.|You pick up/
  1917. match GTFO_GETGEMS Stow what?
  1918. matchwait
  1919.  
  1920. GTFO_GETGEMS:
  1921. put stow gem
  1922. matchre GTFO_GETGEMS /...wait|Sorry, you|still stunned.|You pick up/
  1923. match GTFO_GETTINROCKS Stow what?
  1924. matchwait
  1925.  
  1926. GTFO_GETTINROCKS:
  1927. put stow %slingammo
  1928. matchre GTFO_GETTINROCKS /...wait|Sorry, you|still stunned.|You pick up/
  1929. match GTFO_GETTINXBOWAMMO Stow what?
  1930. matchwait
  1931.  
  1932. GTFO_GETTINXBOWAMMO:
  1933. put stow %crossammo
  1934. matchre GTFO_GETTINXBOWAMMO /...wait|Sorry, you|still stunned.|You pick up/
  1935. match GTFO_GETTINARROWS Stow what?
  1936. matchwait
  1937.  
  1938. GTFO_GETTINARROWS:
  1939. put stow arrow
  1940. matchre GTFO_GETTINARROWS /...wait|Sorry, you|still stunned.|You pick up/
  1941. match GTFO_RUN_AWAY Stow what?
  1942. matchwait
  1943.  
  1944. ################################################################
  1945. ### HERE IS THE RETREAT AND EXIT COMBAT PART
  1946. ################################################################
  1947.  
  1948. GTFO_RUN_AWAY:
  1949. put ret
  1950.  
  1951. GTFO_RETREAT_1:
  1952. put ret
  1953. goto GTFO
  1954.  
  1955. GTFO:
  1956. put go trail
  1957. match GTFO_RUN_AWAY /...wait|Sorry, you|still stunned./
  1958. match GTFO_RUN_AWAY You try to retreat
  1959. match GTFO_RETREAT_1 You are engaged
  1960. match GTFO_MOVEMENT Obvious
  1961. matchwait
  1962.  
  1963. GTFO_MOVEMENT:
  1964. move s
  1965. move s
  1966. move go gate
  1967.  
  1968. PLAY:
  1969. put play serenade masterful on my zills
  1970. match PLAY ...wait
  1971. match PERFORMANCE_CHECK You finish playing
  1972. matchwait
  1973.  
  1974. PERFORMANCE_CHECK:
  1975. put exp performance
  1976. match PERFORMANCE_CHECK ...wait
  1977. match RETURN_TO_FIGHT mind lock
  1978. match PLAY clear
  1979. matchwait
  1980.  
  1981. ################################################################
  1982. ### THIS TAKES YOU BACK AND CYCLES TO THE TOP OF THE SCRIPT
  1983. ################################################################
  1984.  
  1985. RETURN_TO_FIGHT:
  1986. move go gate
  1987. move n
  1988. move n
  1989. move go bramble
  1990. goto TOP
  1991.  
  1992. #################################################
  1993. ### END EXIT SECTION (RETUNS TO TOP)
  1994. #################################################
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement