- Joined
- Aug 19, 2007
- Messages
- 4,940
- Solutions
- 11
- Reaction score
- 353
Maybe someone at least can help me with that:
Is anyone willing to make the PLAYER_MALE/FEMALE go up from 1 to 15 or show me some website where I can clearly understand what I need to write there to make it myself?
Code:
enum CharacterTypes_t
{
PLAYER_MALE_1 = 0x80,
PLAYER_MALE_2 = 0x81,
PLAYER_MALE_3 = 0x82,
PLAYER_MALE_4 = 0x83,
PLAYER_MALE_5 = 0x84,
PLAYER_MALE_6 = 0x85,
PLAYER_MALE_7 = 0x86,
PLAYER_FEMALE_1 = 0x88,
PLAYER_FEMALE_2 = 0x89,
PLAYER_FEMALE_3 = 0x8A,
PLAYER_FEMALE_4 = 0x8B,
PLAYER_FEMALE_5 = 0x8C,
PLAYER_FEMALE_6 = 0x8D,
PLAYER_FEMALE_7 = 0x8E,
};
Is anyone willing to make the PLAYER_MALE/FEMALE go up from 1 to 15 or show me some website where I can clearly understand what I need to write there to make it myself?