Minor rewrite of Beleth.

Source L2J HighFive branch:
99e1460f73
This commit is contained in:
mobius
2015-02-22 17:36:20 +00:00
parent 3ad710a591
commit f010f5e142

View File

@@ -18,7 +18,8 @@
*/ */
package ai.individual; package ai.individual;
import java.util.ArrayList; import java.util.List;
import java.util.concurrent.CopyOnWriteArrayList;
import java.util.concurrent.ScheduledFuture; import java.util.concurrent.ScheduledFuture;
import ai.npc.AbstractNpcAI; import ai.npc.AbstractNpcAI;
@@ -32,7 +33,6 @@ import com.l2jserver.gameserver.enums.ChatType;
import com.l2jserver.gameserver.instancemanager.GrandBossManager; import com.l2jserver.gameserver.instancemanager.GrandBossManager;
import com.l2jserver.gameserver.instancemanager.ZoneManager; import com.l2jserver.gameserver.instancemanager.ZoneManager;
import com.l2jserver.gameserver.model.L2Object; import com.l2jserver.gameserver.model.L2Object;
import com.l2jserver.gameserver.model.L2Spawn;
import com.l2jserver.gameserver.model.Location; import com.l2jserver.gameserver.model.Location;
import com.l2jserver.gameserver.model.StatsSet; import com.l2jserver.gameserver.model.StatsSet;
import com.l2jserver.gameserver.model.actor.L2Attackable; import com.l2jserver.gameserver.model.actor.L2Attackable;
@@ -59,6 +59,9 @@ import com.l2jserver.gameserver.util.Util;
*/ */
public final class Beleth extends AbstractNpcAI public final class Beleth extends AbstractNpcAI
{ {
// NPCs
private static final int BELETH_ID_1 = 29118;
private static final int BELETH_ID_2 = 29119;
protected static L2Npc CAMERA; protected static L2Npc CAMERA;
protected static L2Npc CAMERA2; protected static L2Npc CAMERA2;
protected static L2Npc CAMERA3; protected static L2Npc CAMERA3;
@@ -73,11 +76,11 @@ public final class Beleth extends AbstractNpcAI
private static int ALLOW_OBJECT_ID = 0; private static int ALLOW_OBJECT_ID = 0;
private static int KILLED = 0; private static int KILLED = 0;
protected static ScheduledFuture<?> SPAWN_TIMER = null; protected static ScheduledFuture<?> SPAWN_TIMER = null;
protected static ArrayList<L2Npc> MINIONS = new ArrayList<>(); protected static final List<L2Npc> MINIONS = new CopyOnWriteArrayList<>();
private static SkillHolder BLEED = new SkillHolder(5495, 1); private static final SkillHolder BLEED = new SkillHolder(5495, 1);
private static SkillHolder FIREBALL = new SkillHolder(5496, 1); private static final SkillHolder FIREBALL = new SkillHolder(5496, 1);
private static SkillHolder HORN_OF_RISING = new SkillHolder(5497, 1); private static final SkillHolder HORN_OF_RISING = new SkillHolder(5497, 1);
private static SkillHolder LIGHTENING = new SkillHolder(5499, 1); private static final SkillHolder LIGHTENING = new SkillHolder(5499, 1);
protected static final Location BELETH_SPAWN = new Location(16323, 213059, -9357, 49152); protected static final Location BELETH_SPAWN = new Location(16323, 213059, -9357, 49152);
@@ -86,62 +89,36 @@ public final class Beleth extends AbstractNpcAI
super(Beleth.class.getSimpleName(), "ai/individual"); super(Beleth.class.getSimpleName(), "ai/individual");
ZONE = ZoneManager.getInstance().getZoneById(12018); ZONE = ZoneManager.getInstance().getZoneById(12018);
addEnterZoneId(12018); addEnterZoneId(12018);
registerMobs(29118, 29119); registerMobs(BELETH_ID_1, BELETH_ID_2);
addStartNpc(32470); addStartNpc(32470);
addTalkId(32470); addTalkId(32470);
addFirstTalkId(29128); addFirstTalkId(29128);
StatsSet info = GrandBossManager.getInstance().getStatsSet(29118); StatsSet info = GrandBossManager.getInstance().getStatsSet(BELETH_ID_1);
int status = GrandBossManager.getInstance().getBossStatus(29118); int status = GrandBossManager.getInstance().getBossStatus(BELETH_ID_1);
if (status == 3) if (status == 3)
{ {
long temp = (info.getLong("respawn_time") - System.currentTimeMillis()); final long time = (info.getLong("respawn_time") - System.currentTimeMillis());
if (temp > 0) if (time > 0)
{ {
ThreadPoolManager.getInstance().scheduleGeneral(new unlock(), temp); startQuestTimer("UNLOCK", time, null, null);
} }
else else
{ {
GrandBossManager.getInstance().setBossStatus(29118, 0); GrandBossManager.getInstance().setBossStatus(BELETH_ID_1, 0);
} }
} }
else if (status != 0) else if (status != 0)
{ {
GrandBossManager.getInstance().setBossStatus(29118, 0); GrandBossManager.getInstance().setBossStatus(BELETH_ID_1, 0);
} }
DoorData.getInstance().getDoor(20240001).openMe(); DoorData.getInstance().getDoor(20240001).openMe();
} }
protected static L2Npc spawn(int npcId, Location loc)
{
try
{
final L2Spawn spawn = new L2Spawn(npcId);
spawn.setInstanceId(loc.getInstanceId());
spawn.setLocation(loc);
spawn.setAmount(spawn.getAmount() + 1);
return spawn.doSpawn();
}
catch (Exception ignored)
{
}
return null;
}
public static void startSpawnTask() public static void startSpawnTask()
{ {
ThreadPoolManager.getInstance().scheduleGeneral(new Spawn(1), DEBUG ? 10000 : 300000); ThreadPoolManager.getInstance().scheduleGeneral(new Spawn(1), DEBUG ? 10000 : 300000);
} }
protected static class unlock implements Runnable
{
@Override
public void run()
{
GrandBossManager.getInstance().setBossStatus(29118, 0);
DoorData.getInstance().getDoor(20240001).openMe();
}
}
private static class Cast implements Runnable private static class Cast implements Runnable
{ {
SkillHolder _skill; SkillHolder _skill;
@@ -190,10 +167,10 @@ public final class Beleth extends AbstractNpcAI
npc.deleteMe(); npc.deleteMe();
} }
} }
CAMERA = spawn(29120, new Location(16323, 213142, -9357, 0, instanceId)); CAMERA = addSpawn(29120, new Location(16323, 213142, -9357, 0, instanceId));
CAMERA2 = spawn(29121, new Location(16323, 210741, -9357, 0, instanceId)); CAMERA2 = addSpawn(29121, new Location(16323, 210741, -9357, 0, instanceId));
CAMERA3 = spawn(29122, new Location(16323, 213170, -9357, 0, instanceId)); CAMERA3 = addSpawn(29122, new Location(16323, 213170, -9357, 0, instanceId));
CAMERA4 = spawn(29123, new Location(16323, 214917, -9356, 0, instanceId)); CAMERA4 = addSpawn(29123, new Location(16323, 214917, -9356, 0, instanceId));
ZONE.broadcastPacket(new PlaySound(1, "BS07_A", 1, CAMERA.getObjectId(), CAMERA.getX(), CAMERA.getY(), CAMERA.getZ())); ZONE.broadcastPacket(new PlaySound(1, "BS07_A", 1, CAMERA.getObjectId(), CAMERA.getX(), CAMERA.getY(), CAMERA.getZ()));
ZONE.broadcastPacket(new SpecialCamera(CAMERA, 400, 75, -25, 0, 2500, 0, 0, 1, 0, 0)); ZONE.broadcastPacket(new SpecialCamera(CAMERA, 400, 75, -25, 0, 2500, 0, 0, 1, 0, 0));
ZONE.broadcastPacket(new SpecialCamera(CAMERA, 400, 75, -25, 0, 2500, 0, 0, 1, 0, 0)); ZONE.broadcastPacket(new SpecialCamera(CAMERA, 400, 75, -25, 0, 2500, 0, 0, 1, 0, 0));
@@ -228,7 +205,7 @@ public final class Beleth extends AbstractNpcAI
ThreadPoolManager.getInstance().scheduleGeneral(new Spawn(8), 6000); ThreadPoolManager.getInstance().scheduleGeneral(new Spawn(8), 6000);
break; break;
case 8: case 8:
spawn(29125, new Location(16323, 214917, -9356, 0, instanceId)); addSpawn(29125, new Location(16323, 214917, -9356, 0, instanceId));
ZONE.broadcastPacket(new SpecialCamera(CAMERA4, 900, 255, 0, 0, 1500, 0, 10, 1, 0, 0)); ZONE.broadcastPacket(new SpecialCamera(CAMERA4, 900, 255, 0, 0, 1500, 0, 10, 1, 0, 0));
ThreadPoolManager.getInstance().scheduleGeneral(new Spawn(9), 1000); ThreadPoolManager.getInstance().scheduleGeneral(new Spawn(9), 1000);
break; break;
@@ -237,7 +214,7 @@ public final class Beleth extends AbstractNpcAI
ThreadPoolManager.getInstance().scheduleGeneral(new Spawn(10), 3000); ThreadPoolManager.getInstance().scheduleGeneral(new Spawn(10), 3000);
break; break;
case 10: case 10:
BELETH = spawn(29118, new Location(16321, 214211, -9352, 49369, instanceId)); BELETH = addSpawn(BELETH_ID_1, new Location(16321, 214211, -9352, 49369, instanceId));
ThreadPoolManager.getInstance().scheduleGeneral(new Spawn(11), 200); ThreadPoolManager.getInstance().scheduleGeneral(new Spawn(11), 200);
break; break;
case 11: case 11:
@@ -246,7 +223,7 @@ public final class Beleth extends AbstractNpcAI
{ {
int x = (int) ((150 * Math.cos(i * 1.046666667)) + 16323); int x = (int) ((150 * Math.cos(i * 1.046666667)) + 16323);
int y = (int) ((150 * Math.sin(i * 1.046666667)) + 213059); int y = (int) ((150 * Math.sin(i * 1.046666667)) + 213059);
L2Npc minion = spawn(29119, new Location(x, y, -9357, 49152, BELETH.getInstanceId())); L2Npc minion = addSpawn(BELETH_ID_2, new Location(x, y, -9357, 49152, BELETH.getInstanceId()));
minion.setShowSummonAnimation(true); minion.setShowSummonAnimation(true);
minion.decayMe(); minion.decayMe();
MINIONS.add(minion); MINIONS.add(minion);
@@ -333,7 +310,7 @@ public final class Beleth extends AbstractNpcAI
break; break;
case 27: case 27:
BELETH.doDie(null); BELETH.doDie(null);
CAMERA = spawn(29122, new Location(16323, 213170, -9357, 0, instanceId)); CAMERA = addSpawn(29122, new Location(16323, 213170, -9357, 0, instanceId));
CAMERA.broadcastPacket(new PlaySound(1, "BS07_D", 1, CAMERA.getObjectId(), CAMERA.getX(), CAMERA.getY(), CAMERA.getZ())); CAMERA.broadcastPacket(new PlaySound(1, "BS07_D", 1, CAMERA.getObjectId(), CAMERA.getX(), CAMERA.getY(), CAMERA.getZ()));
ZONE.broadcastPacket(new SpecialCamera(CAMERA, 400, 290, 25, 0, 10000, 0, 0, 1, 0, 0)); ZONE.broadcastPacket(new SpecialCamera(CAMERA, 400, 290, 25, 0, 10000, 0, 0, 1, 0, 0));
ZONE.broadcastPacket(new SpecialCamera(CAMERA, 400, 290, 25, 0, 10000, 0, 0, 1, 0, 0)); ZONE.broadcastPacket(new SpecialCamera(CAMERA, 400, 290, 25, 0, 10000, 0, 0, 1, 0, 0));
@@ -357,7 +334,7 @@ public final class Beleth extends AbstractNpcAI
case 31: case 31:
PRIEST.spawnMe(); PRIEST.spawnMe();
BELETH.deleteMe(); BELETH.deleteMe();
CAMERA2 = spawn(29121, new Location(14056, 213170, -9357, 0, instanceId)); CAMERA2 = addSpawn(29121, new Location(14056, 213170, -9357, 0, instanceId));
ThreadPoolManager.getInstance().scheduleGeneral(new Spawn(32), 3500); ThreadPoolManager.getInstance().scheduleGeneral(new Spawn(32), 3500);
break; break;
case 32: case 32:
@@ -376,7 +353,7 @@ public final class Beleth extends AbstractNpcAI
MOVIE = false; MOVIE = false;
break; break;
case 333: case 333:
BELETH = spawn(29118, new Location(16323, 213170, -9357, 49152)); BELETH = addSpawn(BELETH_ID_1, new Location(16323, 213170, -9357, 49152));
break; break;
} }
@@ -388,51 +365,60 @@ public final class Beleth extends AbstractNpcAI
} }
} }
@Override
public String onAdvEvent(String event, L2Npc npc, L2PcInstance player)
{
switch (event)
{
case "UNLOCK":
{
GrandBossManager.getInstance().setBossStatus(BELETH_ID_1, 0);
DoorData.getInstance().getDoor(20240001).openMe();
break;
}
}
return super.onAdvEvent(event, npc, player);
}
@Override @Override
public String onEnterZone(L2Character character, L2ZoneType zone) public String onEnterZone(L2Character character, L2ZoneType zone)
{ {
if (((character.isPlayer()) && (GrandBossManager.getInstance().getBossStatus(29118) == 1)) || (DEBUG && (GrandBossManager.getInstance().getBossStatus(29118) != 2) && (character.isPlayer()))) if (((character.isPlayer()) && (GrandBossManager.getInstance().getBossStatus(BELETH_ID_1) == 1)) || (DEBUG && (GrandBossManager.getInstance().getBossStatus(BELETH_ID_1) != 2) && (character.isPlayer())))
{ {
startSpawnTask(); startSpawnTask();
GrandBossManager.getInstance().setBossStatus(29118, 2); GrandBossManager.getInstance().setBossStatus(BELETH_ID_1, 2);
} }
return null;
return super.onEnterZone(character, zone);
} }
@Override @Override
public String onKill(L2Npc npc, L2PcInstance killer, boolean isSummon) public String onKill(L2Npc npc, L2PcInstance killer, boolean isSummon)
{ {
if (npc == null) if ((npc.getId() == BELETH_ID_1) && (killer != null))
{ {
return super.onKill(npc, killer, isSummon); setBelethKiller(killer);
} GrandBossManager.getInstance().setBossStatus(BELETH_ID_1, 3);
if ((npc.getId() == 29118) && (killer != null))
{
setBelethKiller(1, killer);
GrandBossManager.getInstance().setBossStatus(29118, 3);
// Calculate Min and Max respawn times randomly. // Calculate Min and Max respawn times randomly.
long respawnTime = Config.BELETH_SPAWN_INTERVAL + getRandom(-Config.BELETH_SPAWN_RANDOM, Config.BELETH_SPAWN_RANDOM); final long respawnTime = (Config.BELETH_SPAWN_INTERVAL + getRandom(-Config.BELETH_SPAWN_RANDOM, Config.BELETH_SPAWN_RANDOM)) * 3600000;
respawnTime *= 3600000; StatsSet info = GrandBossManager.getInstance().getStatsSet(BELETH_ID_1);
StatsSet info = GrandBossManager.getInstance().getStatsSet(29118);
info.set("respawn_time", System.currentTimeMillis() + respawnTime); info.set("respawn_time", System.currentTimeMillis() + respawnTime);
GrandBossManager.getInstance().setStatsSet(29118, info); GrandBossManager.getInstance().setStatsSet(BELETH_ID_1, info);
ThreadPoolManager.getInstance().scheduleGeneral(new unlock(), respawnTime); startQuestTimer("UNLOCK", respawnTime, null, null);
deleteAll(); deleteAll();
npc.deleteMe(); npc.deleteMe();
MOVIE = true; MOVIE = true;
BELETH = spawn(29118, new Location(16323, 213170, -9357, 49152)); BELETH = addSpawn(BELETH_ID_1, new Location(16323, 213170, -9357, 49152));
BELETH.setIsInvul(true); BELETH.setIsInvul(true);
BELETH.setIsImmobilized(true); BELETH.setIsImmobilized(true);
BELETH.disableAllSkills(); BELETH.disableAllSkills();
PRIEST = spawn(29128, new Location(BELETH)); PRIEST = addSpawn(29128, new Location(BELETH));
PRIEST.setShowSummonAnimation(true); PRIEST.setShowSummonAnimation(true);
PRIEST.decayMe(); PRIEST.decayMe();
spawn(32470, new Location(12470, 215607, -9381, 49152)); addSpawn(32470, new Location(12470, 215607, -9381, 49152));
ThreadPoolManager.getInstance().scheduleGeneral(new Spawn(27), 1000); ThreadPoolManager.getInstance().scheduleGeneral(new Spawn(27), 1000);
} }
else if (npc.getId() == 29119) else if (npc.getId() == BELETH_ID_2)
{ {
if (npc.getObjectId() == ALLOW_OBJECT_ID) if (npc.getObjectId() == ALLOW_OBJECT_ID)
{ {
@@ -465,7 +451,7 @@ public final class Beleth extends AbstractNpcAI
@Override @Override
public String onSkillSee(L2Npc npc, L2PcInstance player, Skill skill, L2Object[] targets, boolean isSummon) public String onSkillSee(L2Npc npc, L2PcInstance player, Skill skill, L2Object[] targets, boolean isSummon)
{ {
if ((npc != null) && !npc.isDead() && ((npc.getId() == 29118) || (npc.getId() == 29119)) && !npc.isCastingNow() && skill.hasEffectType(L2EffectType.HEAL) && (getRandom(100) < 80)) if ((npc != null) && !npc.isDead() && ((npc.getId() == BELETH_ID_1) || (npc.getId() == BELETH_ID_2)) && !npc.isCastingNow() && skill.hasEffectType(L2EffectType.HEAL) && (getRandom(100) < 80))
{ {
npc.setTarget(player); npc.setTarget(player);
npc.doCast(HORN_OF_RISING.getSkill()); npc.doCast(HORN_OF_RISING.getSkill());
@@ -481,7 +467,7 @@ public final class Beleth extends AbstractNpcAI
return super.onAttack(npc, attacker, damage, isSummon); return super.onAttack(npc, attacker, damage, isSummon);
} }
if ((npc.getId() == 29118) || (npc.getId() == 29119)) if ((npc.getId() == BELETH_ID_1) || (npc.getId() == BELETH_ID_2))
{ {
if ((npc.getObjectId() == ALLOW_OBJECT_ID) && !ATTACKED) if ((npc.getObjectId() == ALLOW_OBJECT_ID) && !ATTACKED)
{ {
@@ -530,7 +516,7 @@ public final class Beleth extends AbstractNpcAI
@Override @Override
public String onSpellFinished(L2Npc npc, L2PcInstance player, Skill skill) public String onSpellFinished(L2Npc npc, L2PcInstance player, Skill skill)
{ {
if ((npc != null) && !npc.isDead() && ((npc.getId() == 29118) || (npc.getId() == 29119)) && !npc.isCastingNow()) if ((npc != null) && !npc.isDead() && ((npc.getId() == BELETH_ID_1) || (npc.getId() == BELETH_ID_2)) && !npc.isCastingNow())
{ {
if ((player != null) && !player.isDead()) if ((player != null) && !player.isDead())
{ {
@@ -542,7 +528,6 @@ public final class Beleth extends AbstractNpcAI
double speed = npc.isRunning() ? npc.getRunSpeed() : npc.getWalkSpeed(); double speed = npc.isRunning() ? npc.getRunSpeed() : npc.getWalkSpeed();
int time = (int) (((distance2 - 890) / speed) * 1000); int time = (int) (((distance2 - 890) / speed) * 1000);
ThreadPoolManager.getInstance().scheduleGeneral(new Cast(FIREBALL, npc), time); ThreadPoolManager.getInstance().scheduleGeneral(new Cast(FIREBALL, npc), time);
} }
else if (distance2 < 890) else if (distance2 < 890)
{ {
@@ -573,7 +558,7 @@ public final class Beleth extends AbstractNpcAI
@Override @Override
public String onAggroRangeEnter(L2Npc npc, L2PcInstance player, boolean isSummon) public String onAggroRangeEnter(L2Npc npc, L2PcInstance player, boolean isSummon)
{ {
if ((npc != null) && !npc.isDead() && ((npc.getId() == 29118) || (npc.getId() == 29119)) && !npc.isCastingNow() && !MOVIE) if ((npc != null) && !npc.isDead() && ((npc.getId() == BELETH_ID_1) || (npc.getId() == BELETH_ID_2)) && !npc.isCastingNow() && !MOVIE)
{ {
if (getRandom(100) < 40) if (getRandom(100) < 40)
{ {
@@ -592,14 +577,14 @@ public final class Beleth extends AbstractNpcAI
@Override @Override
public String onSpawn(L2Npc npc) public String onSpawn(L2Npc npc)
{ {
if ((npc.getId() == 29118) || (npc.getId() == 29119)) if ((npc.getId() == BELETH_ID_1) || (npc.getId() == BELETH_ID_2))
{ {
npc.setRunning(); npc.setRunning();
if (!MOVIE && !npc.getKnownList().getKnownPlayersInRadius(300).isEmpty() && (getRandom(100) < 60)) if (!MOVIE && !npc.getKnownList().getKnownPlayersInRadius(300).isEmpty() && (getRandom(100) < 60))
{ {
npc.doCast(BLEED.getSkill()); npc.doCast(BLEED.getSkill());
} }
if (npc.getId() == 29118) if (npc.getId() == BELETH_ID_1)
{ {
npc.getSpawn().setRespawnDelay(0);// setOnKillDelay npc.getSpawn().setRespawnDelay(0);// setOnKillDelay
} }
@@ -614,7 +599,7 @@ public final class Beleth extends AbstractNpcAI
if ((BELETH_KILLER != null) && (player.getObjectId() == BELETH_KILLER.getObjectId())) if ((BELETH_KILLER != null) && (player.getObjectId() == BELETH_KILLER.getObjectId()))
{ {
player.addItem("Kill Beleth", 10314, 1, null, true);// giveItems(10314, 1, 0) player.addItem("Kill Beleth", 10314, 1, null, true);// giveItems(10314, 1, 0)
setBelethKiller(0, player); BELETH_KILLER = null;
html = "32470a.htm"; html = "32470a.htm";
} }
else else
@@ -630,13 +615,7 @@ public final class Beleth extends AbstractNpcAI
return null; return null;
} }
private static void setBelethKiller(int event, L2PcInstance killer) private static void setBelethKiller(L2PcInstance killer)
{
if (event == 0)
{
BELETH_KILLER = null;
}
else if (event == 1)
{ {
if (killer.getParty() != null) if (killer.getParty() != null)
{ {
@@ -654,7 +633,6 @@ public final class Beleth extends AbstractNpcAI
BELETH_KILLER = killer; BELETH_KILLER = killer;
} }
} }
}
protected static void setSpawnTimer(int event) protected static void setSpawnTimer(int event)
{ {
@@ -680,7 +658,7 @@ public final class Beleth extends AbstractNpcAI
{ {
for (L2Npc npc : MINIONS) for (L2Npc npc : MINIONS)
{ {
if ((npc == null) || npc.isDead()) if (npc.isDead())
{ {
continue; continue;
} }
@@ -704,7 +682,7 @@ public final class Beleth extends AbstractNpcAI
a++; a++;
int x = (int) ((650 * Math.cos(i * 0.39)) + 16323); int x = (int) ((650 * Math.cos(i * 0.39)) + 16323);
int y = (int) ((650 * Math.sin(i * 0.39)) + 213170); int y = (int) ((650 * Math.sin(i * 0.39)) + 213170);
npc = spawn(29119, new Location(x, y, -9357, 49152)); npc = addSpawn(BELETH_ID_2, new Location(x, y, -9357, 49152));
MINIONS.add(npc); MINIONS.add(npc);
if (a >= 2) if (a >= 2)
{ {
@@ -718,54 +696,54 @@ public final class Beleth extends AbstractNpcAI
{ {
xm[i] = (int) ((1700 * Math.cos((i * 1.57) + 0.78)) + 16323); xm[i] = (int) ((1700 * Math.cos((i * 1.57) + 0.78)) + 16323);
ym[i] = (int) ((1700 * Math.sin((i * 1.57) + 0.78)) + 213170); ym[i] = (int) ((1700 * Math.sin((i * 1.57) + 0.78)) + 213170);
npc = spawn(29119, new Location(xm[i], ym[i], -9357, 49152)); npc = addSpawn(BELETH_ID_2, new Location(xm[i], ym[i], -9357, 49152));
npc.setIsOverloaded(true); npc.setIsOverloaded(true);
MINIONS.add(npc); MINIONS.add(npc);
} }
xm[4] = (xm[0] + xm[1]) / 2; xm[4] = (xm[0] + xm[1]) / 2;
ym[4] = (ym[0] + ym[1]) / 2; ym[4] = (ym[0] + ym[1]) / 2;
npc = spawn(29119, new Location(xm[4], ym[4], -9357, 49152)); npc = addSpawn(BELETH_ID_2, new Location(xm[4], ym[4], -9357, 49152));
npc.setIsOverloaded(true); npc.setIsOverloaded(true);
MINIONS.add(npc); MINIONS.add(npc);
xm[5] = (xm[1] + xm[2]) / 2; xm[5] = (xm[1] + xm[2]) / 2;
ym[5] = (ym[1] + ym[2]) / 2; ym[5] = (ym[1] + ym[2]) / 2;
npc = spawn(29119, new Location(xm[5], ym[5], -9357, 49152)); npc = addSpawn(BELETH_ID_2, new Location(xm[5], ym[5], -9357, 49152));
npc.setIsOverloaded(true); npc.setIsOverloaded(true);
MINIONS.add(npc); MINIONS.add(npc);
xm[6] = (xm[2] + xm[3]) / 2; xm[6] = (xm[2] + xm[3]) / 2;
ym[6] = (ym[2] + ym[3]) / 2; ym[6] = (ym[2] + ym[3]) / 2;
npc = spawn(29119, new Location(xm[6], ym[6], -9357, 49152)); npc = addSpawn(BELETH_ID_2, new Location(xm[6], ym[6], -9357, 49152));
npc.setIsOverloaded(true); npc.setIsOverloaded(true);
MINIONS.add(npc); MINIONS.add(npc);
xm[7] = (xm[3] + xm[0]) / 2; xm[7] = (xm[3] + xm[0]) / 2;
ym[7] = (ym[3] + ym[0]) / 2; ym[7] = (ym[3] + ym[0]) / 2;
npc = spawn(29119, new Location(xm[7], ym[7], -9357, 49152)); npc = addSpawn(BELETH_ID_2, new Location(xm[7], ym[7], -9357, 49152));
npc.setIsOverloaded(true); npc.setIsOverloaded(true);
MINIONS.add(npc); MINIONS.add(npc);
xm[8] = (xm[0] + xm[4]) / 2; xm[8] = (xm[0] + xm[4]) / 2;
ym[8] = (ym[0] + ym[4]) / 2; ym[8] = (ym[0] + ym[4]) / 2;
MINIONS.add(spawn(29119, new Location(xm[8], ym[8], -9357, 49152))); MINIONS.add(addSpawn(BELETH_ID_2, new Location(xm[8], ym[8], -9357, 49152)));
xm[9] = (xm[4] + xm[1]) / 2; xm[9] = (xm[4] + xm[1]) / 2;
ym[9] = (ym[4] + ym[1]) / 2; ym[9] = (ym[4] + ym[1]) / 2;
MINIONS.add(spawn(29119, new Location(xm[9], ym[9], -9357, 49152))); MINIONS.add(addSpawn(BELETH_ID_2, new Location(xm[9], ym[9], -9357, 49152)));
xm[10] = (xm[1] + xm[5]) / 2; xm[10] = (xm[1] + xm[5]) / 2;
ym[10] = (ym[1] + ym[5]) / 2; ym[10] = (ym[1] + ym[5]) / 2;
MINIONS.add(spawn(29119, new Location(xm[10], ym[10], -9357, 49152))); MINIONS.add(addSpawn(BELETH_ID_2, new Location(xm[10], ym[10], -9357, 49152)));
xm[11] = (xm[5] + xm[2]) / 2; xm[11] = (xm[5] + xm[2]) / 2;
ym[11] = (ym[5] + ym[2]) / 2; ym[11] = (ym[5] + ym[2]) / 2;
MINIONS.add(spawn(29119, new Location(xm[11], ym[11], -9357, 49152))); MINIONS.add(addSpawn(BELETH_ID_2, new Location(xm[11], ym[11], -9357, 49152)));
xm[12] = (xm[2] + xm[6]) / 2; xm[12] = (xm[2] + xm[6]) / 2;
ym[12] = (ym[2] + ym[6]) / 2; ym[12] = (ym[2] + ym[6]) / 2;
MINIONS.add(spawn(29119, new Location(xm[12], ym[12], -9357, 49152))); MINIONS.add(addSpawn(BELETH_ID_2, new Location(xm[12], ym[12], -9357, 49152)));
xm[13] = (xm[6] + xm[3]) / 2; xm[13] = (xm[6] + xm[3]) / 2;
ym[13] = (ym[6] + ym[3]) / 2; ym[13] = (ym[6] + ym[3]) / 2;
MINIONS.add(spawn(29119, new Location(xm[13], ym[13], -9357, 49152))); MINIONS.add(addSpawn(BELETH_ID_2, new Location(xm[13], ym[13], -9357, 49152)));
xm[14] = (xm[3] + xm[7]) / 2; xm[14] = (xm[3] + xm[7]) / 2;
ym[14] = (ym[3] + ym[7]) / 2; ym[14] = (ym[3] + ym[7]) / 2;
MINIONS.add(spawn(29119, new Location(xm[14], ym[14], -9357, 49152))); MINIONS.add(addSpawn(BELETH_ID_2, new Location(xm[14], ym[14], -9357, 49152)));
xm[15] = (xm[7] + xm[0]) / 2; xm[15] = (xm[7] + xm[0]) / 2;
ym[15] = (ym[7] + ym[0]) / 2; ym[15] = (ym[7] + ym[0]) / 2;
MINIONS.add(spawn(29119, new Location(xm[15], ym[15], -9357, 49152))); MINIONS.add(addSpawn(BELETH_ID_2, new Location(xm[15], ym[15], -9357, 49152)));
ALLOW_OBJECT_ID = MINIONS.get(getRandom(MINIONS.size())).getObjectId(); ALLOW_OBJECT_ID = MINIONS.get(getRandom(MINIONS.size())).getObjectId();
ATTACKED = false; ATTACKED = false;
} }