UO Steam macro for making pets attack nearest gray

yarr

Adept
Anyone have a UO Steam macro for making pets attack nearest gray? Can't seem to get mine to work.

msg 'all kill'
@Target 'enemy'

That one seemed to work one time but wont work anymore

tried this one too...

@Getenemy 'murderer' 'Enemy' 'criminal' 'gray' 'closest'
if @findobject 'enemy'
msg 'all attack'
waitfortarget 15000
autotargetobject 'enemy'
endif
@clearusequeue
@cancelautotarget
 

Vorax

Grandmaster
This is the macro I use, it will say All Guard Me, and proceed to attack the nearest grey, which will in turn make your pets flag it.


getenemy 'gray''criminal''closest'

if @findobject 'enemy'

autotargetobject! 'enemy'

if criminal 'enemy'

msg 'All Guard Me'

attack! 'enemy'

target! 'enemy'

@clearusequeue

@cancelautotarget

stop

endif

if gray 'enemy'

msg 'All Guard Me'

attack! 'enemy'

target! 'enemy'

@clearusequeue

@cancelautotarget

stop

endif

endif
 

yarr

Adept
thanks ill give that one a try.

This script also seems to work alright:

@Getenemy 'gray' 'closest'

if @findobject 'enemy'

msg 'all attack'

@Target 'enemy'

endif

@clearusequeue

@cancelautotarget

 
Top