1
Tutorials / Re: [TUTORIAL] Add a new race
« on: May 04, 2013, 09:05:01 pm »
Hello (first sorry my english).
I have a question.
I am making a patch for wow 3.3.5a. In this patch, I want to add new races (worgen, goblin from cata, high elves, etc...). is correct this:
{
RACE_HUMAN = 1,
RACE_ORC = 2,
RACE_DWARF = 3,
RACE_NIGHTELF = 4,
RACE_UNDEAD_PLAYER = 5,
RACE_TAUREN = 6,
RACE_GNOME = 7,
RACE_TROLL = 8,
//RACE_GOBLIN = 9,
RACE_BLOODELF = 10,
RACE_DRAENEI = 11,
//RACE_FEL_ORC = 12,
//RACE_NAGA = 13,
RACE_BROKEN = 14,
//RACE_SKELETON = 15,
//RACE_VRYKUL = 16,
//RACE_TUSKARR = 17,
RACE_FOREST_TROLL = 18,
//RACE_TAUNKA = 19,
//RACE_NORTHREND_SKELETON = 20,
//RACE_ICE_TROLL = 21
RACE_GOBLINCATA = 22,
RACE_WORGEN = 23,
RACE_HIGHELF = 24,
RACE_DEATHELF = 25
};
// max+1 for player race
#define MAX_RACES 26
______________
I heard that max_races is 21, Can i select 26? o could be a problem.
Thanks and sorry for my english.
I have a question.
I am making a patch for wow 3.3.5a. In this patch, I want to add new races (worgen, goblin from cata, high elves, etc...). is correct this:
{
RACE_HUMAN = 1,
RACE_ORC = 2,
RACE_DWARF = 3,
RACE_NIGHTELF = 4,
RACE_UNDEAD_PLAYER = 5,
RACE_TAUREN = 6,
RACE_GNOME = 7,
RACE_TROLL = 8,
//RACE_GOBLIN = 9,
RACE_BLOODELF = 10,
RACE_DRAENEI = 11,
//RACE_FEL_ORC = 12,
//RACE_NAGA = 13,
RACE_BROKEN = 14,
//RACE_SKELETON = 15,
//RACE_VRYKUL = 16,
//RACE_TUSKARR = 17,
RACE_FOREST_TROLL = 18,
//RACE_TAUNKA = 19,
//RACE_NORTHREND_SKELETON = 20,
//RACE_ICE_TROLL = 21
RACE_GOBLINCATA = 22,
RACE_WORGEN = 23,
RACE_HIGHELF = 24,
RACE_DEATHELF = 25
};
// max+1 for player race
#define MAX_RACES 26
______________
I heard that max_races is 21, Can i select 26? o could be a problem.
Thanks and sorry for my english.