kakel_anders

UOS - Tinkeringtrainer

Jan 18th, 2022 (edited)
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.60 KB | None | 0 0
  1. // tinkeringmacro by kakel_anders (Player - UOG:Demise)
  2. if not findalias 'resourcebag'
  3. promptalias 'resourcebag'
  4. endif
  5. if not findalias 'tinktrashbarrel'
  6. promptalias 'tinktrashbarrel'
  7. endif
  8. //
  9. //// Restock ingots
  10. if counttype 0x1bf2 'any' 'backpack' < 50
  11. pause 500
  12. useobject 'resourcebag'
  13. pause 500
  14. movetype 0x1bf2 'resourcebag' 'backpack' (0 0 0) 0 500
  15. endif
  16. //
  17. //// Keep tinkerkits comming!
  18. if counttype 0x1eb8 'any' 'backpack' < 3
  19. for 10
  20. usetype '0x1eb8'
  21. pause 1000
  22. replygump 0x38920abd 8
  23. pause 500
  24. replygump 0x38920abd 23
  25. endfor
  26. endif
  27. //
  28. //// Crafting
  29. if skill 'tinkering' < 41
  30. //30 - 40 Hammers
  31. usetype '0x1eb8'
  32. pause 1000
  33. replygump 0x38920abd 8
  34. pause 500
  35. replygump 0x38920abd 79
  36. pause 1000
  37. movetype 0x102a 'backpack' 'tinktrashbarrel'
  38. elseif skill 'tinkering' < 46
  39. //40 - 45 Shovels
  40. usetype '0x1eb8'
  41. pause 1000
  42. replygump 0x38920abd 8
  43. pause 500
  44. replygump 0x38920abd 72
  45. pause 1000
  46. movetype 0xf39 'backpack' 'tinktrashbarrel'
  47. elseif skill 'tinkering' < 93
  48. //45 - 92 Lockpicks
  49. usetype '0x1eb8'
  50. pause 1000
  51. replygump 0x38920abd 8
  52. pause 500
  53. replygump 0x38920abd 121
  54. pause 1000
  55. //Change destination if you don't want to keep the lockpicks.
  56. movetype 0x14fc 'backpack' 'resourcebag'
  57. elseif skill 'carpentry' < 101
  58. //93 - 100 Spyglass
  59. usetype '0x1eb8'
  60. pause 1000
  61. replygump 0x38920abd 29
  62. pause 500
  63. replygump 0x38920abd 37
  64. pause 1000
  65. movetype 0x14f5 'backpack' 'tinktrashbarrel'
  66. endif
  67. if skill 'tinkering' >= 100
  68. sysmsg 'Success!' 'Goodluck on your adventures!!' 34
  69. pause 1000
  70. sysmsg ' Best regards- kakel_anders' 30
  71. stop
  72. endif
  73.  
Add Comment
Please, Sign In to add comment