Advertisement
Guest User

Untitled

a guest
Apr 25th, 2017
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 21.83 KB | None | 0 0
  1. #~#~#~#~#~#~#~#~#~#~#~#~#~#~#~#~#~#~#~#~#
  2. # #
  3. # THIS SCRIPT TEACHES THE FOLLOWING #
  4. # - ALL ARMORS #
  5. # - UTILITY #
  6. # - ATTUNEMENT #
  7. # - APPRAISAL #
  8. # - OUTDOORSMANSHIP #
  9. # - ARCANA #
  10. # - SHIELD #
  11. # - PARRY #
  12. # - PRIMARY MAGIC #
  13. # - EMPATHY #
  14. # - PERCEPTION #
  15. # - and more... #
  16. # #
  17. #~#~#~#~#~#~#~#~#~#~#~#~#~#~#~#~#~#~#~#~#
  18.  
  19. #~~~~~~~~~~~~~~~~~~~~~~~~~~#
  20. # ARMOR VARIABLE ACTIONS #
  21. #~~~~~~~~~~~~~~~~~~~~~~~~~~#
  22. action var armor.type.exp $Brigandine.LearningRate when metal scale gloves
  23. action var next.armor change.gloves.plate when metal scale gloves
  24. action var armor.type.exp $Chain_Armor.LearningRate when metal chain gloves
  25. action var next.armor change.gloves.brigandine when metal chain gloves
  26. action var armor.type.exp $Plate_Armor.LearningRate when some plate gauntlets
  27. action var next.armor change.gloves.brigandine when some plate gauntlets
  28. #~~~~~~~~~~~~~~~~~~~#
  29. # BASIC VARIABLES #
  30. #~~~~~~~~~~~~~~~~~~~#
  31. setvariable critter wolf
  32. setvariable appraisal.critter worm
  33. setvariable forage off
  34. setvariable forage.item rock
  35. setvariable evasion.num 81
  36. setvariable stealth on
  37. setvariable retreat.stealth off
  38. setvariable defense.switch 15
  39. setvariable manipulate.amount 3
  40. setvariable kills 0
  41. setvariable gems 0
  42. setvariable boxes 0
  43. setvariable armor.type.exp $Brigandine.LearningRate
  44. setvariable next.armor change.gloves.plate
  45. #~~~~~~~~~~~~~~~~~~~~~#
  46. # MAGIC INFORMATION #
  47. #~~~~~~~~~~~~~~~~~~~~~#
  48. setvariable manipulation on
  49. setvariable multi.manipulate on
  50. setvariable spell.1 vh
  51. setvariable spell.2 heal
  52. setvariable spell.3 IC
  53. setvariable spell.4 refresh
  54. setvariable spell.1.amount 16
  55. setvariable spell.2.amount 16
  56. setvariable spell.3.amount 8
  57. setvariable spell.4.amount 16
  58. setvariable held.cambrinth orb
  59. setvariable worn.cambrinth arm
  60. setvariable held.cambrinth.amount 4
  61. setvariable worn.cambrinth.amount 3
  62. setvariable held.cambrinth.use 20
  63. setvariable worn.cambrinth.use 8
  64. setvariable spell.part.1
  65. setvariable spell.part.2
  66.  
  67. ## Actual charges are 1 more than rotation ##
  68. setvariable held.cambrinth.rotation 4
  69. setvariable worn.cambrinth.rotation 1
  70. #~~~~~~~~~~~~~~~#
  71. # HOW TO LOOT #
  72. #~~~~~~~~~~~~~~~#
  73. setvariable skin on
  74. setvariable just.skin off
  75. setvariable coins.gems on
  76. #~~~~~~~~~~~~~~~~~~~~~~~#
  77. # ENCUMBRANCE ACTIONS #
  78. #~~~~~~~~~~~~~~~~~~~~~~~#
  79. action goto leave.time when Encumbrance : Burdened
  80. action goto leave.time when Encumbrance : Heavy Burden
  81. #~~~~~~~~~~~~~~~~~~~~~~~#
  82. # DEATH CALLS ACTIONS #
  83. #~~~~~~~~~~~~~~~~~~~~~~~#
  84. action goto skinning when uncoils rapidly before expiring.
  85. action goto skinning when letting out a final groan before ceasing all movement.
  86. action goto skinning when shuddering in pain before taking her last breath.
  87. action goto skinning when despair before finally taking her last breath.
  88. action goto skinning when last time and lies still.
  89. action goto skinning when falls to the ground and lies still.
  90. action goto skinning when it ceases all movement.
  91. action goto skinning when the deer softly exhales its final breath.
  92. action goto skinning when stops all movement.
  93. action goto skinning when Begrudgingly admitting defeat,
  94. action goto skinning when before passing into oblivion.
  95. action goto skinning when of life flee this mortal coil.
  96. action goto skinning when and lies still.
  97. action goto skinning when seems to deflate slightly.
  98. action goto skinning when threateningly one last time before collapsing.
  99. action goto skinning when and then grows still.
  100. action goto skinning when seconds, then lies still.
  101. action goto skinning when then goes limp.
  102. action goto skinning when whines briefly before closing its eyes forever.
  103. action goto skinning when growls one last time and collapses.
  104. action goto skinning when growls low and dies.
  105. action goto skinning when oozing outwards as a murky puddle.
  106. action goto skinning when spasms violently, then falls motionless.
  107. #~~~~~~~~~~~~~~~~#
  108. # MISC ACTIONS #
  109. #~~~~~~~~~~~~~~~~#
  110. action put dance when You should stand up first.
  111. action put dance when You slowly tip over and fall down.
  112. action send 3 $lastcommand when You are still stunned.
  113. #---------------------------------------------------------------------------------------------------------------------
  114. ###############################################
  115. ##~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~##
  116. # VARIABLES/ACTIONS END AND SCRIPT STARTS #
  117. ##~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~##
  118. ###############################################
  119. #---------------------------------------------------------------------------------------------------------------------
  120. start:
  121. setvariable armor.rotation 0
  122. gosub take.held.cambrinth
  123. defense.parry:
  124. setvariable rotations 0
  125. gosub stance.parry
  126. setvariable defense parry.check
  127. goto manipulation
  128. defense.shield:
  129. setvariable rotations 0
  130. gosub stance.shield
  131. setvariable defense shield.check
  132. goto manipulation
  133. #~~~~~~~~~~~~~~~~#
  134. # MAIN SECTION #
  135. #~~~~~~~~~~~~~~~~#
  136. manipulation:
  137. gosub manipulate
  138. main.part.1:
  139. gosub hunt
  140. gosub circle
  141. gosub perc
  142. gosub pre.spell.2
  143. gosub charge.held.cambrinth
  144. gosub invoke.held.cambrinth
  145. gosub perc.health
  146. # gosub circle
  147. # waitfor You feel fully prepared to cast your spell.
  148. gosub collect
  149. put recall %critter
  150. gosub cast.spell.2
  151. gosub hide
  152. gosub circle
  153. gosub appraise
  154. gosub hide
  155. gosub circle
  156. pause 10
  157. gosub pre.spell.1
  158. gosub charge.held.cambrinth
  159. gosub invoke.held.cambrinth
  160. gosub hide
  161. gosub circle
  162. wait 5
  163. gosub cast.spell.1
  164. gosub perc
  165. gosub hide
  166. gosub circle
  167. gosub appraise
  168. gosub pre.spell.3
  169. gosub charge.held.cambrinth
  170. gosub invoke.held.cambrinth
  171. gosub hide
  172. gosub circle
  173. # waitfor You feel fully prepared to cast your spell.
  174. gosub cast.spell.3
  175. gosub collect
  176. gosub hide
  177. gosub circle
  178. gosub manipulate
  179. gosub pre.spell.4
  180. gosub charge.held.cambrinth
  181. gosub invoke.held.cambrinth
  182. gosub hide
  183. gosub circle
  184. pause 5
  185. # waitfor You feel fully prepared to cast your spell.
  186. gosub cast.spell.4
  187. gosub hunt
  188. gosub hide
  189. gosub circle
  190. gosub pre.spell.1
  191. gosub charge.held.cambrinth
  192. gosub invoke.held.cambrinth
  193. gosub perc.health
  194. gosub hide
  195. gosub circle
  196. wait 5
  197. gosub cast.spell.1
  198. gosub perc
  199. gosub hide
  200. gosub circle
  201. gosub appraise
  202. gosub pre.spell.2
  203. gosub charge.held.cambrinth
  204. gosub invoke.held.cambrinth
  205. gosub circle
  206. # waitfor You feel fully prepared to cast your spell.
  207. gosub hide
  208. pause 5
  209. gosub cast.spell.2
  210. gosub hunt
  211. gosub hide
  212. gosub circle
  213. gosub pre.spell.3
  214. gosub charge.held.cambrinth
  215. gosub invoke.held.cambrinth
  216. gosub hide
  217. gosub circle
  218. # waitfor You feel fully prepared to cast your spell.
  219. gosub cast.spell.3
  220. gosub collect
  221. gosub hide
  222. gosub circle
  223. gosub manipulate
  224. gosub pre.spell.4
  225. gosub charge.held.cambrinth
  226. gosub invoke.held.cambrinth
  227. gosub hide
  228. gosub circle
  229. pause 5
  230. # waitfor You feel fully prepared to cast your spell.
  231. gosub cast.spell.4
  232. gosub add.rotation
  233. gosub add.armor.rotation
  234. goto %defense
  235. parry.check:
  236. if %rotations > 20 then goto defense.shield
  237. if $Parry_Ability.LearningRate > %defense.switch then goto defense.shield
  238. goto manipulation
  239. shield.check:
  240. if %rotations > 20 then goto defense.parry
  241. if $Shield_Usage.LearningRate > %defense.switch then goto defense.parry
  242. goto manipulation
  243. armor.check:
  244. if %armor.rotation > 45 then goto %next.armor
  245. if %armor.type.exp > 20 then goto %next.armor
  246. goto manipulation
  247. change.gloves.brigandine:
  248. setvariable armor.type.exp $Brigandine.LearningRate
  249. setvariable next.armor change.gloves.plate
  250. gosub remove.plate.glove
  251. gosub wear.scale.glove
  252. goto manipulation
  253. change.gloves.plate:
  254. setvariable armor.type.exp $Plate_Armor.LearningRate
  255. setvariable next.armor change.gloves.scale
  256. gosub remove.scale.glove
  257. gosub wear.plate.glove
  258. goto manipulation
  259. end.check:
  260. if $Tactics.LearningRate > 32 then goto to.crossing
  261. if $Parry_Abulty.LearningRate < 32 then goto %defense
  262. if $Shield_Usage.LearningRate < 32 then goto %defense
  263. to.crossing:
  264. goto manipulation
  265. put #goto crossing
  266. waitfor YOU HAVE ARRIVED
  267. put .empathcrossing
  268. exit
  269.  
  270. #~~~~~~~~~~~#
  271. # LOOTING #
  272. #~~~~~~~~~~~#
  273. skinning:
  274. gosub kill.count
  275. gosub release.spell
  276. if %skin = off then goto looting
  277. gosub arrange.skin
  278. looting:
  279. gosub loot
  280. if %just.skin = on then goto post.kill
  281. gosub take.coin
  282. gosub stow.gem
  283. if %coin.gems = on then goto post.kill
  284. gosub stow.box
  285. goto post.kill
  286. post.kill:
  287. gosub kill.count
  288. put #statusbar ==========> %kills kills so far! <==========
  289. if %just.skin = on then goto manipulation
  290. put #statusbar ==========> %kills kills and %gems gems so far! <=========
  291. if %coin.gems = on then goto manipulation
  292. put #statusbar ==========> %kills kills, %gems gems, and %boxes boxes so far! <==========
  293. goto manipulation
  294. #-----------------------------------------------------------------------------------------------------------------
  295. ########################
  296. ##~~~~~~~~~~~~~~~~~~~~##
  297. # ALL GOSUBS BELOW #
  298. ##~~~~~~~~~~~~~~~~~~~~##
  299. ########################
  300. #------------------------------------------------------------------------------------------------------------------
  301. #~~~~~~~~~~~~~~~~~~~~~~~~#
  302. # TAKE AND STOW GOSUBS #
  303. #~~~~~~~~~~~~~~~~~~~~~~~~#
  304. take.held.cambrinth:
  305. pause .1
  306. put take my %held.cambrinth
  307. match take.held.cambrinth ...wait
  308. match take.held.cambrinth Sorry, you
  309. match return You are already holding that.
  310. match return You get a
  311. # match error.cambrinth What do you want to get?
  312. matchwait
  313. #~~~~~~~~~~~~~~~~~~~~~#
  314. # ARMOR SWAP GOSUBS #
  315. #~~~~~~~~~~~~~~~~~~~~~#
  316. remove.plate.glove:
  317. remove.plate:
  318. put remove gauntlets
  319. match remove.plate ...wait
  320. match remove.plate Sorry, you
  321. match stow.plate You pull off some
  322. match return Remove what?
  323. matchwait
  324. stow.plate:
  325. put stow gauntlet
  326. match stow.plate ...wait
  327. match stow.plate Sorry, you
  328. match return You put your
  329. match return Stow what?
  330. matchwait
  331. wear.chain.glove:
  332. take.chain:
  333. put take chain glove
  334. match take.chain ...wait
  335. match take.chain Sorry, you
  336. match wear.chain You get some
  337. matchwait
  338. wear.chain:
  339. put wear chain glove
  340. match wear.chain ...wait
  341. match wear.chain Sorry, you
  342. match return You slip some
  343. matchwait
  344. remove.chain.glove:
  345. remove.chain:
  346. put remove chain glove
  347. match remove.chain ...wait
  348. match remove.chain Sorry, you
  349. match stow.chain You pull off some
  350. match return Remove what?
  351. matchwait
  352. stow.chain:
  353. put stow glove
  354. match stow.chain ...wait
  355. match stow.chain Sorry, you
  356. match return You put your
  357. matchwait
  358. wear.scale.glove:
  359. take.scale:
  360. put take scale glove
  361. match take.scale ...wait
  362. match take.scale Sorry, you
  363. match wear.scale You get some
  364. matchwait
  365. wear.scale:
  366. setvariable armor.rotation 0
  367. put wear scale glove
  368. match wear.scale ...wait
  369. match wear.scale Sorry, you
  370. match return You slip some
  371. matchwait
  372. remove.scale.glove:
  373. remove.scale:
  374. put remove scale glove
  375. match remove.scale ...wait
  376. match remove.scale Sorry, you
  377. match return Remove what?
  378. match stow.scale You pull off
  379. matchwait
  380. stow.scale:
  381. put stow scale glove
  382. match stow.scale ...wait
  383. match stow.scale Sorry, you
  384. match return You put your
  385. matchwait
  386. wear.plate.glove:
  387. take.plate:
  388. put take gauntlet
  389. match take.plate ...wait
  390. match take.plate Sorry, you
  391. match wear.plate You get some
  392. matchwait
  393. wear.plate:
  394. setvariable armor.rotation 0
  395. put wear gauntlet
  396. match wear.plate ...wait
  397. match wear.plate Sorry, you
  398. match return You slip some
  399. matchwait
  400. #~~~~~~~~~~~~~~~~#
  401. # MAGIC GOSUBS #
  402. #~~~~~~~~~~~~~~~~#
  403. manipulate.wait:
  404. pause 3
  405. manipulate:
  406. primary.manipulate:
  407. if %manipulation = off then goto return
  408. pause .1
  409. if $monstercount < %manipulate.amount then goto return
  410. put manip friend %critter
  411. match primary.manipulate ...wait
  412. match primary.manipulate Sorry, you
  413. match return Manipulate what?
  414. match return Roundtime:
  415. match manipulate.wait seem to be beyond your ken.
  416. match secondary.manipulate You're already manipulating
  417. match return You strain, but cannot extend your will any further.
  418. matchwait
  419. secondary.manipulate:
  420. pause .1
  421. if %multi.manipulate = off then goto return
  422. if $monstercount < %manipulate.amount then goto return
  423. put manip friend other %critter
  424. match secondary.manipulate ...wait
  425. match secondary.manipulate Sorry, you
  426. match return Manipulate what?
  427. match return Roundtime
  428. match return seem to be beyond your ken.
  429. match return You're already manipulating
  430. match return You strain, but cannot extend your will any further.
  431. matchwait
  432. pre.spell.1:
  433. pause .1
  434. if $mana < 25 then goto return
  435. put prep %spell.1 %spell.1.amount
  436. match pre.spell.1 ...wait
  437. match pre.spell.1 Sorry, you
  438. match return With calm movements
  439. match return You have already fully prepared
  440. match return You are already
  441. match return With tense movements
  442. matchwait
  443. pre.spell.2:
  444. pause .1
  445. if $mana < 25 then goto return
  446. put prep %spell.2 %spell.2.amount
  447. match pre.spell.2 ...wait
  448. match pre.spell.2 Sorry, you
  449. match return With calm movements
  450. match return With tense movements
  451. match return You have already fully prepared
  452. match return You are already
  453. matchwait
  454. pre.spell.3:
  455. pause .1
  456. if $mana < 25 then goto return
  457. put prep %spell.3 %spell.3.amount
  458. match pre.spell.3 ...wait
  459. match pre.spell.3 Sorry, you
  460. match return With calm movements
  461. match return You have already fully prepared
  462. match return You are already
  463. match return With tense movements
  464. matchwait
  465. pre.spell.4:
  466. pause .1
  467. if $mana < 25 then goto return
  468. put prep %spell.4 %spell.4.amount
  469. match pre.spell.4 ...wait
  470. match pre.spell.4 Sorry, you
  471. match return With calm movements
  472. match return You have already fully prepared
  473. match return You are already
  474. match return With tense movements
  475. matchwait
  476. charge.held.cambrinth:
  477. setvariable camb.section charge.held.1
  478. setvariable cambrinth.rotation 0
  479. if $mana < 25 then goto return
  480. charge.held.1:
  481. if %cambrinth.rotation > %held.cambrinth.rotation then goto return
  482. pause .1
  483. put charge my %held.cambrinth %held.cambrinth.amount
  484. match charge.held.1 ...wait
  485. match charge.held.1 Sorry, you
  486. match cambrinth.counter Roundtime:
  487. matchwait
  488. invoke.held.cambrinth:
  489. pause .1
  490. put invoke my %held.cambrinth %held.cambrinth.use
  491. match invoke.held.cambrinth ...wait
  492. match invoke.held.cambrinth Sorry, you
  493. match return Roundtime:
  494. matchwait
  495. charge.worn.cambrinth:
  496. setvariable camb.section charge.worn.1
  497. setvariable cambrinth.rotation 0
  498. charge.worn.1:
  499. if $mana < 25 then goto return
  500. if %cambrinth.rotation > %worn.cambrinth.rotation then goto return
  501. pause .1
  502. put charge my %worn.cambrinth %worn.cambrinth.amount
  503. match charge.worn.1 ...wait
  504. match charge.worn.1 Sorry, you
  505. match cambrinth.counter Roundtime:
  506. matchwait
  507. invoke.worn.cambrinth:
  508. pause .1
  509. put invoke my %worn.cambrinth %worn.cambrinth.use
  510. match invoke.worn.cambrinth ...wait
  511. match invoke.worn.cambrinth Sorry, you
  512. match return Roundtime:
  513. matchwait
  514. cast.spell.1:
  515. pause .1
  516. match cast.spell.1 ...wait
  517. match cast.spell.1 Sorry, you
  518. match return With a wave
  519. match return You wave your hand.
  520. match return You gesture.
  521. match return emits a loud *snap*
  522. match return You don't have a spell prepared!
  523. put cast %spell.part.1
  524. matchwait
  525. cast.spell.2:
  526. pause .1
  527. match cast.spell.2 ...wait
  528. match cast.spell.2 Sorry, you
  529. match return You gesture.
  530. match return With a wave
  531. match return You wave your hand.
  532. match return emits a loud *snap*
  533. match return You don't have a spell prepared!
  534. put cast %spell.part.2
  535. matchwait
  536. cast.spell.3:
  537. pause .1
  538. match cast.spell.3 ...wait
  539. match cast.spell.3 Sorry, you
  540. match return You gesture.
  541. match return With a wave
  542. match return You wave your hand.
  543. match return emits a loud *snap*
  544. match return You don't have a spell prepared!
  545. put cast %spell.part.2
  546. matchwait
  547. cast.spell.4:
  548. pause .1
  549. match cast.spell.4 ...wait
  550. match cast.spell.4 Sorry, you
  551. match return You gesture.
  552. match return With a wave
  553. match return You wave your hand.
  554. match return emits a loud *snap*
  555. match return You don't have a spell prepared!
  556. put cast %spell.part.2
  557. matchwait
  558. perc:
  559. pause .1
  560. put perc
  561. match perc ...wait
  562. match perc Sorry, you
  563. match return Roundtime:
  564. matchwait
  565. perc.health:
  566. pause .1
  567. put perc health
  568. match perc.health ...wait
  569. match perc.health Sorry, you
  570. match return Roundtime:
  571. match return You close your eyes
  572. matchwait
  573. release.spell:
  574. pause .5
  575. put release
  576. match release.spell ...wait
  577. match release.spell Sorry, you
  578. match return You let your concentration lapse
  579. match return You aren't preparing a spell.
  580. matchwait
  581. #~~~~~~~~~~~~~~~#
  582. # MISC GOSUBS #
  583. #~~~~~~~~~~~~~~~#
  584. hunt:
  585. pause .1
  586. if $Perception.LearningRate > 31 then goto return
  587. put hunt
  588. match hunt ...wait
  589. match hunt Sorry, you
  590. match return You find yourself unable to hunt in this area.
  591. match return Roundtime:
  592. matchwait
  593. hide:
  594. if $Stealth.LearningRate > 31 then goto return
  595. hide.retreat:
  596. if %retreat.stealth = off then goto hide.now
  597. pause .1
  598. put retreat
  599. match hide.retreat ...wait
  600. match hide.retreat Sorry, you
  601. match hide.retreat You retreat
  602. match hide.retreat You stop
  603. match hide.retreat Roundtime:
  604. match hide.now You are already
  605. matchwait
  606. hide.now:
  607. pause .1
  608. put hide
  609. match hide.now ...wait
  610. match hide.now Sorry, you
  611. match return notices your attempt to hide!
  612. match return You melt into the background,
  613. match return You blend in with your surroundings
  614. match return Roundtime:
  615. matchwait
  616. appraise:
  617. pause .1
  618. if $Appraisal.LearningRate > 31 then goto return
  619. put app %appraisal.critter quick
  620. match appraise ...wait
  621. match appraise Sorry, you
  622. match return [Roundtime:
  623. match return You cannot appraise that when
  624. match return Appraise what?
  625. matchwait
  626. collect:
  627. collect.counter:
  628. counter set 0
  629. collect.retreat:
  630. counter add 1
  631. if %c > 4 then goto return
  632. pause .5
  633. put retreat
  634. match collect.retreat ...wait
  635. match collect.retreat Sorry, you
  636. match collect.retreat You retreat
  637. match collect.retreat You stop
  638. match collect.retreat Roundtime
  639. match collect.item You are already
  640. matchwait
  641. collect.item:
  642. pause .1
  643. put collect %forage.item
  644. match collect.item ...wait
  645. match collect.item Sorry, you
  646. match collect.retreat You cannot collect
  647. match kick.pile Roundtime:
  648. match junk The room is too cluttered to find anything here!
  649. matchwait
  650. junk:
  651. put dump junk
  652. goto return
  653. kick.pile:
  654. pause .1
  655. put kick pile
  656. match kick.pile ...wait
  657. match kick.pile Sorry, you
  658. match return I could not find
  659. match kick.pile You take a step back
  660. match return You lean back and kick your feet,
  661. match return ever do to you?
  662. match return You lean back and kick your feet slowly.
  663. matchwait
  664. circle:
  665. pause .5
  666. match circle ...wait
  667. match circle Sorry, you
  668. match return You must be closer
  669. match return There is nothing else to face!
  670. match return Roundtime:
  671. match return flying far too high
  672. put circle
  673. matchwait
  674. analyze:
  675. pause .1
  676. put analyze
  677. match analyze ...wait
  678. match analyze Sorry, you
  679. match return Roundtime:
  680. match return Analyze what?
  681. match return You must be closer
  682. match return You fail to find
  683. matchwait
  684. #~~~~~~~~~~~~~~~~~~#
  685. # LOOTING GOSUBS #
  686. #~~~~~~~~~~~~~~~~~~#
  687. arrange.skin:
  688. arrange:
  689. pause .1
  690. put arrange
  691. match arrange ...wait
  692. match arrange Sorry, you
  693. match skin You complete arranging
  694. match return You make a serious mistake in the arranging process
  695. match return Arrange what?
  696. match arrange Roundtime
  697. matchwait
  698. skin:
  699. pause .1
  700. put skin
  701. match skin ...wait
  702. match skin Sorry, you
  703. match return Roundtime:
  704. match return Skin what?
  705. matchwait
  706. loot:
  707. pause .1
  708. put loot
  709. match loot ...wait
  710. match loot Sorry, you
  711. match return You search
  712. match return I cound not
  713. matchwait
  714. take.coin:
  715. pause .1
  716. put stow coin
  717. match take.coin ...wait
  718. match take.coin Sorry, you
  719. match take.coin You pick up
  720. match return Stow what?
  721. matchwait
  722. stow.gem:
  723. pause .1
  724. put stow gem
  725. match stow.gem ...wait
  726. match stow.gem Sorry, you
  727. match gem.count You put your
  728. match return Stow what?
  729. matchwait
  730. stow.box:
  731. pause .1
  732. put stow box
  733. match stow.box ...wait
  734. match stow.box Sorry, you
  735. match return Stow what?
  736. match box.count You put your
  737. match box.bag no matter how you arrange it.
  738. match box.bag There isn't any more room
  739. matchwait
  740. box.bag:
  741. pause .1
  742. put put $lefthand in bag
  743. match box.bag ...wait
  744. match box.bag Sorry, you
  745. match box.count You put your
  746. matchwait
  747. #~~~~~~~~~~~~~~~~~~~~#
  748. # COUNTERS FOR ALL #
  749. #~~~~~~~~~~~~~~~~~~~~#
  750. box.count:
  751. counter set %boxes
  752. counter add 1
  753. setvariable boxes %c
  754. return
  755. gem.count:
  756. counter set %gems
  757. counter add 1
  758. setvariable gems %c
  759. goto stow.gem
  760. kill.count:
  761. counter set %kills
  762. counter add 1
  763. setvariable kills %c
  764. return
  765. cambrinth.counter:
  766. counter set %cambrinth.rotation
  767. counter add 1
  768. setvariable cambrinth.rotation %c
  769. goto %camb.section
  770. #~~~~~~~~~~~#
  771. # STANCES #
  772. #~~~~~~~~~~~#
  773. stance.shield:
  774. pause .1
  775. put stance shield
  776. match stance.shield ...wait
  777. match stance.shield Sorry, you
  778. match stance.shield.adjust You are now set
  779. matchwait
  780. stance.shield.adjust:
  781. put stance evasion %evasion.num
  782. match stance.shield.adjust ...wait
  783. match stance.shield.adjust Sorry, you
  784. match return Your evasion ability
  785. matchwait
  786. stance.parry:
  787. pause .1
  788. put stance parry
  789. match stance.parry ...wait
  790. match stance.parry Sorry, you
  791. match stance.parry.adjust You are now set
  792. matchwait
  793. stance.parry.adjust:
  794. put stance evasion %evasion.num
  795. match stance.parry.adjust ...wait
  796. match stance.parry.adjust Sorry, you
  797. match return Your evasion ability
  798. matchwait
  799. add.rotation:
  800. counter set %rotations
  801. counter add 1
  802. setvariable rotations %c
  803. return
  804. add.armor.rotation:
  805. counter set %armor.rotation
  806. counter add 1
  807. setvariable armor.rotation %c
  808. return
  809. return:
  810. RETURN
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement