Advertisement
Rainja182

Tailoring

Mar 12th, 2016
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.42 KB | None | 0 0
  1. #Tailoring
  2.  
  3. echo *******************************************************************************
  4. echo Welcome to Favre's Tailoring Repeat Trainer!
  5. echo *******************************************************************************
  6. echo % 1 is item you want to make - EX: gloves
  7. echo % 2 is the type of cloth you want to use - EX: burlap.cloth
  8. echo % 3 is any supplemental items - EX: small.padding
  9. echo % 4 is the amount of seconds you'd like to wait after finishing the item
  10. echo % 5 is the amount of seconds you'd like to wait before making the next item
  11. echo EXAMPLE: .Tailoring gloves burlap.cloth small.padding 30 120
  12. echo *******************************************************************************
  13.  
  14.  
  15.  
  16. Prep:
  17. setvariable item %2
  18. setvariable assembly %3
  19. pause .5
  20. put get my tailor book
  21. put study my tailor book
  22. put study my tailor book
  23. pause
  24. pause 2
  25. put stow my tail book
  26. put get %item
  27. wait
  28. put get my scissors
  29. wait
  30. goto PerformCut
  31.  
  32. Push:
  33. put tend my chest
  34. put push my %item with my s needle
  35. echo %item
  36. match Push ...wait
  37. match Pushswap Roundtime:
  38. match Measure The fabric's dimensions appear to have shifted and could benefit from some remeasuring.
  39. match SlickStone A deep crease develops along the fabric, bunching it together awkwardly.
  40. match Pins could use some pins to align them.
  41. match SlickStone The fabric develops wrinkles from all the handling and could use a quick ironing.
  42. match Pins The fabric keeps folding back and could use some pins to keep it straight.
  43. match Awl needs holes punched in it.
  44. match Assemble ready to be reinforced
  45. match Assemble [Ingredients can be added by using ASSEMBLE Ingredient1 WITH Ingredient2]
  46. match THREAD The needles need to have thread
  47. match End You cannot figure out how to do that. Perhaps finding suitable ingredients and studying some instructions would help.
  48. match End I don't think pushing that would have an effect
  49. match End You realize that cannot be repaired, and stop
  50. match End Applying the final touches, you complete working
  51. match End is not damaged enough to warrant repair
  52. matchwait
  53.  
  54. Pushswap:
  55. setvariable item %1
  56. goto Push
  57.  
  58. Cut:
  59. put glance
  60. match CutTool You glance down
  61. match Cut ...wait
  62. matchwait
  63.  
  64. CutTool:
  65. put stow my yardstick
  66. wait
  67. put get my scissors
  68. wait
  69.  
  70. PerformCut:
  71. put Cut my %item with my scissors
  72. setvariable tool my scissors
  73. wait
  74. pause
  75. put stow my scissors
  76. put get %item
  77. put stow my cloth
  78. put stow my leather
  79. pause 1
  80. goto CheckNeedle
  81.  
  82. CheckNeedle:
  83. put glance
  84. match CheckNeedle ...wait
  85. match GetNeedle You glance down to see
  86. matchwait
  87.  
  88. GetNeedle:
  89. put stow my %tool
  90. put stow pins
  91. put stow slickstone
  92. pause .1
  93. put stow %material
  94. wait
  95. put get my s need
  96. wait
  97. goto Pushswap
  98.  
  99. Measure:
  100. put glance
  101. match MeasureTool You glance down to see
  102. match Measure ...wait
  103. matchwait
  104.  
  105. MeasureTool:
  106. put tend my tail
  107. put stow my s need
  108. wait
  109. put get my yardstick
  110. wait
  111. PerformMeasure:
  112. put Measure my %item with my yardstick
  113. setvariable tool my yardstick
  114. wait
  115. pause
  116. goto Cut
  117.  
  118. SlickStone:
  119. put glance
  120. match SlickTool You glance down to see
  121. match SlickStone ...wait
  122. matchwait
  123.  
  124. SlickTool:
  125. put stow my s need
  126. wait
  127. put get my slickstone
  128. wait
  129. PerformRub:
  130. put Rub my %item with my slickstone
  131. setvariable tool my slickstone
  132. wait
  133. pause
  134. goto CheckNeedle
  135.  
  136. Pins:
  137. put glance
  138. match PinTool You glance down to see
  139. match Pins ...wait
  140. matchwait
  141.  
  142. PinTool:
  143. put stow my s need
  144. wait
  145. put get my pins
  146. wait
  147. PerformPins:
  148. put Poke my %item with my pin
  149. setvariable tool my pins
  150. wait
  151. pause
  152. goto CheckNeedle
  153.  
  154. Awl:
  155. put glance
  156. match AwlTool You glance down to see
  157. match Awl ...wait
  158. matchwait
  159.  
  160. AwlTool:
  161. put stow my s need
  162. wait
  163. put get my awl
  164. wait
  165. PerformAwl:
  166. put Poke my %item with my awl
  167. setvariable tool my awl
  168. wait
  169. pause
  170. goto CheckNeedle
  171.  
  172. Assemble:
  173. put glance
  174. match AssembleTool You glance down to see
  175. match Assemble ...wait
  176. matchwait
  177.  
  178. AssembleTool:
  179. put stow my s need
  180. wait
  181. put get my %assembly
  182. wait
  183. PerformAssembly:
  184. put Assemble my %item with my %assembly
  185. wait
  186. pause
  187. goto CheckNeedle
  188.  
  189. THREAD:
  190. put stow %1
  191. put get my thread
  192. pause 1
  193. put put my thread on my s need
  194. put get my %1
  195. goto Push
  196.  
  197. End:
  198. put stow my s need
  199. pause 1
  200. goto Pause
  201.  
  202. Pause:
  203. pause %4
  204. put get my scis
  205. put mark my %1 at 1
  206. put cut my %1 with my scis
  207. pause 1
  208. put stow my scis
  209. put get cloth
  210. put combine
  211. put stow my cloth
  212. pause 1
  213. put get my tail book
  214. put app focus my tail book
  215. pause
  216. pause 1
  217. put stow my tail book
  218. pause %5
  219. goto Prep
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement