Advertisement
Cappelle

Recall Macro

Mar 9th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.42 KB | None | 0 0
  1. //by dog8mycode
  2. //This escape recall macro will use regs if you have them. If you dont have regs //it will use a charge. It uses the first rune in your book when useing charges. //If all your characters have a runebook the same color and go to the same //loction it can work for all of them.
  3. if mana < 11
  4. headmsg 'Mana is too low'
  5. stop
  6. endif
  7. if not @findtype 0x22c5 2212 'backpack'
  8. // Change "2212" to the color of your runebook.
  9. headmsg 'Runebook Missing'
  10. stop
  11. else
  12. @setalias 'runebook' found
  13. endif
  14. // Change "2042" to the location you recall to.
  15. while @x != 2042
  16. if @skill 'Magery' > 70
  17. if @findtype 0xf7a 'any' 'backpack' 1 2 //Black Pearl
  18. if @findtype 0xf86 'any' 'backpack' 1 2 //Blood Moss
  19. if @findtype 0xf7a 'any' 'backpack' 1 2 //M. Root
  20. cast 'Recall'
  21. msg 'All Come'
  22. waitfortarget 3000
  23. msg 'All Come'
  24. @target! runebook
  25. msg 'All Come'
  26. for 10
  27. if @x == 2042
  28. // Change "2042" to the location you recall to.
  29. else
  30. pause 100
  31. endif
  32. endfor
  33. continue
  34. endif
  35. endif
  36. endif
  37. endif
  38. useobject 'runebook'
  39. waitforgump 0x554b87f3 3000
  40. replygump 0x554b87f3 2
  41. for 30
  42. if @x == 2042
  43. // Change "2042" to the location you recall to.
  44. break
  45. else
  46. pause 100
  47. endif
  48. endfor
  49. endwhile
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement