mirror of
https://github.com/EQEmu/Server.git
synced 2026-04-19 16:52:25 +00:00
Login exploration
This commit is contained in:
parent
37b8428c48
commit
0024073cee
19
obr/packets/login/OP_ChatMessage.txt
Normal file
19
obr/packets/login/OP_ChatMessage.txt
Normal 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;
|
||||
1
obr/packets/login/OP_ExpansionList.txt
Normal file
1
obr/packets/login/OP_ExpansionList.txt
Normal file
@ -0,0 +1 @@
|
||||
// 0x30
|
||||
18
obr/packets/login/OP_Login.txt
Normal file
18
obr/packets/login/OP_Login.txt
Normal file
@ -0,0 +1,18 @@
|
||||
// 0x02
|
||||
|
||||
#include <std/mem.pat>
|
||||
|
||||
struct LoginBase
|
||||
{
|
||||
u32 sequence_id;
|
||||
u8 compressed;
|
||||
u8 encrypt_type;
|
||||
u32 unknown08;
|
||||
};
|
||||
|
||||
struct Packet {
|
||||
LoginBase base;
|
||||
u8 payload[std::mem::size() - $];
|
||||
};
|
||||
|
||||
Packet packet @0x00;
|
||||
16
obr/packets/login/OP_SessionReady.txt
Normal file
16
obr/packets/login/OP_SessionReady.txt
Normal 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;
|
||||
Loading…
x
Reference in New Issue
Block a user