Advertisement
Dartellum

Create-remedies-kit

Dec 7th, 2019
234
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.60 KB | None | 0 0
  1.  
  2.  
  3. # ;remedy remedies 2 "blister cream" "red flower" nemoih bar mortar cream
  4. # ;remedy remedies 2 "blister cream" nemoih "not used" bar mortar cream - for when only herb is required
  5.  
  6. custom_require.call(%w[common ])
  7.  
  8. @settings = get_settings
  9. @bag = @settings.crafting_container
  10. @bag_items = @settings.crafting_items_in_container
  11. @belt = @settings.alchemy_belt
  12.  
  13. DRC.wait_for_script_to_complete('go2', ['8862'])
  14. 2.times do
  15. fput('order 1')
  16. fput('order 1')
  17. fput("get water from #{@bag}")
  18. fput('combine my water')
  19. fput('stow water')
  20. end
  21.  
  22. fput('order 2')
  23. fput('order 2')
  24. fput("get alcohol from my #{@bag}")
  25. fput('combine my alcohol')
  26. fput('stow alcohol')
  27.  
  28. # Limb ungent - external
  29. fput('order 5')
  30. fput('order 5')
  31. fput('stow jadice')
  32. DRC.wait_for_script_to_complete('remedy', ['remedies', '3', 'some limb ungent', 'jadice', 'none', 'ingot', 'mortar', 'ungent'])
  33. fput('get stamp')
  34. fput('mark my ungent with my stamp')
  35. fput('stow stamp')
  36. fput('stow ungent')
  37.  
  38. # Chest ungent - external
  39. fput('order 4')
  40. fput('order 4')
  41. fput('stow plovik')
  42. DRC.wait_for_script_to_complete('remedy', ['remedies', '3', 'some chest ungent', 'plovik', 'none', 'ingot', 'mortar', 'ungent'])
  43. fput('get stamp')
  44. fput('mark my ungent with my stamp')
  45. fput('stow stamp')
  46. fput('stow ungent')
  47.  
  48. # Limb tonic - internal - Cannot purchase at Alchemy shop
  49. #fput('stow yelith')
  50. #DRC.wait_for_script_to_complete('remedy', ['remedies', '4', 'some limb tonic', 'yelith', 'none', 'ingot', 'bowl', 'tonic'])
  51. #fput('get stamp')
  52. #fput('mark my tonic with my stamp')
  53. #fput('stow stamp')
  54. #fput('stow tonic')
  55.  
  56. # Chest tonic - internal
  57. 7.times do
  58. fput('order 14')
  59. fput('order 14')
  60.  
  61. # Crush ithor root
  62. fput("untie my mortar from my #{@belt}")
  63. fput('put my root in my mortar')
  64. fput("untie my pestle from my #{@belt}")
  65.  
  66. result = nil
  67. until ['You complete crushing the contents of the mortar into some crushed ithor.'].include? result
  68. result = DRC.bput('crush my root with my pestle', 'You intently', 'Bib by bit', 'Roundtime', 'Back and forth', 'Utilizing', 'You complete crushing the contents of the mortar into some crushed ithor.')
  69. waitrt?
  70. end
  71.  
  72. fput("tie my pestle to my #{@belt}")
  73. fput('get ithor from my mortar')
  74. fput("tie my mortar to my #{@belt}")
  75. fput("get ithor from #{@bag}")
  76. fput('combine my ithor')
  77. fput('stow ithor')
  78. end
  79.  
  80. DRC.wait_for_script_to_complete('remedy', ['remedies', '4', 'some chest tonic', 'ithor', 'none', 'ingot', 'bowl', 'tonic'])
  81. fput('get stamp')
  82. fput('mark my tonic with my stamp')
  83. fput('stow stamp')
  84. fput('stow tonic')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement