[Classic] Removed NoblesseTeleport script.
This commit is contained in:
@@ -1,93 +0,0 @@
|
||||
/*
|
||||
* Copyright (C) 2004-2015 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 ai.npc.Teleports.NoblesseTeleport;
|
||||
|
||||
import ai.npc.AbstractNpcAI;
|
||||
|
||||
import com.l2jserver.gameserver.model.actor.L2Npc;
|
||||
import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
|
||||
|
||||
/**
|
||||
* Noblesse teleport AI.<br>
|
||||
* Original Jython script by Ham Wong.
|
||||
* @author Plim
|
||||
*/
|
||||
public final class NoblesseTeleport extends AbstractNpcAI
|
||||
{
|
||||
// Item
|
||||
private static final int OLYMPIAD_TOKEN = 13722;
|
||||
// NPCs
|
||||
private static final int[] NPCs =
|
||||
{
|
||||
30006,
|
||||
30059,
|
||||
30080,
|
||||
30134,
|
||||
30146,
|
||||
30177,
|
||||
30233,
|
||||
30256,
|
||||
30320,
|
||||
30540,
|
||||
30576,
|
||||
30836,
|
||||
30848,
|
||||
30878,
|
||||
30899,
|
||||
31275,
|
||||
31320,
|
||||
31964,
|
||||
32163
|
||||
};
|
||||
|
||||
private NoblesseTeleport()
|
||||
{
|
||||
super(NoblesseTeleport.class.getSimpleName(), "ai/npc/Teleports");
|
||||
addStartNpc(NPCs);
|
||||
addTalkId(NPCs);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String onAdvEvent(String event, L2Npc npc, L2PcInstance player)
|
||||
{
|
||||
if ("teleportWithToken".equals(event))
|
||||
{
|
||||
if (hasQuestItems(player, OLYMPIAD_TOKEN))
|
||||
{
|
||||
npc.showChatWindow(player, 3);
|
||||
}
|
||||
else
|
||||
{
|
||||
return "noble-nopass.htm";
|
||||
}
|
||||
}
|
||||
return super.onAdvEvent(event, npc, player);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String onTalk(L2Npc npc, L2PcInstance player)
|
||||
{
|
||||
return player.isNoble() ? "nobleteleporter.htm" : "nobleteleporter-no.htm";
|
||||
}
|
||||
|
||||
public static void main(String[] args)
|
||||
{
|
||||
new NoblesseTeleport();
|
||||
}
|
||||
}
|
@@ -1,4 +0,0 @@
|
||||
<html><body><br>
|
||||
You do not have any Olympiad Tokens. If you wish to continue, you must pay using Adena.<br>
|
||||
<Button ALIGN=LEFT ICON="RETURN" action="bypass -h npc_%objectId%_Chat 0">Return</Button>
|
||||
</body></html>
|
@@ -1,4 +0,0 @@
|
||||
<html><body><br>
|
||||
Only a Noblesse can use the Noblesse Only Teleport.<br>
|
||||
<Button ALIGN=LEFT ICON="RETURN" action="bypass -h npc_%objectId%_Chat 0">Return</Button>
|
||||
</body></html>
|
@@ -1,8 +0,0 @@
|
||||
<html><body><br>
|
||||
Ah, you're a Noblesse! I can offer you a special service then.<br><br>
|
||||
You may use this Olympiad Token.<br>
|
||||
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest NoblesseTeleport teleportWithToken">Teleport to Hunting Grounds</Button><br>
|
||||
Don't use Olympiad Token.<br>
|
||||
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h npc_%objectId%_Chat 2">Teleport to Hunting Grounds</Button>
|
||||
<Button ALIGN=LEFT ICON="RETURN" action="bypass -h npc_%objectId%_Chat 0">Back</Button>
|
||||
</body></html>
|
Reference in New Issue
Block a user