Go Back   EQEmulator Home > EQEmulator Forums > Support > Support::General Support

Support::General Support Post all topics here having to do with errors while trying to connect to an EQEMu server but not about the setup/running of the Server itself.

Reply
 
Thread Tools Display Modes
  #1  
Old 01-15-2011, 04:51 PM
bad_captain
Developer
 
Join Date: Feb 2009
Location: Cincinnati, OH
Posts: 512
Default

Okay, I completely must have made that up. I swear I was receiving messages from my pet that it was taunting, but apparently not. I must have been thinking about my bots (I was looking at the bot taunt code yesterday). I looked back on some logs last night as well as from Feb last year and didn't see any pet taunting messages. lerxst2112 is correct that there's no message, as the code that does the taunt is here, and no message is made within Taunt();

Code:
//general stuff, for all classes....
	//only gets used when their primary ability get used too
	if (taunting && HasOwner() && target->IsNPC() && target->GetBodyType() != BT_Undead && taunt_time) {
		Taunt(target->CastToNPC(), false);
	}
They taunt by default:
Code:
Pet::Pet(NPCType *type_data, Mob *owner, PetType type, int16 spell_id)
: NPC(type_data, 0, owner->GetX()+2, owner->GetY()+2, owner->GetZ(), owner->GetHeading(), FlyMode3)
{
	GiveNPCTypeData(type_data);
	typeofpet = type;
	SetOwnerID(owner->GetID());
	SetPetSpellID(spell_id);
	taunting = true;
}
Bot code I was thinking of, I think..
Code:
                Say("Taunting %s", target->GetCleanName());
		Taunt(target->CastToNPC(), true);
I'm not sure what I have for the SmartAggro rule, but I haven't really had any problems with the pet keeping aggro, unless I nuke too early. If I wait until the mob is <90-95% before I nuke, then I don't have any issues. Or, if I get aggro, I can usually walk away and the pet grabs aggro from me (although sometimes I do have to run around screaming like a little girl when that doesn't work).
Reply With Quote
  #2  
Old 01-15-2011, 06:04 PM
provocating's Avatar
provocating
Demi-God
 
Join Date: Nov 2007
Posts: 2,175
Default

Well hell it would not be that hard for me to add a line or two to send a message to the client, or am I wrong here ?
Reply With Quote
  #3  
Old 01-15-2011, 06:39 PM
provocating's Avatar
provocating
Demi-God
 
Join Date: Nov 2007
Posts: 2,175
Default

Change the special_attacks.cpp to this, and boom, I have pet taunt reporting back. Can someone push this change to the SVN and check it first ? I need someone with 40 more points of IQ than me to do it.


Code:
        //general stuff, for all classes....
	//only gets used when their primary ability get used too
	if (taunting && HasOwner() && target->IsNPC() && target->GetBodyType() != BT_Undead && taunt_time) {
                Say("Taunting %s", target->GetCleanName());
		Taunt(target->CastToNPC(), false);
	}
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

   

All times are GMT -4. The time now is 05:14 PM.


 

Everquest is a registered trademark of Daybreak Game Company LLC.
EQEmulator is not associated or affiliated in any way with Daybreak Game Company LLC.
Except where otherwise noted, this site is licensed under a Creative Commons License.
       
Powered by vBulletin®, Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Template by Bluepearl Design and vBulletin Templates - Ver3.3