[EasyUO]KaianaPetsAttack
Posted: Wed Sep 15, 2010 9:45 pm
This is another little script I use in certain hunting situations. It simply makes your pets attack whatever you attack. If you'd like them to not automatically guard you when your target is cleared (in case you're fighting, for example, the Shadow Knight in Doom), simply delete the last two lines BEFORE the final bracket. Don't delete the bracket.
Code: Select all
if #ENEMYID <> N/A
{
set %currentEnemy #ENEMYID
event macro 1 0 All Attack
target
set #LTARGETID %currentEnemy
set #LTARGETKIND 1
event macro 22 0
repeat
{
sleep 1
}
until #ENEMYID = N/A || #ENEMYID <> %currentEnemy
if #ENEMYID = N/A
event macro 1 0 All Guard Me
}