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

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Pet Attack

turbocross

New Member
Joined
Mar 23, 2010
Messages
231
Hi, if I want to make a pet attack the target mob first, how can I do this?
 
Ya, I guess if that's the command to make the pet attack, but I was thinking more like making the pet go into battle first before the main character actually does any action.

Is there a way to do this?
 
Your making your own CC or for what do you need it? I'm not at computer with wow and visual studio so can't look it up for you
 
I saw in another CC file that there was a command like this:

PetAttackTarget();

What does it exactly do and how do we use this?

And to klokje: I am trying to make my own custom CC using pets to attack first.
 
PetAttackTarget is function in the CC, I don't know which one you are looking in? In the same file(I'm right) there is also a funtion. But I think it is almost the same as Lua.DoString("PetAttack()");
 
Hey, I know it's a function, but what does it exactly do? o.o;;

(And how is this used?)
 
Sorry I'm not good that good in english but I see you are looking in fpw hunter CC.
If your looking for PetAttackTarget in the file you find this;)

private void PetAttackTarget()
{
Lua.DoString("PetAttack()");
}


so the same as what I have given you

Edit: If you don't understand this I think you first need to learn c# a little bit more to make a good CC
 
Last edited:
I see, I still don't know how to apply it though.

Is there a guide that can let me know what command does what, and what functions/commands are available for use?
 
make a post on dev section if you want help on CC development
 
  1. Send the pet to attack a target
  2. Wait for the pet to engage in combat with the target
    1. Either wait a specific amount of time and then attack yourself (not recommended)
    2. Or check if the target is attacking your pet (If Me.CurrentTarget.CurrentTarget.GUID == Me.Pet.GUID)
  3. Open fire.
  4. Win!
 
Back
Top