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:
Filip Maj 2016-12-18 09:50:23 -05:00
parent 31446f37fa
commit 7036ef363d
18 changed files with 309 additions and 74 deletions

View file

@ -17,6 +17,7 @@ namespace FFXIVClassic_World_Server.DataObjects.Group
public Party(ulong groupId, uint leaderCharaId) : base(groupId)
{
partyGroupWork._globalTemp.owner = (ulong)((0xB36F92 << 8) | leaderCharaId);
members.Add(leaderCharaId);
}
public void SetLeader(uint actorId)