mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-08-03 00:01:57 +02:00
Got commands working. Wrong ID for one of em.
This commit is contained in:
parent
aebaa1b70e
commit
e47904dc30
5 changed files with 72 additions and 31 deletions
|
@ -13,24 +13,24 @@ namespace FFXIVClassic_Map_Server.dataobjects.chara
|
|||
//public const uint NAMEPLATE_SHOWN2 = 2;
|
||||
public const uint NAMEPLATE_SHOWN2 = 3;
|
||||
|
||||
public const uint STAT_STRENGTH = 4;
|
||||
public const uint STAT_VITALITY = 5;
|
||||
public const uint STAT_DEXTERITY = 6;
|
||||
public const uint STAT_INTELLIGENCE = 7;
|
||||
public const uint STAT_MIND = 8;
|
||||
public const uint STAT_PIETY = 9;
|
||||
public const uint STAT_STRENGTH = 3;
|
||||
public const uint STAT_VITALITY = 4;
|
||||
public const uint STAT_DEXTERITY = 5;
|
||||
public const uint STAT_INTELLIGENCE = 6;
|
||||
public const uint STAT_MIND = 7;
|
||||
public const uint STAT_PIETY = 8;
|
||||
|
||||
public const uint STAT_RESISTANCE_FIRE = 10;
|
||||
public const uint STAT_RESISTANCE_ICE = 11;
|
||||
public const uint STAT_RESISTANCE_WIND = 12;
|
||||
public const uint STAT_RESISTANCE_LIGHTNING = 13;
|
||||
public const uint STAT_RESISTANCE_EARTH = 14;
|
||||
public const uint STAT_RESISTANCE_WATER = 15;
|
||||
public const uint STAT_RESISTANCE_FIRE = 9;
|
||||
public const uint STAT_RESISTANCE_ICE = 10;
|
||||
public const uint STAT_RESISTANCE_WIND = 11;
|
||||
public const uint STAT_RESISTANCE_LIGHTNING = 12;
|
||||
public const uint STAT_RESISTANCE_EARTH = 13;
|
||||
public const uint STAT_RESISTANCE_WATER = 14;
|
||||
|
||||
public const uint STAT_ATTACK = 18;
|
||||
public const uint STAT_ACCURACY = 16;
|
||||
public const uint STAT_NORMALDEFENSE = 19;
|
||||
public const uint STAT_EVASION = 17;
|
||||
public const uint STAT_ATTACK = 17;
|
||||
public const uint STAT_ACCURACY = 15;
|
||||
public const uint STAT_NORMALDEFENSE = 18;
|
||||
public const uint STAT_EVASION = 16;
|
||||
public const uint STAT_ATTACK_MAGIC = 24;
|
||||
public const uint STAT_HEAL_MAGIC = 25;
|
||||
public const uint STAT_ENCHANCEMENT_MAGIC_POTENCY = 26;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue