View Single Post
  #1  
Old 04-05-2011, 11:58 AM
provocating's Avatar
provocating
Demi-God
 
Join Date: Nov 2007
Posts: 2,175
Default Pet taunt, on Live

I am trying to remember, on Live could you toggle pet taunt on / off from the pet buttons ? On my SoF and UF clients I can turn it on but have to turn it off with a /pet taunt off. I see this in client_packet.cpp that it does look like it is supposed to be handled. I may either have something wrong on my server or it could be my client. I plan on trying Titanium when I get home.

Code:
         case PET_TAUNT: {
                if((mypet->GetPetType() == petAnimation && GetAA(aaAnimationEmpathy) >= 3) || mypet->GetPetType() != petAnimation) {
                        Message(0,"%s says, 'Now taunting foes, Master!",mypet->GetCleanName());
                        mypet->CastToNPC()->SetTaunting(true);
                }
                break;
        }
        case PET_NOTAUNT: {
                if((mypet->GetPetType() == petAnimation && GetAA(aaAnimationEmpathy) >= 3) || mypet->GetPetType() != petAnimation) {
                        Message(0,"%s says, 'No longer taunting foes, Master!",mypet->GetCleanName());
                        mypet->CastToNPC()->SetTaunting(false);
                }
                break;
        }
Reply With Quote