Advertisement
TheExoduss

DR_SF_Mining_Archive.cmd

Aug 19th, 2017
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 22.88 KB | None | 0 0
  1.  Mining (1.15) by Ronok - Updated: 1.24.12 8:13PM
  2. 1 Tags: mining ore metal gathering blacksmithing smithing armorsmithing weaponsmithing
  3. 1 Engines: Wizard StormFront
  4. 1 Description: This is my mining script that I just whipped up.
  5.  
  6. ### USE AT YOUR OWN RISK I TAKE NO RESPONSIBILITIES FOR DEATHS ###
  7.  
  8. Script setup is as follows
  9.  
  10. to accomodate multiple different places to put these things I modified the script to heavily use setvariables so make sure you check out the beginning of the script and set your containers correctly.
  11.  
  12. The Script options are as follows.
  13.  
  14. ### GATHERING INFORMATION ###
  15.  
  16. #SET THE VARIABLES IN THE EDITABLE AREAS TO HOW YOU WISH THE SCRIPT TO INTERACT#
  17.  
  18. #FOR THE PACKET VARIABLES IF IT IS SET WITH A "#" THAT MEANS HE VARIABLE IS TURNED OFF TURN IT ON BY REMOVING THE "#" ONLY ONE OF THE THREE PACKET VARIABLES CAN BE ENABLED AT A TIME SO MAKE SURE YOU DON"T MESS THAT UP.
  19.  
  20. #setvariable packet NP_PROSPECT this option is a no packet but push from miners is available, use this if you have the money set it by removing the "#"
  21.  
  22. #setvariable packet YP_PROSPECT this option is a yes packet and push with your own packet option to use if you have a deed packet set it by removing the "#"
  23.  
  24. #setvariable packet STOW_PROSPECT this option is to not use a push verb or packet and directly put all gathered ore into your bags used when you have big bags set it by removing the "#"
  25.  
  26. # stow1 put <nugget action without push or money>
  27. # stow2 in my <nugget owner without push or money>
  28. # stow3 duffel bag <container set for all nuggets and such for non deeded items i.e. raw materials>
  29. # stow4 put <deed action>
  30. # stow5 in my <deed owner>
  31. # stow6 tote <container set for all deeds>
  32.  
  33. #setvariable packetstow1 put <action for your deed packet if set to STOW you must remove the variable for packetstow2 and 3
  34. #setvariable packetstow2 in my <used when not using the STOW command>
  35. #setvariable packetstow3 Tote <where your deed packet goes>
  36.  
  37. #setvariable tool shovel <the tool you use>
  38. #setvariable toolstow1 put <action for your tool if set to stow you must remove the variable for toolstow2 and 3
  39. #setvariable toolstow2 in my <used when not using the STOW command
  40. #setvariable toolstow3 duffel bag <where you keep your tool>
  41.  
  42. #setvariable ore UNCOMMON <Only keeps uncommon or above ore to exclude covellite>
  43. #setvariable ore COMMON <Keeps all ore>
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50. Script has been updated to accomodate mining areas that support the "PUSH" command and for packets. if you are in one of these areas it will automatically try and push for deeds then "STOW" those deeds. if you do not have enough money on you it will revert back and pick the actual metal up and stow it instead. same goes for if you are set to use a deed packet and your deeds run out it will start automatically stowing the raw ore instead.
  51.  
  52. The script now has the option to pick up all ore or just the uncommon and above ores.
  53.  
  54.  
  55. Usage is just: .mine
  56.  
  57. this script is built to-
  58.  
  59. - Prospect.
  60. - Prospect careful for more resources.
  61. - Prospect danger after each mining swing.
  62. - it is setup to ignore stones and only pickup metal nuggets.
  63. - it is currently set to only pickup and "STOW/PUSH" silver, gold, platinum, and all V. Rare and the other rare metals or you can set the option to pickup all metal ores that drop.
  64. - After depleting a room it will wait for a respawn and continue mining after the room respawns..
  65. - Script is currently set to use everything as well just read the top of the script and customize the variables to suit you.
  66. - it also hums for you!
  67.  
  68. This Script is not built to-
  69.  
  70. - it will not wholy garuntee your survival in all instances of mining accidents so pay attention still.
  71. - it will not make you a pot pie.
  72. - it will also not give foot rubs
  73.  
  74. As always the same with my armorsmithing script if you have problems with the script please let me know so I can debug/fix any issues.
  75.  
  76.  
  77. ############################### SCRIPT IS BELOW HERE ######################################
  78.  
  79.  
  80. ### GATHERING INFORMATION ###
  81.  
  82. #SET THE VARIABLES IN THE EDITABLE AREAS TO HOW YOU WISH THE SCRIPT TO INTERACT#
  83.  
  84. #FOR THE PACKET VARIABLES IF IT IS SET WITH A "#" THAT MEANS HE VARIABLE IS TURNED OFF TURN IT ON BY REMOVING THE "#" ONLY ONE OF THE THREE PACKET VARIABLES CAN BE ENABLED AT A TIME SO MAKE SURE YOU DON"T MESS THAT UP.
  85.  
  86. #setvariable packet NP_PROSPECT this option is a no packet but push from miners is available, use this if you have the money set it by removing the "#"
  87.  
  88. #setvariable packet YP_PROSPECT this option is a yes packet and push with your own packet option to use if you have a deed packet set it by removing the "#"
  89.  
  90. #setvariable packet STOW_PROSPECT this option is to not use a push verb or packet and directly put all gathered ore into your bags used when you have big bags set it by removing the "#"
  91.  
  92. # stow1 put <nugget action without push or money>
  93. # stow2 in my <nugget owner without push or money>
  94. # stow3 duffel bag <container set for all nuggets and such for non deeded items i.e. raw materials>
  95. # stow4 put <deed action>
  96. # stow5 in my <deed owner>
  97. # stow6 tote <container set for all deeds>
  98.  
  99. #setvariable packetstow1 put <action for your deed packet if set to stow you must remove the variable for packetstow2 and 3 #setvariable packetstow2 in my <used when not using the stow command>
  100. #setvariable packetstow3 Tote <where your deed packet goes>
  101.  
  102. #setvariable tool shovel <the tool you use>
  103. #setvariable toolstow1 put <action for your tool if set to stow you must remove the variable for toolstow2 and 3 #setvariable toolstow2 in my <used when not using the stow command #setvariable toolstow3 duffel bag <where you keep your tool>
  104.  
  105. #setvariable ore UNCOMMON <only keeps uncommon or above ore to exclude covellite>
  106. #setvariable ore COMMON <keeps all ore>
  107.  
  108.  
  109.  
  110. ### BEGIN EDITABLE AREAS ###
  111.  
  112. ### NUGGET AND DEED STOWAGE ###
  113. setvariable stow1 put
  114. setvariable stow2 in my
  115. setvariable stow3 pack
  116. setvariable stow4 put
  117. setvariable stow5 in my
  118. setvariable stow6 apron
  119.  
  120. ### DEED PACKET USE AND STOWAGE ###
  121. #setvariable packet STOW_PROSPECT
  122. #setvariable packet NP_PROSPECT
  123. setvariable packet YP_PROSPECT
  124. setvariable packetstow1 put
  125. setvariable packetstow2 in my
  126. setvariable packetstow3 apron
  127.  
  128. ### YOUR MINING TOOL TYPE AND STOWAGE ###
  129. setvariable tool shovel
  130. setvariable toolstow1 put
  131. setvariable toolstow2 in my
  132. setvariable toolstow3 pack
  133.  
  134. ### WHAT ORE ARE YOU GOING TO MINE ###
  135.  
  136. setvariable ore UNCOMMON
  137. #setvariable ore COMMON
  138.  
  139. ### END EDITABLE AREAS ###
  140.  
  141.  
  142.  
  143. START:
  144. pause 1
  145. goto %ore
  146.  
  147. UNCOMMON:
  148. setvariable oretype1 DANGER2
  149. setvariable oretype2 PDANGER2
  150. setvariable oretype3 YPDANGER2
  151. goto MINEPREP
  152.  
  153. COMMON:
  154. setvariable oretype1 NUGGET1
  155. setvariable oretype2 NUGGET2
  156. setvariable oretype3 NUGGET3
  157. goto MINEPREP
  158.  
  159. MINEPREP:
  160. put take my %tool
  161. pause 1
  162. put prospect careful
  163. pause 1
  164. goto %packet
  165.  
  166.  
  167. STOW_PROSPECT:
  168. pause 1
  169. put prospect
  170. match STOW_PROSPECT ...wait
  171. match MINE No miners
  172. match MINE Miners stand ready
  173. match PAUSE Roundtime
  174. matchwait
  175.  
  176.  
  177. NP_PROSPECT:
  178. pause 1
  179. put prospect
  180. match NP_PROSPECT ...wait
  181. match PMINE No miners
  182. match PMINE Miners stand ready
  183. match PAUSE Roundtime
  184. matchwait
  185.  
  186.  
  187. YP_PROSPECT:
  188. pause 1
  189. put prospect
  190. match YP_PROSPECT ...wait
  191. match YPMINE No miners
  192. match YPMINE Miners stand ready
  193. match YPPAUSE Roundtime
  194. matchwait
  195.  
  196.  
  197. MINE:
  198. put hum dirge quick
  199. put mine
  200. match MINE ...wait
  201. match MINEPREP actual mining tool
  202. match DANGER2 unsalvageable
  203. match BLANK mind goes blank
  204. match DEAD Every muscle in your chest
  205. match REPAIR gouged and bent
  206. match WOUNDED clear off your feet
  207. match BLANK world goes black
  208. match WOUNDED hurling you into the air
  209. match DANGER2 usefulness
  210. match WOUNDED try to take cover
  211. match WOUNDED razor-sharp stone fragments
  212. match DANGER2 to mine for some time
  213. match BURIED pinned in place
  214. match BURIED unable to move
  215. match DANGER2 pebble topples
  216. match DANGER2 rock topples
  217. match DANGER2 stone topples
  218. match DANGER2 boulder topples
  219. match %oretype1 copper nugget
  220. match %oretype1 zinc nugget
  221. match %oretype1 tin nugget
  222. match %oretype1 covellite nugget
  223. match %oretype1 coal nugget
  224. match %oretype1 iron nugget
  225. match %oretype1 lead nugget
  226. match %oretype1 nickel nugget
  227. match %oretype1 oravir nugget
  228. match TEAR tear
  229. match LUMP lump
  230. match PNUGGET platinum nugget
  231. match SNUGGET silver nugget
  232. match GNUGGET gold nugget
  233. match FRAGMENT fragment are
  234. match FRAGMENT fragment falls
  235. match SHARD shard
  236. match DANGER1 Roundtime
  237. matchwait
  238.  
  239. BLANK:
  240. ECHO ###### YOU GOT KNOCKED OUT HAHAHAHAHAHA WAITING A MINUTE FOR YOU TO WAKE UP ######
  241. pause 60
  242. put stand
  243. pause 1
  244. goto DANGER2
  245.  
  246. DEAD:
  247. ECHO ###### SHOULD HAVE PAID BETTER ATTENTION BECUASE NOW YOUR DEAD ######
  248. exit
  249.  
  250. REPAIR:
  251. ECHO ###### YOUR TOOLS ARE MESSED UP PAUSING 2 MINUTES TO ALLOW FOR REPAIRS ######
  252. pause 120
  253. goto DANGER2
  254.  
  255. WOUNDED:
  256. ECHO ###### YOU GOT HURT CHECK YOURSELF ######
  257. pause 60
  258. put stand
  259. pause 1
  260. goto DANGER2
  261.  
  262. BURIED:
  263. ECHO ###### YOUR IN A CAVE IN HOPE TO CHADATRU YOU CAN DIG OUT ######
  264. pause 120
  265. goto DANGER2
  266.  
  267. DANGER1:
  268. pause 1
  269. put Prospect Danger
  270. match DANGER1 ...wait
  271. match MINE Using a discarded stone
  272. match MINE nothing of concern
  273. match DANGER1 unable to find any way
  274. matchwait
  275.  
  276. DANGER2:
  277. pause 1
  278. put Prospect Danger
  279. match DANGER2 ...wait
  280. match PROSPECT Using a discarded stone
  281. match PROSPECT nothing of concern
  282. match DANGER2 unable to find any way
  283. matchwait
  284.  
  285.  
  286. PROSPECT:
  287. pause 1
  288. put prospect
  289. match PROSPECT ...wait
  290. match MINE No miners
  291. match MINE Miners stand ready
  292. match PAUSE Roundtime
  293. matchwait
  294.  
  295. PAUSE:
  296. ECHO ###### WAITING FOR ORE TO RESPAWN ######
  297. pause 120
  298. goto PROSPECT2
  299.  
  300. PROSPECT2:
  301. pause 1
  302. put prospect careful
  303. pause 1
  304. put prospect
  305. match PROSPECT2 ...wait
  306. match DANGER1 No miners
  307. match DANGER1 Miners stand ready
  308. match PAUSE Roundtime
  309. matchwait
  310.  
  311. NUGGET1:
  312. pause 1
  313. put take nugget
  314. pause 1
  315. put %stow1 nugget %stow2 %stow3
  316. pause 1
  317. goto DANGER2
  318.  
  319. TEAR:
  320. pause 1
  321. put take tear
  322. pause 1
  323. put %stow1 tear %stow2 %stow3
  324. pause 1
  325. goto DANGER2
  326.  
  327. SHARD:
  328. pause 1
  329. put take shard
  330. pause 1
  331. put %stow1 shard %stow2 %stow3
  332. pause 1
  333. goto DANGER2
  334.  
  335. FRAGMENT:
  336. pause 1
  337. put take fragment
  338. pause 1
  339. put %stow1 fragment %stow2 %stow3
  340. pause 1
  341. goto DANGER2
  342.  
  343. LUMP:
  344. pause 1
  345. put take lump
  346. pause 1
  347. put %stow1 lump %stow2 %stow3
  348. pause 1
  349. goto DANGER2
  350.  
  351. PNUGGET:
  352. pause 1
  353. put take platinum nugget
  354. pause 1
  355. put %stow1 platinum nugget %stow2 %stow3
  356. pause 1
  357. goto DANGER2
  358.  
  359. SNUGGET:
  360. pause 1
  361. put take silver nugget
  362. pause 1
  363. put %stow1 silver nugget %stow2 %stow3
  364. pause 1
  365. goto DANGER2
  366.  
  367. GNUGGET:
  368. pause 1
  369. put take gold nugget
  370. pause 1
  371. put %stow1 gold nugget %stow2 %stow3
  372. pause 1
  373. goto DANGER2
  374.  
  375. PMINE:
  376. put hum dirge quick
  377. put mine
  378. match PMINE ...wait
  379. match MINEPREP actual mining tool
  380. match PDANGER2 unsalvageable
  381. match PBLANK mind goes blank
  382. match PDEAD Every muscle in your chest
  383. match PREPAIR gouged and bent
  384. match PWOUNDED clear off your feet
  385. match PBLANK world goes black
  386. match PWOUNDED hurling you into the air
  387. match PDANGER2 usefulness
  388. match PWOUNDED try to take cover
  389. match PWOUNDED razor-sharp stone fragments
  390. match PDANGER2 to mine for some time
  391. match PBURIED pinned in place
  392. match PBURIED unable to move
  393. match PDANGER2 pebble topples
  394. match PDANGER2 rock topples
  395. match PDANGER2 stone topples
  396. match PDANGER2 boulder topples
  397. match %oretype2 copper nugget
  398. match %oretype2 zinc nugget
  399. match %oretype2 tin nugget
  400. match %oretype2 covellite nugget
  401. match %oretype2 coal nugget
  402. match %oretype2 iron nugget
  403. match %oretype2 lead nugget
  404. match %oretype2 nickel nugget
  405. match %oretype2 oravir nugget
  406. match PTEAR tear
  407. match PLUMP lump
  408. match PPNUGGET platinum nugget
  409. match PSNUGGET silver nugget
  410. match PGNUGGET gold nugget
  411. match PFRAGMENT fragment are
  412. match PFRAGMENT fragment falls
  413. match PSHARD shard
  414. match PDANGER1 Roundtime
  415. matchwait
  416.  
  417. PBLANK:
  418. ECHO ###### YOU GOT KNOCKED OUT HAHAHAHAHAHA WAITING A MINUTE FOR YOU TO WAKE UP ######
  419. pause 60
  420. put stand
  421. pause 1
  422. goto PDANGER2
  423.  
  424. PDEAD:
  425. ECHO ###### SHOULD HAVE PAID BETTER ATTENTION BECUASE NOW YOUR DEAD ######
  426. exit
  427.  
  428. PREPAIR:
  429. ECHO ###### YOUR TOOLS ARE MESSED UP PAUSING 2 MINUTES TO ALLOW FOR REPAIRS ######
  430. pause 120
  431. goto PDANGER2
  432.  
  433. PWOUNDED:
  434. ECHO ###### YOU GOT HURT CHECK YOURSELF ######
  435. pause 60
  436. put stand
  437. pause 1
  438. goto PDANGER2
  439.  
  440. PBURIED:
  441. ECHO ###### YOUR IN A CAVE IN HOPE TO CHADATRU YOU CAN DIG OUT ######
  442. pause 120
  443. goto PDANGER2
  444.  
  445. PDANGER1:
  446. pause 1
  447. put Prospect Danger
  448. match PDANGER1 ...wait
  449. match PMINE Using a discarded stone
  450. match PMINE nothing of concern
  451. match PDANGER1 unable to find any way
  452. matchwait
  453.  
  454. PDANGER2:
  455. pause 1
  456. put Prospect Danger
  457. match PPDANGER2 ...wait
  458. match PPROSPECT Using a discarded stone
  459. match PPROSPECT nothing of concern
  460. match PDANGER2 unable to find any way
  461. matchwait
  462.  
  463. PPROSPECT:
  464. pause 1
  465. put prospect
  466. match PPROSPECT ...wait
  467. match PMINE No miners
  468. match PMINE Miners stand ready
  469. match PPAUSE Roundtime
  470. matchwait
  471.  
  472. PPAUSE:
  473. ECHO ###### WAITING FOR ORE TO RESPAWN ######
  474. pause 120
  475. goto PPROSPECT2
  476.  
  477. PPROSPECT2:
  478. pause 1
  479. put prospect careful
  480. pause 1
  481. put prospect
  482. match PPROSPECT2 ...wait
  483. match PDANGER1 No miners
  484. match PDANGER1 Miners stand ready
  485. match PPAUSE Roundtime
  486. matchwait
  487.  
  488.  
  489. NUGGET2:
  490. pause 1
  491. put push nugget
  492. match STOW hands you a deed
  493. match MPNUGGET lack the money
  494. matchwait
  495.  
  496. MPNUGGET:
  497. pause 1
  498. put take nugget
  499. pause 1
  500. put %stow1 nugget %stow2 %stow3
  501. pause 1
  502. goto PDANGER2
  503.  
  504. PTEAR:
  505. pause 1
  506. put push tear
  507. match STOW hands you a deed
  508. match MPTEAR lack the money
  509. matchwait
  510.  
  511. MPTEAR:
  512. pause 1
  513. put take tear
  514. pause 1
  515. put %stow1 tear %stow2 %stow3
  516. pause 1
  517. goto PDANGER2
  518.  
  519. PSHARD:
  520. pause 1
  521. put push shard
  522. match STOW hands you a deed
  523. match MPSHARD lack the money
  524. matchwait
  525.  
  526. MPSHARD:
  527. pause 1
  528. put take shard
  529. pause 1
  530. put %stow1 shard %stow2 %stow3
  531. pause 1
  532. goto PDANGER2
  533.  
  534. PFRAGMENT:
  535. pause 1
  536. put push fragment
  537. match STOW hands you a deed
  538. match MPFRAGMENT lack the money
  539. matchwait
  540.  
  541. MPFRAGMENT:
  542. pause 1
  543. put take fragment
  544. pause 1
  545. put %stow1 fragment %stow2 %stow3
  546. pause 1
  547. goto PDANGER2
  548.  
  549. PLUMP:
  550. pause 1
  551. put push lump
  552. match STOW hands you a deed
  553. match MPLUMP lack the money
  554. matchwait
  555.  
  556. MPLUMP:
  557. pause 1
  558. put take lump
  559. pause 1
  560. put %stow1 lump %stow2 %stow3
  561. pause 1
  562. goto PDANGER2
  563.  
  564. PPNUGGET:
  565. pause 1
  566. put push platinum nugget
  567. match STOW hands you a deed
  568. match MPPNUGGET lack the money
  569. matchwait
  570.  
  571. MPPNUGGET:
  572. pause 1
  573. put take platinum nugget
  574. pause 1
  575. put %stow1 platinum nugget %stow2 %stow3
  576. pause 1
  577. goto PDANGER2
  578.  
  579. PSNUGGET:
  580. pause 1
  581. put push silver nugget
  582. match STOW hands you a deed
  583. match MPSNUGGET lack the money
  584. matchwait
  585.  
  586. MPSNUGGET:
  587. pause 1
  588. put take silver nugget
  589. pause 1
  590. put %stow1 silver nugget %stow2 %stow3
  591. pause 1
  592. goto PDANGER2
  593.  
  594.  
  595. PGNUGGET:
  596. pause 1
  597. put push gold nugget
  598. match STOW hands you a deed
  599. match MPGNUGGET lack the money
  600. matchwait
  601.  
  602. MPGNUGGET:
  603. pause 1
  604. put take gold nugget
  605. pause 1
  606. put %stow1 gold nugget %stow2 %stow3
  607. pause 1
  608. goto PDANGER2
  609.  
  610. STOW:
  611. put %stow4 deed %stow5 %stow6
  612. match PDANGER2 You put
  613. match PDANGER2 What were
  614. matchwait
  615.  
  616.  
  617.  
  618.  
  619.  
  620. YPMINE:
  621. put hum dirge quick
  622. put mine
  623. match YPMINE ...wait
  624. match MINEPREP actual mining tool
  625. match YPDANGER2 unsalvageable
  626. match YPBLANK mind goes blank
  627. match YPDEAD Every muscle in your chest
  628. match YPREPAIR gouged and bent
  629. match YPWOUNDED clear off your feet
  630. match YPBLANK world goes black
  631. match YPWOUNDED hurling you into the air
  632. match YPDANGER2 usefulness
  633. match YPWOUNDED try to take cover
  634. match YPWOUNDED razor-sharp stone fragments
  635. match YPDANGER2 to mine for some time
  636. match YPBURIED pinned in place
  637. match YPBURIED unable to move
  638. match YPDANGER2 pebble topples
  639. match YPDANGER2 rock topples
  640. match YPDANGER2 stone topples
  641. match YPDANGER2 boulder topples
  642. match %oretype3 copper nugget
  643. match %oretype3 zinc nugget
  644. match %oretype3 tin nugget
  645. match %oretype3 covellite nugget
  646. match %oretype3 coal nugget
  647. match %oretype3 iron nugget
  648. match %oretype3 lead nugget
  649. match %oretype3 nickel nugget
  650. match %oretype3 oravir nugget
  651. match YPTEAR tear
  652. match YPLUMP lump
  653. match YPPNUGGET platinum nugget
  654. match YPSNUGGET silver nugget
  655. match YPGNUGGET gold nugget
  656. match YPFRAGMENT fragment are
  657. match YPFRAGMENT fragment falls
  658. match YPSHARD shard
  659. match YPDANGER1 Roundtime
  660. matchwait
  661.  
  662. YPBLANK:
  663. ECHO ###### YOU GOT KNOCKED OUT HAHAHAHAHAHA WAITING A MINUTE FOR YOU TO WAKE UP ######
  664. pause 60
  665. put stand
  666. pause 1
  667. goto YPDANGER2
  668.  
  669. YPDEAD:
  670. ECHO ###### SHOULD HAVE PAID BETTER ATTENTION BECUASE NOW YOUR DEAD ######
  671. exit
  672.  
  673. YPREPAIR:
  674. ECHO ###### YOUR TOOLS ARE MESSED UP PAUSING 2 MINUTES TO ALLOW FOR REPAIRS ######
  675. pause 120
  676. goto YPDANGER2
  677.  
  678. YPWOUNDED:
  679. ECHO ###### YOU GOT HURT CHECK YOURSELF ######
  680. pause 60
  681. put stand
  682. pause 1
  683. goto YPDANGER2
  684.  
  685. YPBURIED:
  686. ECHO ###### YOUR IN A CAVE IN HOPE TO CHADATRU YOU CAN DIG OUT ######
  687. pause 120
  688. goto YPDANGER2
  689.  
  690. YPDANGER1:
  691. pause 1
  692. put Prospect Danger
  693. match YPDANGER1 ...wait
  694. match YPMINE Using a discarded stone
  695. match YPMINE nothing of concern
  696. match YPDANGER1 unable to find any way
  697. matchwait
  698.  
  699. YPDANGER2:
  700. pause 1
  701. put Prospect Danger
  702. match YPDANGER2 ...wait
  703. match YPPROSPECT Using a discarded stone
  704. match YPPROSPECT nothing of concern
  705. match YPDANGER2 unable to find any way
  706. matchwait
  707.  
  708. YPPROSPECT:
  709. pause 1
  710. put prospect
  711. match YPPROSPECT ...wait
  712. match YPMINE No miners
  713. match YPMINE Miners stand ready
  714. match YPPAUSE Roundtime
  715. matchwait
  716.  
  717. YPPAUSE:
  718. ECHO ###### WAITING FOR ORE TO RESPAWN ######
  719. pause 120
  720. goto YPPROSPECT2
  721.  
  722. YPPROSPECT2:
  723. pause 1
  724. put prospect careful
  725. pause 1
  726. put prospect
  727. match YPPROSPECT2 ...wait
  728. match YPDANGER1 No miners
  729. match YPDANGER1 Miners stand ready
  730. match YPPAUSE Roundtime
  731. matchwait
  732.  
  733.  
  734. NUGGET3:
  735. pause 1
  736. put %toolstow1 %tool %toolstow2 %toolstow3
  737. match NUGGET31 You put
  738. match NUGGET31 What were
  739. match NUGGET31 Stow what
  740. matchwait
  741.  
  742. NUGGET31:
  743. pause 1
  744. put take my deed packet
  745. match NUGGET32 You get
  746. match NUGGET32 You are already
  747. match YPMPNUGGET3 What do
  748. matchwait
  749.  
  750. NUGGET32:
  751. pause 1
  752. put push nugget with my deed packet
  753. match NUGGET3_STOW for your records
  754. match NUGGET31 You must be
  755. matchwait
  756.  
  757. NUGGET3_STOW:
  758. put %stow4 deed %stow5 %stow6
  759. match YPSTOW You put
  760. matchwait
  761.  
  762. YPMPNUGGET3:
  763. pause 1
  764. put take nugget
  765. pause 1
  766. put %stow1 nugget %stow2 %stow3
  767. pause 1
  768. goto YPTOOLGET
  769.  
  770. YPTEAR:
  771. pause 1
  772. put %toolstow1 %tool %toolstow2 %toolstow3
  773. match YPTEAR2 You put
  774. match YPTEAR2 What were
  775. match YPTEAR2 Stow what
  776. matchwait
  777.  
  778. YPTEAR2:
  779. pause 1
  780. put take my deed packet
  781. match YPTEAR3 You get
  782. match YPTEAR3 You are already
  783. match YPMPTEAR What do
  784. matchwait
  785.  
  786. YPTEAR3:
  787. pause 1
  788. put push tear with my deed packet
  789. match TEAR_STOW for your records
  790. match YPTEAR2 You must be
  791. matchwait
  792.  
  793. TEAR_STOW:
  794. put %stow4 deed %stow5 %stow6
  795. match YPSTOW You put
  796. matchwait
  797.  
  798. YPMPTEAR:
  799. pause 1
  800. put take tear
  801. pause 1
  802. put %stow1 tear %stow2 %stow3
  803. pause 1
  804. goto YPTOOLGET
  805.  
  806. YPSHARD:
  807. pause 1
  808. put %toolstow1 %tool %toolstow2 %toolstow3
  809. match YPSHARD2 You put
  810. match YPSHARD2 What were
  811. match YPSHARD2 Stow what
  812. matchwait
  813.  
  814. YPSHARD2:
  815. pause 1
  816. put take my deed packet
  817. match YPSHARD3 You get
  818. match YPSHARD3 You are already
  819. match YPMPSHARD What do
  820. matchwait
  821.  
  822. YPSHARD3:
  823. pause 1
  824. put push shard with my deed packet
  825. match SHARD_STOW for your records
  826. match YPSHARD2 You must be
  827. matchwait
  828.  
  829. SHARD_STOW:
  830. put %stow4 deed %stow5 %stow6
  831. match YPSTOW You put
  832. matchwait
  833.  
  834. YPMPSHARD:
  835. pause 1
  836. put take shard
  837. pause 1
  838. put %stow1 shard %stow2 %stow3
  839. pause 1
  840. goto YPTOOLGET
  841.  
  842. YPFRAGMENT:
  843. pause 1
  844. put %toolstow1 %tool %toolstow2 %toolstow3
  845. match YPFRAGMENT2 You put
  846. match YPFRAGMENT2 What were
  847. match YPFRAGMENT2 Stow what
  848. matchwait
  849.  
  850. YPFRAGMENT2:
  851. pause 1
  852. put take my deed packet
  853. match YPFRAGMENT3 You get
  854. match YPFRAGMENT3 You are already
  855. match YPMPFRAGMENT What do
  856. matchwait
  857.  
  858. YPFRAGMENT3:
  859. pause 1
  860. put push fragment with my deed packet
  861. match FRAGMENT_STOW for your records
  862. match YPFRAGMENT2 You must be
  863. matchwait
  864.  
  865. FRAGMENT_STOW:
  866. put %stow4 deed %stow5 %stow6
  867. match YPSTOW You put
  868. matchwait
  869.  
  870. YPMPFRAGMENT:
  871. pause 1
  872. put take fragment
  873. pause 1
  874. put %stow1 fragment %stow2 %stow3
  875. pause 1
  876. goto YPTOOLGET
  877.  
  878. YPLUMP:
  879. pause 1
  880. put %toolstow1 %tool %toolstow2 %toolstow3
  881. match YPLUMP2 You put
  882. match YPLUMP2 What were
  883. match YPLUMP2 Stow what
  884. matchwait
  885.  
  886. YPLUMP2:
  887. pause 1
  888. put take my deed packet
  889. match YPLUMP3 You get
  890. match YPMPLUMP What do
  891. matchwait
  892.  
  893. YPLUMP3:
  894. pause 1
  895. put push lump with my deed packet
  896. match LUMP_STOW for your records
  897. match YPLUMP2 You must be
  898. matchwait
  899.  
  900. LUMP_STOW:
  901. put %stow4 deed %stow5 %stow6
  902. match YPSTOW You put
  903. matchwait
  904.  
  905. YPMPLUMP:
  906. pause 1
  907. put take lump
  908. pause 1
  909. put %stow1 lump %stow2 %stow3
  910. pause 1
  911. goto YPTOOLGET
  912.  
  913. YPPNUGGET:
  914. pause 1
  915. put %toolstow1 %tool %toolstow2 %toolstow3
  916. match YPPNUGGET2 You put
  917. match YPPNUGGET2 What were
  918. match YPPNUGGET2 Stow what
  919. matchwait
  920.  
  921. YPPNUGGET2:
  922. pause 1
  923. put take my deed packet
  924. match YPPNUGGET3 You get
  925. match YPPNUGGET3 You are already
  926. match YPMPPNUGGET What do
  927. matchwait
  928.  
  929. YPPNUGGET3:
  930. pause 1
  931. put push platinum nugget with my deed packet
  932. match PNUGGET_STOW for your records
  933. match YPPNUGGET2 You must be
  934. matchwait
  935.  
  936. PNUGGET_STOW:
  937. put %stow4 deed %stow5 %stow6
  938. match YPSTOW You put
  939. matchwait
  940.  
  941. YPMPPNUGGET:
  942. pause 1
  943. put take platinum nugget
  944. pause 1
  945. put %stow1 platinum nugget %stow2 %stow3
  946. pause 1
  947. goto YPTOOLGET
  948.  
  949. YPSNUGGET:
  950. pause 1
  951. put %toolstow1 %tool %toolstow2 %toolstow3
  952. match YPSNUGGET2 You put
  953. match YPSNUGGET2 What were
  954. match YPSNUGGET2 Stow what
  955. matchwait
  956.  
  957. YPSNUGGET2:
  958. pause 1
  959. put take my deed packet
  960. match YPSNUGGET3 You get
  961. match YPSNUGGET3 You are already
  962. match YPMPSNUGGET What do
  963. matchwait
  964.  
  965. YPSNUGGET3:
  966. pause 1
  967. put push silver nugget with my deed packet
  968. match SNUGGET_STOW for your records
  969. match YPSNUGGET2 You must be
  970. matchwait
  971.  
  972. SNUGGET_STOW:
  973. put %stow4 deed %stow5 %stow6
  974. match YPSTOW You put
  975. matchwait
  976.  
  977. YPMPSNUGGET:
  978. pause 1
  979. put take silver nugget
  980. pause 1
  981. put %stow1 silver nugget %stow2 %stow3
  982. pause 1
  983. goto YPTOOLGET
  984.  
  985. YPGNUGGET:
  986. pause 1
  987. put %toolstow1 %tool %toolstow2 %toolstow3
  988. match YPGNUGGET2 You put
  989. match YPGNUGGET2 What were
  990. match YPGNUGGET2 Stow what
  991. matchwait
  992.  
  993. YPGNUGGET2:
  994. pause 1
  995. put take my deed packet
  996. match YPGNUGGET3 You get
  997. match YPGNUGGET3 You are already
  998. match YPMPGNUGGET What do
  999. matchwait
  1000.  
  1001. YPGNUGGET3:
  1002. pause 1
  1003. put push gold nugget with my deed packet
  1004. match GNUGGET_STOW for your records
  1005. match YPGNUGGET2 You must be
  1006. matchwait
  1007.  
  1008. GNUGGET_STOW:
  1009. put %stow4 deed %stow5 %stow6
  1010. match YPSTOW You put
  1011. matchwait
  1012.  
  1013. YPMPGNUGGET:
  1014. pause 1
  1015. put take gold nugget
  1016. pause 1
  1017. put %stow1 gold nugget %stow2 %stow3
  1018. pause 1
  1019. goto YPTOOLGET
  1020.  
  1021. YPSTOW:
  1022. pause 1
  1023. put %packetstow1 deed packet %packetstow2 %packetstow3
  1024. match YPTOOLGET You put
  1025. match YPTOOLGET What were
  1026. match YPTOOLGET Stow what
  1027. matchwait
  1028.  
  1029.  
  1030. YPTOOLGET:
  1031. pause 1
  1032. put get my %tool
  1033. match YPDANGER2 You get
  1034. match YPDANGER2 You already
  1035. match TOOL_ERROR What do
  1036. matchwait
  1037.  
  1038. PUSH_ERROR:
  1039. ECHO ###### THERE IS SOMETHING WRONG WITH YOU PUSHING ORE, ENDING THE SCRIPT SO YOU CAN FIGURE IT OUT ######
  1040. exit
  1041.  
  1042. TOOL_ERROR:
  1043. ECHO ###### FIND YOUR TOOL TO CONTINUE ######
  1044. match YPDANGER2 You get
  1045. match YPDANGER2 shovel in your
  1046. match YPDANGER2 pickaxe in your
  1047. matchwait
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement