Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2017
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.19 KB | None | 0 0
  1. if not @findobject 'Junk'
  2. headmsg 'Select where you wish to dump junk poles'
  3. promptalias 'Junk'
  4. endif
  5. if not @findalias 'Bent'
  6. headmsg 'Select where you wish to drop Bent Poles'
  7. if mounted 'self'
  8. useobject 'self'
  9. pause 600
  10. endif
  11. promptalias 'Bent'
  12. endif
  13. if not @findobject 'Carp Tool'
  14. if @findtype '0x10e5' 'any' 'backpack' 'any' '3' or @findtype '0x1034' 'any' 'backpack' 'any' '3'
  15. setalias 'Carp Tool' 'found'
  16. pause 600
  17. else
  18. headmsg 'No tool found'
  19. endif
  20. endif
  21. //Craft Pole
  22. @useobject 'Carp Tool'
  23. waitforgump 0x38920abd 15000
  24. replygump 0x38920abd 22
  25. waitforgump 0x38920abd 15000
  26. replygump 0x38920abd 37
  27. waitforgump 0x38920abd 15000
  28. pause 600
  29. while @findtype '0xdbf' 'any' 'backpack' 'any' '1'
  30. clickobject 'found'
  31. pause 800
  32. if @injournal 'fishing pole' 'system'
  33. headmsg 'Junk Pole'
  34. moveitem 'found' 'Junk'
  35. pause 800
  36. @ignoreobject 'found'
  37. @unsetalias 'found'
  38. @clearjournal
  39. elseif @injournal 'a bent rod' 'system'
  40. headmsg 'Bent Rod!!!!'
  41. sysmsg 'Bent Rod' 69
  42. useobject 'self'
  43. pause 800
  44. moveitem 'found' 'Bent'
  45. pause 800
  46. useobject 'mount'
  47. pause 600
  48. @ignoreobject 'found'
  49. @unsetalias 'found'
  50. @clearjournal
  51. endif
  52. endwhile
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement