Advertisement
Guest User

Untitled

a guest
Aug 18th, 2019
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.36 KB | None | 0 0
  1. /////////////////////////////////////////////
  2. // UO Steam Taming Macro
  3. // for Outlands
  4. //
  5. // This is for looping peace and tame attempts on a hostile creature.
  6. // It will first make sure your target is peaced, then tame. This is
  7. // good for semi-afk taming - just watch it once in a while.
  8. //
  9. // IMPORTANT - chance the timer to match your peace time. Im 90 peace
  10. // so I can peace for 1 minute - so I allow 45 seconds for taming
  11. // attempts before I peace again. Play with it until you find your
  12. // best time for your peace.
  13. //
  14. // v1.0
  15. // ----
  16. // * Initial version
  17. //
  18. /////////////////////////////////////////////
  19. headmsg "Select creature to tame" 55
  20. promptalias 'tobetamed'
  21. @removetimer 'peace'
  22. @createtimer 'peace'
  23. @clearjournal
  24. if @findobject 'tobetamed'
  25. while name 'tobetamed' != 'Ozy'
  26. //
  27. // Peace
  28. //
  29. while not injournal 'play successfully' 'system'
  30. autotargetobject 'tobetamed'
  31. useskill 'peacemaking'
  32. pause 11000
  33. @settimer 'peace' 0
  34. endwhile
  35. //
  36. // Tame
  37. //
  38. @setskill 'animal taming' 'up'
  39. autotargetobject 'tobetamed'
  40. useskill 'animal taming'
  41. pause 13000
  42. @rename 'tobetamed' 'Ozy'
  43. //
  44. // Set your peace upper limit here
  45. //
  46. if timer 'peace' > 45000
  47. @clearjournal
  48. endif
  49. endwhile
  50. @ignoreobject 'tobetamed'
  51. @unsetalias 'tobetamed'
  52. endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement