Advertisement
moctga

Untitled

Nov 24th, 2019
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.56 KB | None | 0 0
  1. #debug 10
  2.  
  3. var storage haversack
  4. var buy large chest
  5. var container chest
  6. var trash basket
  7.  
  8. Start:
  9.  
  10. Buy.Chest:
  11. put buy %buy
  12. waitforre ^You decide to purchase the chest
  13.  
  14. Open.Chest:
  15. put open my %container
  16. waitforre ^The large chest feels momentarily heavier as you open it.
  17.  
  18. Coins:
  19. put get coin
  20. matchre Coins ^You pick up
  21. matchre Gems ^What were you|^I could not find
  22. matchwait
  23.  
  24. Gems:
  25. put fill my pouch with my %container
  26. waitforre ^You open your
  27.  
  28. Materials:
  29. put inv my %container
  30. matchre Nugget nugget
  31. matchre Lump lump
  32. matchre Fragment fragment
  33. matchre Shard shard
  34. matchre Tear tear
  35. matchre Bar bar
  36. matchre Drop.That.Sack ^There's nothing inside
  37. matchre Store.That.Sack INVENTORY HELP
  38. matchwait
  39.  
  40. ##################
  41. ##### Metals #####
  42. ##################
  43.  
  44. Shard:
  45. var get shard
  46. goto Get
  47. Lump:
  48. var get lump
  49. goto Get
  50. Fragment:
  51. var get fragment
  52. goto Get
  53. Nugget:
  54. var get nugget
  55. goto Get
  56. Bar:
  57. var get bar
  58. goto Get
  59. Tear:
  60. var get tear
  61. goto Get
  62.  
  63. ##########################
  64.  
  65.  
  66. Get:
  67. put get my %get from my %container
  68. pause .5
  69. if ("$lefthand" != "Empty") then put #echo >Log Green *Earned a $lefthand
  70. pause .1
  71. put put my %get in %storage
  72. pause .5
  73. goto Materials
  74.  
  75. Store.That.Sack:
  76. put put sack in my %storage
  77. pause .5
  78. put stow my %container
  79. pause .5
  80. goto Start
  81.  
  82. Drop.That.Sack:
  83. pause .5
  84. put put my %container in %trash
  85. pause .5
  86. if ("$lefthand" != "Empty") then put stow left
  87. pause .2
  88. if ("$righthand" != "Empty") then put stow
  89. goto Start
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement