• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Some numbers...

EvulMastah

๏̯͡๏﴿
Premium User
Joined
Aug 19, 2007
Messages
4,940
Solutions
11
Reaction score
353
Maybe someone at least can help me with that:
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?
 
That enum is only used to build the outfits, not related to how many female genders there are.

What you're asking for requires more than C++ basics experience, and could take over 20 minutes to write (to make it compatible with all other gender related codes). I suggest you to either learn C++ or head over to the C++ Programming board and request for such a code there.
 
Ok and a question btw:
Why does my server crash when I use 15 of each gender when loading and doesnt crash when I use 12 of each? Where do I change that or w/e?
 
Back
Top