Page 1 of 1

[EasyUO]KaianaPetsAttack

Posted: Wed Sep 15, 2010 9:45 pm
by Kaiana
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
}

Re: [EasyUO]KaianaPetsAttack

Posted: Fri Sep 17, 2010 12:29 pm
by Efanchenko_MM
another thanks Kaiana! will try later, very usefull! Thanks for sharing with us!