Compare commits

...

2 Commits

Author SHA1 Message Date
Tristan 'Natrist' Cormier
14fdd4aa55
Merge 44bee4cbd7 into f8f00b599e 2026-02-18 13:20:09 +09:00
Tristan Cormier
44bee4cbd7 feat(net): add CHARACTER_CREATE_INFO struct 2026-02-14 21:03:36 -05:00

View File

@ -1214,4 +1214,17 @@ struct CHARACTER_INFO {
uint8_t firstLogin;
};
struct CHARACTER_CREATE_INFO {
char name[48];
uint8_t raceID;
uint8_t classID;
uint8_t sexID;
uint8_t skinID;
uint8_t faceID;
uint8_t hairStyleID;
uint8_t hairColorID;
uint8_t facialHairStyleID;
uint8_t outfitID;
};
#endif