Thread: Beastlord pets
View Single Post
  #2  
Old 06-04-2015, 12:32 PM
Kingly_Krab
Administrator
 
Join Date: May 2013
Location: United States
Posts: 1,603
Default

Check line 335 in pets.cpp:
Code:
if(record.petnaming == 2)
{
    switch(GetBaseRace())
    {
    case VAHSHIR:
        npc_type->race = TIGER;
        npc_type->size *= 0.8f;
        break;
    case TROLL:
        npc_type->race = ALLIGATOR;
        npc_type->size *= 2.5f;
        break;
    case OGRE:
        npc_type->race = BEAR;
        npc_type->texture = 3;
        npc_type->gender = 2;
        break;
    case BARBARIAN:
        npc_type->race = WOLF;
        npc_type->texture = 2;
        break;
    case IKSAR:
        npc_type->race = WOLF;
        npc_type->texture = 0;
        npc_type->gender = 1;
        npc_type->size *= 2.0f;
        npc_type->luclinface = 0;
        break;
    default:
        npc_type->race = WOLF;
        npc_type->texture = 0;
    }
}
Reply With Quote