Advertisement
Maespark

Double Axe - Whirlwind

Jul 4th, 2019
1,649
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.11 KB | None | 0 0
  1. ////******************************************************////
  2. //Title: Double Axe Whirlwind
  3. //Author: Maelune
  4. //Version: 1.0
  5. //Purpose: Automatically equip your axe, select the closest target, and
  6. // begin whirlwinding!
  7. //
  8. //Requirements: A Double Axe
  9. //
  10. //Instructions: Copy this entire text into a UOSteam Macro! Replace the serial
  11. // ID of the axe at the beginning of the macro with that of your own.
  12. //
  13. //Notes: This macro will constantly be trying to switch to the nearest target
  14. // in order to keep your character whirlwinding as much as possible.
  15. // Several of the buffs are turned off by default due to long cast
  16. // times. They can be useful though depending on what you fight.
  17. // Uncomment the ones you'd like to use!
  18. ////******************************************************////
  19. if not @findobject 'axe'
  20. @setalias 'axe' 0x4296e090 //Replace me with your axe's serial!
  21. endif
  22. ////******************************************************////
  23. clearignorelist
  24. while @getenemy 'murderer' 'enemy' 'gray' 'criminal' 'closest'
  25. while @findobject 'axe' 'any' 'backpack'
  26. clearhands right //Uncomment this one if 1handed axe
  27. //clearhands both //Uncomment this one if 2handed axe
  28. pause 300
  29. equipitem 'axe' 1
  30. endwhile
  31. attack! 'enemy'
  32. if mana >= 10
  33. @setability 'secondary' 'on'
  34. endif
  35. //***Self Buffs. Comment or uncomment to your liking!***//
  36. if not timerexists 'ConsecrateWeaponTimer'
  37. createtimer 'ConsecrateWeaponTimer'
  38. settimer 'ConsecrateWeaponTimer' 9000
  39. elseif timer 'ConsecrateWeaponTimer' > 9000
  40. cast 'Consecrate Weapon'
  41. pause 1000
  42. settimer 'ConsecrateWeaponTimer' 0
  43. endif
  44. if buffexists 'Polymorph'
  45. cast 'Polymorph'
  46. pause 1000
  47. endif
  48. //**************auto-cast Vamp Embrace*****************//
  49. //*****Causes strangeness if you were in Wraith Form*****
  50. //if @findtype 0x25e 'any' 'self'
  51. // if color < 33918 or color > 33918
  52. // cast 'vampiric embrace'
  53. // pause 2500
  54. // endif
  55. //endif
  56. //////*******************************************////////
  57. attack! 'enemy'
  58. endwhile
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement