Some investigation on packets, mostly the same as rof2 / laurion but not entirely.

This commit is contained in:
KimLS
2026-03-25 18:08:46 -07:00
parent 0024073cee
commit 16ec08e71c
9 changed files with 205 additions and 1 deletions
@@ -0,0 +1,19 @@
// 0x23
struct LoginBase
{
u32 sequence_id;
u8 compressed;
u8 encrypt_type;
u32 unknown08;
};
struct Packet {
LoginBase base;
u8 success;
u32 login_server_string_id;
char login_server_string;
};
Packet packet @0x00;