UOSteam auto-attack macro

If you make a Client-side script you can publish it here for other players to use
Locked
darthredeye
Journeyman Scribe
Posts: 23
Joined: Wed Jan 13, 2016 6:22 am

UOSteam auto-attack macro

Post 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
Braccio
Passer by
Posts: 2
Joined: Sun Dec 25, 2016 11:07 am

Re: UOSteam auto-attack macro

Post by Braccio »

what can be added to this so a Tamers pets in "guard mode" (grey) won't be targeted?
darthredeye
Journeyman Scribe
Posts: 23
Joined: Wed Jan 13, 2016 6:22 am

Re: UOSteam auto-attack macro

Post 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!
Locked