123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- /*
- * Copyright (C) 2004-2014 L2J DataPack
- *
- * This file is part of L2J DataPack.
- *
- * L2J DataPack is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * L2J DataPack is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * General Public License for more details.
- *
- * 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 instances.SecretArea;
- import com.l2jserver.gameserver.instancemanager.InstanceManager;
- import com.l2jserver.gameserver.model.Location;
- import com.l2jserver.gameserver.model.actor.L2Npc;
- import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
- import com.l2jserver.gameserver.model.entity.Instance;
- import com.l2jserver.gameserver.model.instancezone.InstanceWorld;
- import com.l2jserver.gameserver.model.quest.Quest;
- import com.l2jserver.gameserver.network.SystemMessageId;
- /**
- * Secret Area in the Keucereus Fortress instance zone.
- * @author Gladicek
- */
- public final class SecretArea extends Quest
- {
- private static final int INSTANCE_ID = 117;
- // TODO Unharcode htmls.
- private static final String _ENTER = "<html><head><body>Soldier Ginby:<br>Hurry! Come back before anybody sees you!</body></html>";
- private static final String _EXIT = "<html><head><body>Shilen Priest Lelrikia:<br>Doomed creature, either you obey the power of Shilen or you fight.Regardless of your decision, the shadow of death will not simply fade away...</body></html>";
- private static final int GINBY = 32566;
- private static final int LELRIKIA = 32567;
- private static final int ENTER = 0;
- private static final int EXIT = 1;
- private static final Location[] TELEPORTS =
- {
- new Location(-23758, -8959, -5384),
- new Location(-185057, 242821, 1576)
- };
-
- private SecretArea()
- {
- super(-1, SecretArea.class.getSimpleName(), "instances");
- addStartNpc(GINBY);
- addTalkId(GINBY);
- addTalkId(LELRIKIA);
- }
-
- protected void enterInstance(L2PcInstance player)
- {
- InstanceWorld world = InstanceManager.getInstance().getPlayerWorld(player);
- if (world != null)
- {
- if (world.getInstanceId() != INSTANCE_ID)
- {
- player.sendPacket(SystemMessageId.ALREADY_ENTERED_ANOTHER_INSTANCE_CANT_ENTER);
- return;
- }
- Instance inst = InstanceManager.getInstance().getInstance(world.getInstanceId());
- if (inst != null)
- {
- teleportPlayer(player, TELEPORTS[ENTER], world.getInstanceId());
- }
- }
- else
- {
- final int instanceId = InstanceManager.getInstance().createDynamicInstance("SecretArea.xml");
- world = new InstanceWorld();
- world.setInstanceId(INSTANCE_ID);
- world.setTemplateId(instanceId);
- world.setStatus(0);
- InstanceManager.getInstance().addWorld(world);
-
- world.addAllowed(player.getObjectId());
- teleportPlayer(player, TELEPORTS[ENTER], instanceId);
- }
- }
-
- @Override
- public String onAdvEvent(String event, L2Npc npc, L2PcInstance player)
- {
- String htmltext = getNoQuestMsg(player);
- if ((npc.getId() == GINBY) && event.equalsIgnoreCase("enter"))
- {
- enterInstance(player);
- return _ENTER;
- }
- else if ((npc.getId() == LELRIKIA) && event.equalsIgnoreCase("exit"))
- {
- teleportPlayer(player, TELEPORTS[EXIT], 0);
- return _EXIT;
- }
- return htmltext;
- }
-
- public static void main(String[] args)
- {
- new SecretArea();
- }
- }
|