Advertisement
matsamilla

Untitled

Nov 5th, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.11 KB | None | 0 0
  1. @createlist 'rodlist'
  2. if not @findobject 'Junk'
  3. headmsg 'Select where you wish to dump junk poles'
  4. promptalias 'Junk'
  5. endif
  6. if not @findalias 'Bent'
  7. headmsg 'Select where you wish to drop Bent Poles'
  8. if mounted 'self'
  9. useobject 'self'
  10. pause 600
  11. endif
  12. if not mounted
  13. useobject 'Bent'
  14. pause 600
  15. endif
  16. promptalias 'Bent'
  17. endif
  18. //=== crafting tinker tools ===
  19. while @counttype 0x1eb8 0 'backpack' < 2
  20. usetype 0x1eb8
  21. waitforgump 0x38920abd 2000
  22. @replygump 0x38920abd 8
  23. waitforgump 0x38920abd 2000
  24. @replygump 0x38920abd 23
  25. waitforgump 0x38920abd 2000
  26. endwhile
  27. //crafting Saws
  28. while @counttype 0x1034 0 'backpack' < 2
  29. usetype 0x1eb8
  30. waitforgump 0x38920abd 15000
  31. replygump 0x38920abd 8
  32. waitforgump 0x38920abd 15000
  33. replygump 0x38920abd 51
  34. waitforgump 0x38920abd 15000
  35. usetype 0x1034
  36. endwhile
  37. //Find Carpentry Tools
  38. if not @findobject 'Carp Tool'
  39. if @findtype '0x10e5' 'any' 'backpack' 'any' '3' or @findtype '0x1034' 'any' 'backpack' 'any' '3'
  40. setalias 'Carp Tool' 'found'
  41. pause 600
  42. else
  43. headmsg 'No tool found'
  44. endif
  45. endif
  46. //Craft Pole
  47. if not mounted
  48. useobject 'Bent'
  49. pause 600
  50. endif
  51. @useobject 'Carp Tool'
  52. waitforgump 0x38920abd 15000
  53. replygump 0x38920abd 22
  54. waitforgump 0x38920abd 15000
  55. replygump 0x38920abd 37
  56. waitforgump 0x38920abd 15000
  57. pause 600
  58. while @findtype '0xdbf' 'any' 'backpack' 'any' '1'
  59. clickobject 'found'
  60. pause 800
  61. if @injournal 'fishing pole' 'system'
  62. //headmsg 'Junk Pole'
  63. moveitem 'found' 'Junk'
  64. pause 800
  65. @ignoreobject 'found'
  66. @unsetalias 'found'
  67. @clearjournal
  68. elseif @injournal 'a bent rod' 'system'
  69. headmsg 'Bent Rod!!!!'
  70. sysmsg 'Bent Rod' 69
  71. // playsound 'cheer.wav'
  72. pushlist 'rodlist' 1
  73. if mounted
  74. useobject 'self'
  75. pause 1000
  76. endif
  77. moveitem 'found' 'Bent'
  78. pause 1000
  79. if not mounted
  80. useobject 'Bent'
  81. pause 1000
  82. endif
  83. @ignoreobject 'found'
  84. @unsetalias 'found'
  85. @clearjournal
  86. endif
  87. endwhile
  88. if @counttype 0x1bd7 0 'backpack' < 5
  89. headmsg 'Out of Mats'
  90. stop
  91. endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement