Quest Elikia's Letter (10455) improvements.

Contributed by gigilo1968.
This commit is contained in:
MobiusDev
2016-07-21 19:51:06 +00:00
parent 9d59227c29
commit ba3306f436
16 changed files with 265 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
<html><body>Warp Gate:<br>
(Use this gate to go to the Refugee Camp in Hellbound.)<br>
<Button ALIGN=LEFT ICON="TELEPORT" action="bypass -h Quest WrapGate enter_hellbound">"Here goes."</Button>
</body></html>

View File

@@ -0,0 +1,70 @@
/*
* This file is part of the L2J Mobius project.
*
* 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 ai.areas.Heine;
import com.l2jmobius.gameserver.enums.Movie;
import com.l2jmobius.gameserver.model.Location;
import com.l2jmobius.gameserver.model.actor.L2Npc;
import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance;
import com.l2jmobius.gameserver.model.quest.QuestState;
import ai.AbstractNpcAI;
import quests.Q10455_ElikiasLetter.Q10455_ElikiasLetter;
/**
* Warp Gate AI.
* @author Gigi
*/
public final class WrapGate extends AbstractNpcAI
{
// NPC
private static final int WRAP_GATE = 33900;
// Location
private static final Location TELEPORT_LOC = new Location(-28575, 255984, -2195);
private WrapGate()
{
addStartNpc(WRAP_GATE);
addFirstTalkId(WRAP_GATE);
}
@Override
public String onAdvEvent(String event, L2Npc npc, L2PcInstance player)
{
if ("enter_hellbound".equals(event))
{
final QuestState qs = player.getQuestState(Q10455_ElikiasLetter.class.getSimpleName());
if ((qs != null) && qs.isCond(1))
{
playMovie(player, Movie.SC_HELLBOUND);
}
player.teleToLocation(TELEPORT_LOC);
}
return null;
}
@Override
public String onFirstTalk(L2Npc npc, L2PcInstance player)
{
return "33900.html";
}
public static void main(String[] args)
{
new WrapGate();
}
}