Advertisement
Guest User

Untitled

a guest
Dec 12th, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.84 KB | None | 0 0
  1. #ingot_making Smelt or refine
  2.  
  3. if_1 goto %1
  4.  
  5. ECHO ******************************
  6. ECHO **
  7. ECHO ** Before you start this script you should have all metals in the crucible,
  8. ECHO ** and your hands empty
  9. ECHO **
  10. ECHO ** To use type .ingot_making smelt <toolcontainer> <Ingotcontainer>
  11. ECHO ** or .ingot_making refine <toolcontainer> <Ingotcontainer>
  12. ECHO **
  13. ECHO ******************************
  14. exit
  15.  
  16. Smelt:
  17. put glance
  18. match Smelt1 You glance down at your empty hands
  19. match ingotend You glance down to see
  20. matchwait
  21.  
  22. Smelt1:
  23. pause
  24. put get rod from my %2
  25.  
  26. Stir:
  27. pause 1
  28. put stir cruc with my rod
  29. match Stir ...wait
  30. match Turn accumulating along the crucible's sides.
  31. match Bellows unable to consume its fuel.
  32. match Bellows As you finish working the fire dims and produces less heat from the stifled coals
  33. match Done1 You can only mix a crucible if it has something inside of it.
  34. match Done1 You should probably remove the non-metal items
  35. match Done At last the metal appears to be thoroughly mixed and you pour it into an ingot mold
  36. match Shovel fire dies down and needs more fuel.
  37. match Stir Roundtime
  38. matchwait
  39.  
  40. Turn:
  41. pause 1
  42. put turn crucible
  43. match Turn ...wait
  44. match Stir Roundtime
  45. matchwait
  46.  
  47. Bellows:
  48. pause
  49. save bellows
  50. pause 2
  51. put get bellows from my %2
  52. pause
  53. put push bellows
  54. match Stow Roundtime
  55. matchwait
  56.  
  57. Shovel:
  58. pause
  59. save shovel
  60. pause 2
  61. put get shovel from my %2
  62. pause
  63. put push fuel with my shovel
  64. match Stow Roundtime
  65. matchwait
  66.  
  67. Stow:
  68. pause 1
  69. put put my %s in my %2
  70. goto Stir
  71.  
  72. Done:
  73. pause
  74. put put my rod in my %2
  75. pause
  76. put put my ingot in my %3
  77. pause
  78. echo **
  79. echo ** You have completed the ingot
  80. echo **
  81. exit
  82.  
  83. Done1:
  84. pause
  85. put put my rod in my %2
  86. pause
  87. echo **
  88. echo ** Either you have non-metal items or nothing in the crucible
  89. echo **
  90. exit
  91.  
  92. refine:
  93. put glance
  94. match Refine1 You glance down at your empty hands
  95. match ingotend You glance down to see
  96. matchwait
  97.  
  98. refine1:
  99. pause
  100. put get rod from my %2
  101. pause
  102. put get flux from my %2
  103. waitfor You get
  104. put pour my flux in cruci
  105. match Stir2 Roundtime
  106. match Turn2 accumulating along the crucible's sides.
  107. match Bellows2 unable to consume its fuel.
  108. match Shovel2 fire dies down and needs more fuel.
  109. matchwait
  110.  
  111. Stir2:
  112. pause 1
  113. put put my flux in my %2
  114. goto Stir
  115.  
  116. Turn2:
  117. pause 1
  118. put put my flux in my %2
  119. goto Turn
  120.  
  121. Bellows2:
  122. pause 1
  123. put put my flux in my %2
  124. goto Bellows
  125.  
  126. Shovel2:
  127. pause 1
  128. put put my flux in my %2
  129. goto Shovel
  130.  
  131. INGOTEND:
  132. pause 2
  133. echo ********************************************************************
  134. echo * YOU HAVE SOMETHING IN HAND! PUT IT AWAY AND RESTART THE SCRIPT! *
  135. echo ********************************************************************
  136. exit
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement