What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

About Buffs

turbocross

New Member
Joined
Mar 23, 2010
Messages
231
Reaction score
0
Hi, are we able to cast buffs pets in our party?

Example: A priest is partied with a hunter and wants to buff the hunter's pet.
 
Last edited:
how about the equivalent to "/target player/pet /cast "Spellname"? , i think it should be that easy
 
how about the equivalent to "/target player/pet /cast "Spellname"? , i think it should be that easy

does the game allow for that kind of slash command?

i was looking more for a loop function, like using the 'for' command.
 
Code:
foreach (WoWPlayer player in Me.PartyMembers)
{
     if (player != null)
     { 
          player.pet.target();
          SpellManager.CastSpell("buff");
     }
}
 
Code:
foreach (WoWPlayer player in Me.PartyMembers)
{
     if (player != null)
     { 
          player.pet.target();
          SpellManager.CastSpell("buff");
     }
}

Finally, thank you Ski, you've been a great help.

I wish I knew as much about the commands though so I wouldn't have to post too many threads ;o

But I can't seem to find a list of them, though I did look in the help file provided by hawker.
 
Code:
foreach (WoWPlayer player in Me.PartyMembers)
{
     if (player != null)
     { 
          player.pet.target();
          SpellManager.CastSpell("buff");
     }
}

Do I have to declare 'player' as a variable to use the 'if (player != null)' ?
 
Back
Top