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
+16
View File
@@ -0,0 +1,16 @@
// 0x01
struct LoginBase
{
u32 sequence_id;
u8 compressed;
u8 encrypt_type;
u32 unknown08;
};
struct Packet {
LoginBase base;
u16 unknown0a;
};
Packet packet @0x00;