Guest User

Untitled

a guest
Jul 29th, 2016
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.24 KB | None | 0 0
  1. if skill 'alchemy' < 60 and not @findobject 'TR'
  2. headmsg 'Select Total Refresh Keg'
  3. promptalias 'TR'
  4. endif
  5. if skill 'alchemy' < 70 and not @findobject 'GA'
  6. headmsg 'Select Greater Agility Keg'
  7. promptalias 'GA'
  8. endif
  9. if skill 'alchemy' < 80 and not @findobject 'GS'
  10. headmsg 'Select Greater Strength Keg'
  11. promptalias 'GS'
  12. endif
  13. if skill 'alchemy' < 90 and not @findobject 'GH'
  14. headmsg 'Select Greater Heal Keg'
  15. promptalias 'GH'
  16. endif
  17. if skill 'alchemy' < 100 and not @findobject 'GC'
  18. headmsg 'Select Greater Cure Keg'
  19. promptalias 'GC'
  20. endif
  21. if skill 'alchemy' < 30
  22. headmsg 'Buy more skill!'
  23. stop
  24. elseif skill 'alchemy' < 60
  25. if usetype 0xe9b 0x0 'backpack'
  26. waitforgump 0x38920abd 15000
  27. replygump 0x38920abd 1
  28. waitforgump 0x38920abd 15000
  29. replygump 0x38920abd 9
  30. waitforgump 0x38920abd 2000
  31. endif
  32. if @findtype 0xf0b 0x0 'backpack'
  33. moveitem 'found' 'TR'
  34. pause 600
  35. endif
  36. elseif skill 'alchemy' < 70
  37. if usetype 0xe9b 0x0 'backpack'
  38. waitforgump 0x38920abd 15000
  39. replygump 0x38920abd 8
  40. waitforgump 0x38920abd 15000
  41. replygump 0x38920abd 9
  42. waitforgump 0x38920abd 2000
  43. endif
  44. if @findtype 0xf08 0x0 'backpack'
  45. moveitem 'found' 'GA'
  46. pause 600
  47. endif
  48. elseif skill 'alchemy' < 80
  49. if usetype 0xe9b 0x0 'backpack'
  50. waitforgump 0x38920abd 15000
  51. replygump 0x38920abd 29
  52. waitforgump 0x38920abd 15000
  53. replygump 0x38920abd 9
  54. waitforgump 0x38920abd 2000
  55. endif
  56. if @findtype 0xf09 0x0 'backpack'
  57. moveitem 'found' 'GS'
  58. pause 600
  59. endif
  60. elseif skill 'alchemy' < 90
  61. if usetype 0xe9b 0x0 'backpack'
  62. waitforgump 0x38920abd 15000
  63. replygump 0x38920abd 22
  64. waitforgump 0x38920abd 15000
  65. replygump 0x38920abd 16
  66. waitforgump 0x38920abd 2000
  67. endif
  68. if @findtype 0xf0c 0x0 'backpack'
  69. moveitem 'found' 'GH'
  70. pause 600
  71. endif
  72. elseif skill 'alchemy' < 100
  73. if usetype 0xe9b 0x0 'backpack'
  74. waitforgump 0x38920abd 15000
  75. replygump 0x38920abd 43
  76. waitforgump 0x38920abd 15000
  77. replygump 0x38920abd 16
  78. waitforgump 0x38920abd 2000
  79. endif
  80. if @findtype 0xf07 0x0 'backpack'
  81. moveitem 'found' 'GC'
  82. pause 600
  83. endif
  84. else
  85. headmsg 'Alchemy complete!'
  86. stop
  87. endif
Add Comment
Please, Sign In to add comment