Page 1 of 1

UOSteam auto-attack macro

Posted: Mon Aug 15, 2016 2:35 am
by darthredeye
fairly basic macro, will cast consecrate if you have at least 50 mana, and will cast divine fury when you're under 100 stam. those lines can be removed, or you can switch out primary with secondary as needed. enjoy

Code: Select all

if mana > 50
  cast "Consecrate Weapon"
elseif mana < 50
endif
@setability 'primary' 'on'
getenemy 'murderer' 'enemy' 'criminal' 'grey' 'closest'
@target 'enemy'
@attack 'enemy'
canceltarget
pause 1500
if stam < 100
  cast "Divine Fury"
elseif stam >= maxstam
endif

Re: UOSteam auto-attack macro

Posted: Wed Jan 04, 2017 3:41 pm
by Braccio
what can be added to this so a Tamers pets in "guard mode" (grey) won't be targeted?

Re: UOSteam auto-attack macro

Posted: Thu Jan 05, 2017 6:45 pm
by darthredeye
i do have issues with people in angel form sometimes getting targeted. while it didnt irritate me enough to change it, you could try removing 'grey' from the list of mobs to target. hope it helps!