/* * This program 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. This program 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 silentium.scripts.teleports; import silentium.gameserver.model.actor.L2Npc; import silentium.gameserver.model.actor.instance.L2PcInstance; import silentium.gameserver.model.quest.Quest; import silentium.gameserver.model.quest.QuestState; import silentium.gameserver.scripting.ScriptFile; public class ElrokiTeleporters extends Quest implements ScriptFile { public static void onLoad() { new ElrokiTeleporters(-1, "ElrokiTeleporters", "Elroki Teleporters", "teleports"); } public ElrokiTeleporters(final int scriptId, final String name, final String dname, final String path) { super(scriptId, name, dname, path); addStartNpc(32111, 32112); addTalkId(32111, 32112); } @Override public String onTalk(final L2Npc npc, final L2PcInstance player) { String htmltext = ""; final QuestState st = player.getQuestState(getName()); final int npcId = npc.getNpcId(); if (npcId == 32111) { if (player.isInCombat()) htmltext = "32111-no.htm"; else player.teleToLocation(4990, -1879, -3178); } else if (npcId == 32112) player.teleToLocation(7557, -5513, -3221); st.exitQuest(true); return htmltext; } }