mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-07-01 16:43:19 +02:00
Added some new work parameters. Fixed GC Packet (wrong sized data). Connected player data packets to DB. Cleaned up login code.
This commit is contained in:
parent
2bf532a6db
commit
f7702bca13
16 changed files with 209 additions and 123 deletions
|
@ -18,17 +18,21 @@ namespace FFXIVClassic_Map_Server.dataobjects.chara
|
|||
public EventSave eventSave = new EventSave();
|
||||
public EventTemp eventTemp = new EventTemp();
|
||||
|
||||
public bool gameParameter = false;
|
||||
|
||||
|
||||
public byte[] property = new byte[32];
|
||||
|
||||
public ushort[] status = new ushort[20];
|
||||
public uint[] statusShownTime = new uint[20];
|
||||
|
||||
public uint[] command = new uint[64];
|
||||
public uint[] command = new uint[64]; //ACTORS
|
||||
public byte[] commandCategory = new byte[64];
|
||||
public byte commandBorder = 0x20;
|
||||
public bool commandAcquired = false;
|
||||
public bool[] additionalCommandAcquired = new bool[32];
|
||||
public bool[] commandAcquired = new bool[4096];
|
||||
public bool[] additionalCommandAcquired = new bool[36];
|
||||
|
||||
public uint currentContentGroup;
|
||||
public uint depictionJudge = 0xa0f50911;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue