Sync with L2jServer HighFive Sep 8th 2015.

This commit is contained in:
MobiusDev
2015-09-08 19:52:45 +00:00
parent 4e2af7c19a
commit 40380c4860
738 changed files with 14444 additions and 13328 deletions

View File

@@ -187,11 +187,11 @@ public class NpcViewMod implements IBypassHandler
html.replace("%atktype%", Util.capitalizeFirst(npc.getAttackType().name().toLowerCase()));
html.replace("%atkrange%", npc.getStat().getPhysicalAttackRange());
html.replace("%patk%", npc.getPAtk(activeChar));
html.replace("%pdef%", npc.getPDef(activeChar));
html.replace("%patk%", (int) npc.getPAtk(activeChar));
html.replace("%pdef%", (int) npc.getPDef(activeChar));
html.replace("%matk%", npc.getMAtk(activeChar, null));
html.replace("%mdef%", npc.getMDef(activeChar, null));
html.replace("%matk%", (int) npc.getMAtk(activeChar, null));
html.replace("%mdef%", (int) npc.getMDef(activeChar, null));
html.replace("%atkspd%", npc.getPAtkSpd());
html.replace("%castspd%", npc.getMAtkSpd());