Advertisement
Cappelle

Simple escape

Mar 5th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. // Quick Recall
  2. // Quickly recalls to a pre-set runebook
  3. // *REMEMBER TO SET ONE RUNE AS DEFAULT IN RUNEBOOK*
  4. // Author: Kyramir (UO Evolution)
  5. //
  6. // If runebook not found, ask for one
  7. if not @findalias '_DefaultRunebook'
  8. promptalias '_DefaultRunebook'
  9. endif
  10. // If overweight cast Bless on self
  11. if weight > maxweight and skill 'Magery' >= 50
  12. cancelautotarget
  13. autotargetself
  14. cast "bless"
  15. pause 2500
  16. endif
  17. // If at least one follower is present, say them to follow
  18. if followers > 1
  19. msg 'all follow me'
  20. endif
  21. // Cast Sacred Journey (if enough Chivalry for 100%) or Recall
  22. autotargetobject '_DefaultRunebook'
  23. if skill 'Chivalry' >= 65
  24. cast "Sacred Journey"
  25. else
  26. cast "Recall"
  27. endif
  28. pause 1000
  29. if followers > 1
  30. msg 'all follow me'
  31. endif
  32. pause 1000
  33. // Uncomment next line to Open Bank after recalling
  34. msg 'bank'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement