Moved Magmeld scripts to zones package.

This commit is contained in:
MobiusDev
2016-04-28 17:31:58 +00:00
parent 9aad08d91c
commit 324f0a3ddb
5 changed files with 16 additions and 14 deletions

View File

@@ -12,7 +12,6 @@ handlers/MasterHandler.java
# Group Template
ai/group_template/AdenReconstructorManager.java
ai/group_template/ArcanRitual.java
ai/group_template/BeastFarm.java
ai/group_template/DenOfEvil.java
ai/group_template/DragonValley.java
@@ -30,7 +29,6 @@ ai/group_template/MinionSpawnManager.java
ai/group_template/MonasteryOfSilence.java
ai/group_template/NonLethalableNpcs.java
ai/group_template/NonRandomWalkNpcs.java
ai/group_template/OrbisTempleStatues.java
ai/group_template/PaganKey.java
ai/group_template/PaganTemple.java
ai/group_template/PavelArchaic.java
@@ -168,7 +166,6 @@ ai/npc/Sirra/Sirra.java
ai/npc/Summons/MerchantGolem/GolemTrader.java
ai/npc/SupportUnitCaptain/SupportUnitCaptain.java
ai/npc/SymbolMaker/SymbolMaker.java
ai/npc/Teleports/AnghelWaterfallPortal/AnghelWaterfallPortal.java
ai/npc/Teleports/CrumaTower/CrumaTower.java
ai/npc/Teleports/DarkOmens/DarkOmens.java
ai/npc/Teleports/DelusionTeleport/DelusionTeleport.java
@@ -184,7 +181,6 @@ ai/npc/Teleports/Klemis/Klemis.java
ai/npc/Teleports/MithrilMinesTeleporter/MithrilMinesTeleporter.java
ai/npc/Teleports/NewbieTravelToken/NewbieTravelToken.java
ai/npc/Teleports/NoblesseTeleport/NoblesseTeleport.java
ai/npc/Teleports/OrbisTemple/OrbisTemple.java
ai/npc/Teleports/PaganTeleporters/PaganTeleporters.java
ai/npc/Teleports/SeparatedSoul/SeparatedSoul.java
ai/npc/Teleports/StakatoNestTeleporter/StakatoNestTeleporter.java
@@ -216,6 +212,12 @@ ai/zones/FantasyIsle/HandysBlockCheckerEvent.java
ai/zones/FantasyIsle/Parade.java
ai/zones/FantasyIsle/TalentShow.java
# Magmeld
ai/zones/Magmeld/AnghelWaterfallPortal.java
ai/zones/Magmeld/ArcanRitual.java
ai/zones/Magmeld/OrbisTempleStatues.java
ai/zones/Magmeld/OrbisTempleTeleports.java
# Village Master
village_master/Clan/Clan.java
village_master/Alliance/Alliance.java

View File

@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package ai.npc.Teleports.AnghelWaterfallPortal;
package ai.zones.Magmeld;
import com.l2jmobius.gameserver.model.Location;
import com.l2jmobius.gameserver.model.actor.L2Character;
@@ -33,7 +33,7 @@ final class AnghelWaterfallPortal extends AbstractNpcAI
private AnghelWaterfallPortal()
{
super(AnghelWaterfallPortal.class.getSimpleName(), "ai/npc/Teleports");
super(AnghelWaterfallPortal.class.getSimpleName(), "ai/zones/Magmeld");
addEnterZoneId(ZONE_ID);
}

View File

@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package ai.group_template;
package ai.zones.Magmeld;
import java.util.ArrayList;

View File

@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package ai.group_template;
package ai.zones.Magmeld;
import com.l2jmobius.gameserver.model.actor.L2Npc;
import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance;
@@ -45,7 +45,7 @@ final class OrbisTempleStatues extends AbstractNpcAI
public OrbisTempleStatues()
{
super(OrbisTempleStatues.class.getSimpleName(), "ai/group_template");
super(OrbisTempleStatues.class.getSimpleName(), "ai/zones/Magmeld");
addSpawnId(VICTIM_1, VICTIM_2, VICTIM_3, GUARD_1, GUARD_2, GUARD_3, THROWER_1, THROWER_2, THROWER_3, ANCIENT_HERO, CHIEF_CURATOR);
addAttackId(VICTIM_1, VICTIM_2, VICTIM_3, GUARD_1, GUARD_2, GUARD_3, THROWER_1, THROWER_2, THROWER_3);
}

View File

@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package ai.npc.Teleports.OrbisTemple;
package ai.zones.Magmeld;
import com.l2jmobius.gameserver.model.Location;
import com.l2jmobius.gameserver.model.actor.L2Character;
@@ -26,7 +26,7 @@ import ai.npc.AbstractNpcAI;
* Orbis Temple teleport AI.
* @author Mobius
*/
final class OrbisTemple extends AbstractNpcAI
final class OrbisTempleTeleports extends AbstractNpcAI
{
// Zones
private static final int ZONE_ID_1 = 200201;
@@ -43,9 +43,9 @@ final class OrbisTemple extends AbstractNpcAI
private static final Location TELEPORT_LOC_5 = new Location(211137, 50501, -14624);
private static final Location TELEPORT_LOC_6 = new Location(211641, 115547, -12736);
private OrbisTemple()
private OrbisTempleTeleports()
{
super(OrbisTemple.class.getSimpleName(), "ai/npc/Teleports");
super(OrbisTempleTeleports.class.getSimpleName(), "ai/zones/Magmeld");
addEnterZoneId(ZONE_ID_1, ZONE_ID_2, ZONE_ID_3, ZONE_ID_4, ZONE_ID_5, ZONE_ID_6);
}
@@ -93,6 +93,6 @@ final class OrbisTemple extends AbstractNpcAI
public static void main(String[] args)
{
new OrbisTemple();
new OrbisTempleTeleports();
}
}