[AssistUO] Resisting Spells/Eval Int/Med macro

Discussion about the technical aspects of scripting. Ask about all issues involving your freelance projects here.
Locked
Algranna
Apprentice Scribe
Posts: 10
Joined: Mon May 06, 2013 1:17 am

[AssistUO] Resisting Spells/Eval Int/Med macro

Post by Algranna »

Mornin all.

Nothing special, just something I thought I would share for those people who may be starting macroing with AUO rather than Razor.

This [very basic] macro will simply spam 2 low level debuffs on your self, and med when needed.
Enjoy!

Code: Select all

if mana <= 4
 useskill 'Meditation'
 pause 15000
else
 cast 'Clumsy'
 target 'self'
 pause 2000
 cast 'feeblemind'
 target 'self'
 pause 2000
endif
Locked