mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-06-08 21:44:35 +02: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:
parent
31446f37fa
commit
7036ef363d
18 changed files with 309 additions and 74 deletions
|
@ -8,7 +8,23 @@ namespace FFXIVClassic_World_Server.DataObjects.Group
|
|||
{
|
||||
class RetainerGroupMember
|
||||
{
|
||||
public uint retainerId;
|
||||
public uint id;
|
||||
public string name;
|
||||
public uint classActorId;
|
||||
public byte cdIDOffset;
|
||||
public ushort placeName;
|
||||
public byte conditions;
|
||||
public byte level;
|
||||
|
||||
public RetainerGroupMember(uint id, string name, uint classActorId, byte cdIDOffset, ushort placeName, byte conditions, byte level)
|
||||
{
|
||||
this.id = id;
|
||||
this.name = name;
|
||||
this.classActorId = classActorId;
|
||||
this.cdIDOffset = cdIDOffset;
|
||||
this.placeName = placeName;
|
||||
this.conditions = conditions;
|
||||
this.level = level;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue