mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-21 04:07:48 +00:00
Removed need for the login2.bin packet file.
This commit is contained in:
parent
e501d5b796
commit
23aef8cc46
1 changed files with 12 additions and 4 deletions
|
@ -61,13 +61,21 @@ namespace FFXIVClassic_Lobby_Server
|
||||||
{
|
{
|
||||||
packet.debugPrintPacket();
|
packet.debugPrintPacket();
|
||||||
byte[] reply1Data = {
|
byte[] reply1Data = {
|
||||||
0x01, 0x00, 0x00, 0x00, 0x28, 0x0, 0x01, 0x0, 0x0, 0x0, 0x0, 0x0, 0x00, 0x00, 0x00, 0x00,
|
0x01, 0x00, 0x00, 0x00, 0x28, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||||
0x18, 0x00, 0x07, 0x00, 0x00, 0x0, 0x00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7F, 0xFD, 0xFF, 0xFF,
|
0x18, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFD, 0xFF, 0xFF,
|
||||||
0xE5, 0x6E, 0x01, 0xE0, 0x00, 0x0, 0x00, 0x0
|
0xE5, 0x6E, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x0
|
||||||
|
};
|
||||||
|
|
||||||
|
byte[] reply2Data = {
|
||||||
|
0x01, 0x00, 0x00, 0x00, 0x28, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||||
|
0x38, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x50, 0x2B, 0x5F, 0x26,
|
||||||
|
0x66, 0x00, 0x00, 0x00, 0xC8, 0xD6, 0xAF, 0x2B, 0x38, 0x2B, 0x5F, 0x26, 0xB8, 0x8D, 0xF0, 0x2B,
|
||||||
|
0xC8, 0xFD, 0x85, 0xFE, 0xA8, 0x7C, 0x5B, 0x09, 0x38, 0x2B, 0x5F, 0x26, 0xC8, 0xD6, 0xAF, 0x2B,
|
||||||
|
0xB8, 0x8D, 0xF0, 0x2B, 0x88, 0xAF, 0x5E, 0x26
|
||||||
};
|
};
|
||||||
|
|
||||||
BasePacket reply1 = new BasePacket(reply1Data);
|
BasePacket reply1 = new BasePacket(reply1Data);
|
||||||
BasePacket reply2 = new BasePacket("./packets/login/login2.bin");
|
BasePacket reply2 = new BasePacket(reply2Data);
|
||||||
|
|
||||||
//Write Timestamp into Reply1
|
//Write Timestamp into Reply1
|
||||||
using (MemoryStream mem = new MemoryStream(reply1.data))
|
using (MemoryStream mem = new MemoryStream(reply1.data))
|
||||||
|
|
Loading…
Add table
Reference in a new issue