Login exploration

This commit is contained in:
KimLS
2026-03-24 23:59:42 -07:00
parent 37b8428c48
commit 0024073cee
4 changed files with 54 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
// 0x01
struct LoginBase
{
u32 sequence_id;
u8 compressed;
u8 encrypt_type;
u32 unknown08;
};
struct Packet {
LoginBase base;
u8 success;
s32 error_str_id;
char error_msg[];
char other_msg[];
};
Packet packet @0x00;