mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-07-20 09:35:56 +02:00
Got most of the properties getting set. Commands and General Parameters broken.
This commit is contained in:
parent
d42dac543f
commit
5b5b99bb4b
6 changed files with 79 additions and 23 deletions
|
@ -8,17 +8,17 @@ namespace FFXIVClassic_Map_Server.dataobjects.chara
|
|||
{
|
||||
class ParameterSave
|
||||
{
|
||||
public int[] hp = new int[1];
|
||||
public int[] hpMax = new int[1];
|
||||
public int mp;
|
||||
public int mpMax;
|
||||
public short[] hp = new short[1];
|
||||
public short[] hpMax = new short[1];
|
||||
public short mp;
|
||||
public short mpMax;
|
||||
|
||||
public int[] state_mainSkill = new int[4];
|
||||
public int state_mainSkillLevel;
|
||||
public byte[] state_mainSkill = new byte[4];
|
||||
public ushort state_mainSkillLevel;
|
||||
|
||||
public int[] state_boostPointForSkill;
|
||||
|
||||
public uint[] commandSlot_compatibility = new uint[40];
|
||||
public bool[] commandSlot_compatibility = new bool[40];
|
||||
public uint[] commandSlot_recastTime = new uint[40];
|
||||
|
||||
public int[] giftCommandSlot_commandId;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue