PDA

View Full Version : FR: BL Pets


Borvik
12-14-2003, 06:00 AM
While testing out a Vah Shir Beastlord, I summoned my warder and noticed that it was a Human male. This was obviously a DB issue, which I corrected. But I noticed when I tried the Iksar Beastlord, and summoned his warder that it was the same pet as the Vah Shir. On Live the Beastlord has a different pet depending on race, is this a feature we can look forward too?

cybermax
12-16-2003, 01:00 PM
Where or how did you change the race for the beastlord pet?

*Sniff* i want my tiggr back :P

Borvik
12-16-2003, 03:38 PM
On the pets table and assuming you have the same db sourced (MWnpcmovDB_050_alpha0_3_3) the BL pets are pets numbered 125-136. When first source the race number is 0 - to have the tiger pet for the Vah Shir the race number should be 63.

krich
12-17-2003, 10:03 AM
Here's a fix for the 053DR1 code:

In spells.cpp:4196

cout << "ptype not found: Making default BL pet." << endl;
break;
}
petstruct.race = prace; //ADD THIS LINE
} else if (strncmp(pettype, "BLBasePet", 9) == 0) { //Baron-Sprite: This Pettype does not need a reserve, it is only a warning message.

It seems that not everything is working right with pets, but this will give you the type of pet you are looking for.

Regards,

krich