mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-05-20 08:26:59 -04:00
implemented sendpacket and speed commands
- fixed data race on logging in - todo: implement reloadzones, reloaditems, property, property2
This commit is contained in:
@@ -5,7 +5,7 @@ namespace FFXIVClassic_Map_Server.packets.send.login
|
||||
{
|
||||
class Login0x7ResponsePacket
|
||||
{
|
||||
public static BasePacket BuildPacket(uint actorID, uint time)
|
||||
public static BasePacket BuildPacket(uint actorID, uint time, uint type)
|
||||
{
|
||||
byte[] data = new byte[0x18];
|
||||
|
||||
@@ -16,7 +16,7 @@ namespace FFXIVClassic_Map_Server.packets.send.login
|
||||
try
|
||||
{
|
||||
binWriter.Write((short)0x18);
|
||||
binWriter.Write((short)0x8);
|
||||
binWriter.Write((short)type);
|
||||
binWriter.Write((uint)0);
|
||||
binWriter.Write((uint)0);
|
||||
binWriter.Write((uint)0xFFFFFD7F);
|
||||
|
Reference in New Issue
Block a user