Partial sync latest Test changes to HighFive.

This commit is contained in:
MobiusDev
2016-10-23 15:03:47 +00:00
parent be6443a66a
commit 7b56568b81
80 changed files with 1209 additions and 1282 deletions

View File

@@ -137,8 +137,8 @@ public final class Antharas extends AbstractNpcAI
addKillId(ANTHARAS, TERASQUE, BEHEMOTH);
final StatsSet info = GrandBossManager.getInstance().getStatsSet(ANTHARAS);
final int curr_hp = info.getInt("currentHP");
final int curr_mp = info.getInt("currentMP");
final double curr_hp = info.getDouble("currentHP");
final double curr_mp = info.getDouble("currentMP");
final int loc_x = info.getInt("loc_x");
final int loc_y = info.getInt("loc_y");
final int loc_z = info.getInt("loc_z");

View File

@@ -110,8 +110,8 @@ public final class Baium extends AbstractNpcAI
addSpellFinishedId(BAIUM);
final StatsSet info = GrandBossManager.getInstance().getStatsSet(BAIUM);
final int curr_hp = info.getInt("currentHP");
final int curr_mp = info.getInt("currentMP");
final double curr_hp = info.getDouble("currentHP");
final double curr_mp = info.getDouble("currentMP");
final int loc_x = info.getInt("loc_x");
final int loc_y = info.getInt("loc_y");
final int loc_z = info.getInt("loc_z");

View File

@@ -88,8 +88,8 @@ public final class Core extends AbstractNpcAI
final int loc_y = info.getInt("loc_y");
final int loc_z = info.getInt("loc_z");
final int heading = info.getInt("heading");
final int hp = info.getInt("currentHP");
final int mp = info.getInt("currentMP");
final double hp = info.getDouble("currentHP");
final double mp = info.getDouble("currentMP");
final L2GrandBossInstance core = (L2GrandBossInstance) addSpawn(CORE, loc_x, loc_y, loc_z, heading, false, 0);
core.setCurrentHpMp(hp, mp);
spawnBoss(core);

View File

@@ -127,8 +127,8 @@ public final class Orfen extends AbstractNpcAI
final int loc_y = info.getInt("loc_y");
final int loc_z = info.getInt("loc_z");
final int heading = info.getInt("heading");
final int hp = info.getInt("currentHP");
final int mp = info.getInt("currentMP");
double hp = info.getDouble("currentHP");
double mp = info.getDouble("currentMP");
final L2GrandBossInstance orfen = (L2GrandBossInstance) addSpawn(ORFEN, loc_x, loc_y, loc_z, heading, false, 0);
orfen.setCurrentHpMp(hp, mp);
spawnBoss(orfen);

View File

@@ -118,8 +118,8 @@ public final class QueenAnt extends AbstractNpcAI
final int loc_y = QUEEN_Y;
final int loc_z = QUEEN_Z;
final int heading = info.getInt("heading");
final int hp = info.getInt("currentHP");
final int mp = info.getInt("currentMP");
double hp = info.getDouble("currentHP");
double mp = info.getDouble("currentMP");
final L2GrandBossInstance queen = (L2GrandBossInstance) addSpawn(QUEEN, loc_x, loc_y, loc_z, heading, false, 0);
queen.setCurrentHpMp(hp, mp);
spawnBoss(queen);

View File

@@ -154,8 +154,8 @@ public final class Valakas extends AbstractNpcAI
final int loc_y = info.getInt("loc_y");
final int loc_z = info.getInt("loc_z");
final int heading = info.getInt("heading");
final int hp = info.getInt("currentHP");
final int mp = info.getInt("currentMP");
final double hp = info.getDouble("currentHP");
final double mp = info.getDouble("currentMP");
final L2Npc valakas = addSpawn(VALAKAS, loc_x, loc_y, loc_z, heading, false, 0);
valakas.teleToLocation(VALAKAS_HIDDEN_LOC);