Hey guys,
Quick question: I've been trying to enable the race / class combo of Dark Elf / Beastlord on my server. I've edited the database to include the char_create_combo and the allocation stuff, but I'm a bit stuck on the pets.cpp edit. I've added a case for them as such:
Code:
case DARK_ELF:
npc_type->race = SPIDER;
npc_type->texture = 0;
npc_type->size *= 2.0f;
break;
But when I try to compile it, it tells me there's no identifier for "SPIDER." So, my question is, where are these identifers stored / interpreted AND / OR what is the correct identifier for a spider? I'd like to understand what I'm missing
Thanks in advance!
- Scrubbs