mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-05-20 08:26:59 -04:00
Implemented MotD. Groups are now sent from world server to client, and also initialized. Retainers finished and are also sent.
This commit is contained in:
@@ -8,6 +8,7 @@ namespace FFXIVClassic_World_Server.Packets.WorldPackets.Receive.Group
|
||||
{
|
||||
public bool invalidPacket = false;
|
||||
|
||||
public string currentName;
|
||||
public ushort argCode;
|
||||
public string name;
|
||||
public ushort crestid;
|
||||
@@ -21,6 +22,7 @@ namespace FFXIVClassic_World_Server.Packets.WorldPackets.Receive.Group
|
||||
{
|
||||
try
|
||||
{
|
||||
currentName = Encoding.ASCII.GetString(binReader.ReadBytes(0x20)).Trim(new[] { '\0' });
|
||||
argCode = binReader.ReadUInt16();
|
||||
|
||||
switch (argCode)
|
||||
|
Reference in New Issue
Block a user