mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-07-02 17:13:26 +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
|
@ -9,10 +9,11 @@ namespace FFXIVClassic_Map_Server.dataobjects.chara
|
|||
class BattleSave
|
||||
{
|
||||
public float potencial = 6.6f;
|
||||
public int skillLevel;
|
||||
public int skillLevelCap;
|
||||
public int[] skillPoint;
|
||||
public short[] skillLevel = new short[52];
|
||||
public short[] skillLevelCap = new short[52];
|
||||
public short[] skillPoint = new short[52];
|
||||
|
||||
public short physicalLevel;
|
||||
public int physicalExp;
|
||||
|
||||
public bool[] negotiationFlag= new bool[2];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue