1
Fork 0
mirror of https://bitbucket.org/Ioncannon/project-meteor-server.git synced 2025-04-21 04:07:48 +00:00

Changed param constants.

This commit is contained in:
Filip Maj 2016-01-10 23:21:06 -05:00
parent d9e274eb09
commit aebaa1b70e
2 changed files with 7 additions and 4 deletions

View file

@ -8,8 +8,10 @@ namespace FFXIVClassic_Map_Server.dataobjects.chara
{ {
class BattleTemp class BattleTemp
{ {
public const uint NAMEPLATE_SHOWN = 0xFBFBCFB1; public const uint NAMEPLATE_SHOWN = 0;
public const uint TARGETABLE = 0x2138FD71; public const uint TARGETABLE = 1;
//public const uint NAMEPLATE_SHOWN2 = 2;
public const uint NAMEPLATE_SHOWN2 = 3;
public const uint STAT_STRENGTH = 4; public const uint STAT_STRENGTH = 4;
public const uint STAT_VITALITY = 5; public const uint STAT_VITALITY = 5;
@ -21,7 +23,7 @@ namespace FFXIVClassic_Map_Server.dataobjects.chara
public const uint STAT_RESISTANCE_FIRE = 10; public const uint STAT_RESISTANCE_FIRE = 10;
public const uint STAT_RESISTANCE_ICE = 11; public const uint STAT_RESISTANCE_ICE = 11;
public const uint STAT_RESISTANCE_WIND = 12; public const uint STAT_RESISTANCE_WIND = 12;
public const uint STAT_RESISTANCE_LIGHTNING = 3; public const uint STAT_RESISTANCE_LIGHTNING = 13;
public const uint STAT_RESISTANCE_EARTH = 14; public const uint STAT_RESISTANCE_EARTH = 14;
public const uint STAT_RESISTANCE_WATER = 15; public const uint STAT_RESISTANCE_WATER = 15;

View file

@ -215,7 +215,6 @@ namespace FFXIVClassic_Map_Server.dataobjects.chara
propPacketUtil.addProperty("charaWork.parameterTemp.forceControl_int16_forClientSelf[1]"); propPacketUtil.addProperty("charaWork.parameterTemp.forceControl_int16_forClientSelf[1]");
propPacketUtil.addProperty("charaWork.depictionJudge"); propPacketUtil.addProperty("charaWork.depictionJudge");
propPacketUtil.addProperty("playerWork.restBonusExpRate");
//Scenario //Scenario
for (int i = 0; i < playerWork.questScenario.Length; i++) for (int i = 0; i < playerWork.questScenario.Length; i++)
@ -251,6 +250,8 @@ namespace FFXIVClassic_Map_Server.dataobjects.chara
propPacketUtil.addProperty(String.Format("playerWork.npcLinkshellChatExtra[{0}]", i)); propPacketUtil.addProperty(String.Format("playerWork.npcLinkshellChatExtra[{0}]", i));
} }
propPacketUtil.addProperty("playerWork.restBonusExpRate");
//Profile //Profile
propPacketUtil.addProperty("playerWork.tribe"); propPacketUtil.addProperty("playerWork.tribe");
propPacketUtil.addProperty("playerWork.guardian"); propPacketUtil.addProperty("playerWork.guardian");