Sync with L2JServer Jan 24th 2015.

This commit is contained in:
mobius
2015-01-24 20:02:32 +00:00
parent d349bd3924
commit 1c6301c46d
1012 changed files with 23069 additions and 6307 deletions

View File

@@ -18,13 +18,12 @@
*/
package hellbound.AI.NPC.Bernarde;
import hellbound.HellboundEngine;
import ai.npc.AbstractNpcAI;
import com.l2jserver.gameserver.model.actor.L2Npc;
import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
import hellbound.HellboundEngine;
/**
* Bernarde AI.
* @author DS

View File

@@ -18,13 +18,12 @@
*/
package hellbound.AI.NPC.Buron;
import hellbound.HellboundEngine;
import ai.npc.AbstractNpcAI;
import com.l2jserver.gameserver.model.actor.L2Npc;
import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
import hellbound.HellboundEngine;
/**
* Buron AI.
* @author DS

View File

@@ -18,14 +18,13 @@
*/
package hellbound.AI.NPC.Hude;
import hellbound.HellboundEngine;
import ai.npc.AbstractNpcAI;
import com.l2jserver.gameserver.datatables.MultisellData;
import com.l2jserver.gameserver.data.xml.impl.MultisellData;
import com.l2jserver.gameserver.model.actor.L2Npc;
import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
import hellbound.HellboundEngine;
/**
* Hude AI.
* @author DS

View File

@@ -18,13 +18,12 @@
*/
package hellbound.AI.NPC.Jude;
import hellbound.HellboundEngine;
import ai.npc.AbstractNpcAI;
import com.l2jserver.gameserver.model.actor.L2Npc;
import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
import hellbound.HellboundEngine;
/**
* Jude AI.
* @author DS

View File

@@ -18,13 +18,12 @@
*/
package hellbound.AI.NPC.Kief;
import hellbound.HellboundEngine;
import ai.npc.AbstractNpcAI;
import com.l2jserver.gameserver.model.actor.L2Npc;
import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
import hellbound.HellboundEngine;
/**
* Kief AI.
* @author DS

View File

@@ -18,17 +18,16 @@
*/
package hellbound.AI.NPC.Natives;
import hellbound.HellboundEngine;
import ai.npc.AbstractNpcAI;
import com.l2jserver.gameserver.datatables.DoorTable;
import com.l2jserver.gameserver.data.xml.impl.DoorData;
import com.l2jserver.gameserver.model.actor.L2Npc;
import com.l2jserver.gameserver.model.actor.instance.L2DoorInstance;
import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
import com.l2jserver.gameserver.network.NpcStringId;
import com.l2jserver.gameserver.network.clientpackets.Say2;
import hellbound.HellboundEngine;
/**
* Natives AI.
* @author DS, GKR
@@ -116,7 +115,7 @@ public final class Natives extends AbstractNpcAI
for (int doorId : DOORS)
{
L2DoorInstance door = DoorTable.getInstance().getDoor(doorId);
L2DoorInstance door = DoorData.getInstance().getDoor(doorId);
if (door != null)
{
door.openMe();
@@ -139,7 +138,7 @@ public final class Natives extends AbstractNpcAI
{
for (int doorId : DOORS)
{
L2DoorInstance door = DoorTable.getInstance().getDoor(doorId);
L2DoorInstance door = DoorData.getInstance().getDoor(doorId);
if (door != null)
{
door.closeMe();

View File

@@ -18,6 +18,7 @@
*/
package hellbound.AI.NPC.Quarry;
import hellbound.HellboundEngine;
import ai.npc.AbstractNpcAI;
import com.l2jserver.Config;
@@ -33,8 +34,6 @@ import com.l2jserver.gameserver.model.zone.L2ZoneType;
import com.l2jserver.gameserver.network.NpcStringId;
import com.l2jserver.gameserver.network.clientpackets.Say2;
import hellbound.HellboundEngine;
/**
* Quarry AI.
* @author DS, GKR

View File

@@ -18,13 +18,12 @@
*/
package hellbound.AI.NPC.Solomon;
import hellbound.HellboundEngine;
import ai.npc.AbstractNpcAI;
import com.l2jserver.gameserver.model.actor.L2Npc;
import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
import hellbound.HellboundEngine;
/**
* Solomon AI.
* @author DS

View File

@@ -116,4 +116,4 @@ public final class Warpgate extends AbstractNpcAI
return true;
}
}
}