Thread: BST Pets
View Single Post
  #5  
Old 10-26-2004, 07:42 AM
Derision
Developer
 
Join Date: Feb 2004
Location: UK
Posts: 1,540
Default Re: BST Pets

Quote:
Originally Posted by Muuss

A nice feature could be to make the pets report their buffs when their owner make a /pet report health, like it was (is ?) on live...
I had nothing better to do, so I looked at this:

In zone/client_process.cpp around line 3803

After:
Code:
case PET_HEALTHREPORT: {
               Message_StringID(10, PET_REPORT_HP, ConvertArrayF(mypet->GetHPRatio(), val1));
Add:
Code:
mypet->CastToMob()->ShowBuffs(this);
Reply With Quote