Compare commits

...

2 Commits

Author SHA1 Message Date
Tristan 'Natrist' Cormier
b65a6cc03d
Merge 44bee4cbd7 into 817cec99fe 2026-02-21 19:26:33 -05: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; 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 #endif