mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-05-20 08:26:59 -04:00
Can queue subpackets now (automatically creates basepacket). List packets implemented. Base packets fully figured out and implemented. Login has been stablized and no longer crashes. Implemented the following packets: List Packets, Set Job packet, chat message receive packet, SetActorIcon, SetActorIsZoning, SetActorSingleStatus, AchievementRate and some unknown packets.
This commit is contained in:
@@ -31,6 +31,11 @@ namespace FFXIVClassic_Lobby_Server
|
||||
sendPacketQueue.Add(packet);
|
||||
}
|
||||
|
||||
public void queuePacket(SubPacket subpacket, bool isAuthed, bool isEncrypted)
|
||||
{
|
||||
sendPacketQueue.Add(BasePacket.createPacket(subpacket, isAuthed, isEncrypted));
|
||||
}
|
||||
|
||||
public void flushQueuedSendPackets()
|
||||
{
|
||||
if (!socket.Connected)
|
||||
|
||||
Reference in New Issue
Block a user