mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-05-20 08:26:59 -04:00
Got most of the properties getting set. Commands and General Parameters broken.
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user