Advertisement
Guest User

Untitled

a guest
Sep 18th, 2019
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.80 KB | None | 0 0
  1. // you need enough tinkering to craft fletching kit
  2. // carry something like 150 ingots to craft the kits
  3. // you need minimum 30 fletching to start
  4. // it will craft bow, crossbow and heavy crossbow
  5. // set your resource container
  6. if skill 'bowcraft' == 100
  7. stop
  8. endif
  9. if not @listexists 'junk'
  10. createlist 'junk'
  11. pushlist 'junk' 0x13b2
  12. pushlist 'junk' 0xf50
  13. pushlist 'junk' 0x13fd
  14. endif
  15. if not @findobject 'trash'
  16. headmsg 'Select your trash barrel'
  17. promptalias 'trash'
  18. endif
  19. if not @findobject 'restock'
  20. headmsg 'Select the container with your boards'
  21. promptalias 'restock'
  22. useobject 'restock'
  23. pause 1200
  24. endif
  25. if @counttype 0x1bd7 0x0 'backpack' < 20
  26. movetype 0x1bd7 'restock' 'backpack' 0 0 0 0x0 150
  27. pause 1200
  28. endif
  29. if not @findtype '0x1022' '0' 'backpack'
  30. while @counttype '0x1022' '0' 'backpack' < '5'
  31. usetype '0x1eb8' 'any' 'backpack'
  32. pause 400
  33. waitforgump 0x38920abd 15000
  34. replygump 0x38920abd 142
  35. waitforgump 0x38920abd 15000
  36. pause 400
  37. endwhile
  38. endif
  39. if skill 'bowcraft' < 30
  40. headmsg 'Buy More Skill'
  41. endif
  42. if skill 'bowcraft' < 60
  43. usetype '0x1022' 'any' 'backpack' '2'
  44. pause 400
  45. replygump 0x38920abd 15
  46. waitforgump 0x38920abd 15000
  47. replygump 0x38920abd 2
  48. waitforgump 0x38920abd 15000
  49. elseif skill 'bowcraft' < 80
  50. usetype '0x1022' 'any' 'backpack' '2'
  51. pause 400
  52. replygump 0x38920abd 15
  53. waitforgump 0x38920abd 15000
  54. replygump 0x38920abd 9
  55. waitforgump 0x38920abd 15000
  56. elseif skill 'bowcraft' < 100
  57. usetype '0x1022' 'any' 'backpack' '2'
  58. pause 400
  59. replygump 0x38920abd 15
  60. waitforgump 0x38920abd 15000
  61. replygump 0x38920abd 16
  62. waitforgump 0x38920abd 15000
  63. endif
  64. if contents 'backpack' > 50
  65. for 0 to junk
  66. while @movetype junk[] 'backpack' 'trash'
  67. endwhile
  68. endfor
  69. endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement