Advertisement
Maespark

Training - Inscription

Jul 4th, 2019
360
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.27 KB | None | 0 0
  1. ////******************************************************////
  2. //Title: Trainer - Inscription
  3. //Author: Maelune
  4. //Purpose: Automatically trains you to 100 Inscription Skill
  5. //
  6. //Requirements: Mage Reagents in bulk
  7. // Scribe's Pens in bulk
  8. // Blank Scrolls in bulk
  9. //
  10. //Instructions: Copy this entire text into a UOSteam Macro! Do NOT loop
  11. // this macro! It will end on its own when you've reached
  12. // 100 inscription!
  13. //
  14. //Notes: There is no way to make UOSteam yell at you if you're out
  15. // of reagents. You will need to make sure you're set on them
  16. // before hand.
  17. // The spells being crafted are:
  18. // Recall
  19. // Paralyze
  20. // Mark
  21. // Gate Travel
  22. // Resurrection
  23. //
  24. // I suggest leaving Recall and Gate Travel, as they are used
  25. // to create runebooks later. The other spells are up to you.
  26. ////******************************************************////
  27. while skill 'Inscription' < 100
  28. while skill 'Inscription' < 55
  29. if not findtype 0xfbf
  30. headmsg 'Get more scribe tools!'
  31. endif
  32. if mana < 50
  33. useskill 'Meditation'
  34. while mana < maxmana
  35. endwhile
  36. endif
  37. usetype 0xfbf 'any' 'backpack'
  38. waitforgump 0x38920abd 15000
  39. replygump 0x38920abd 22
  40. waitforgump 0x38920abd 15000
  41. replygump 0x38920abd 51
  42. waitforgump 0x38920abd 15000
  43. replygump 0x38920abd 0
  44. endwhile
  45. while skill 'Inscription' < 65
  46. if not findtype 0xfbf
  47. headmsg 'Get more scribe tools!'
  48. endif
  49. if mana < 50
  50. useskill 'Meditation'
  51. while mana < maxmana
  52. endwhile
  53. endif
  54. usetype 0xfbf 'any' 'backpack'
  55. waitforgump 0x38920abd 15000
  56. replygump 0x38920abd 29
  57. waitforgump 0x38920abd 15000
  58. replygump 0x38920abd 37
  59. waitforgump 0x38920abd 15000
  60. replygump 0x38920abd 0
  61. endwhile
  62. while skill 'Inscription' < 85
  63. if not findtype 0xfbf
  64. headmsg 'Get more scribe tools!'
  65. endif
  66. if mana < 50
  67. useskill 'Meditation'
  68. while mana < maxmana
  69. endwhile
  70. endif
  71. usetype 0xfbf 'any' 'backpack'
  72. waitforgump 0x38920abd 15000
  73. replygump 0x38920abd 36
  74. waitforgump 0x38920abd 15000
  75. replygump 0x38920abd 30
  76. waitforgump 0x38920abd 15000
  77. replygump 0x38920abd 0
  78. endwhile
  79. while skill 'Inscription' < 95
  80. if not findtype 0xfbf
  81. headmsg 'Get more scribe tools!'
  82. endif
  83. if mana < 50
  84. useskill 'Meditation'
  85. while mana < maxmana
  86. endwhile
  87. endif
  88. usetype 0xfbf 'any' 'backpack'
  89. waitforgump 0x38920abd 15000
  90. replygump 0x38920abd 43
  91. waitforgump 0x38920abd 15000
  92. replygump 0x38920abd 23
  93. waitforgump 0x38920abd 15000
  94. replygump 0x38920abd 0
  95. endwhile
  96. while skill 'Inscription < 100
  97. if not findtype 0xfbf
  98. headmsg 'Get more scribe tools!'
  99. endif
  100. if mana < 50
  101. useskill 'Meditation'
  102. while mana < maxmana
  103. endwhile
  104. endif
  105. usetype 0xfbf 'any' 'backpack'
  106. waitforgump 0x38920abd 15000
  107. replygump 0x38920abd 50
  108. waitforgump 0x38920abd 15000
  109. replygump 0x38920abd 16
  110. waitforgump 0x38920abd 15000
  111. replygump 0x38920abd 0
  112. endwhile
  113. endwhile
  114. if skill 'Inscription' >= 100
  115. headmsg 'Macro complete!'
  116. endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement