/*
* 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://l2j.ru/>.
*/
package silentium.scripts.vmasters;
import silentium.gameserver.model.actor.L2Npc;
import silentium.gameserver.model.actor.instance.L2PcInstance;
import silentium.gameserver.model.quest.Quest;
import silentium.gameserver.scripting.ScriptFile;
public final class Bitz extends Quest implements ScriptFile {
// Quest NPCs
private static final int BITZ = 30026;
public Bitz(final int scriptId, final String name, final String dname, final String path) {
super(scriptId, name, dname, path);
addStartNpc(BITZ);
addTalkId(BITZ);
}
public static void onLoad() {
new Bitz(-1, "Bitz", "Bitz", "vmasters");
}
@Override
public String onAdvEvent(final String event, final L2Npc npc, final L2PcInstance player) {
return event.contains("-01") || event.contains("-02") || event.contains("-03") || event.contains("-04") || event.contains("-05") || event.contains("-06") || event.contains("-07") ? event : null;
}
@Override
public String onTalk(final L2Npc npc, final L2PcInstance talker) {
switch (talker.getClassId()) {
case fighter:
return "30026-01.htm";
case warrior:
case knight:
case rogue:
return "30026-08.htm";
case warlord:
case paladin:
case treasureHunter:
case adventurer:
case hellKnight:
case dreadnought:
return "30026-09.htm";
case gladiator:
case darkAvenger:
case hawkeye:
case sagittarius:
case phoenixKnight:
case duelist:
return "30026-09.htm";
default:
return "30026-10.htm";
}
}
}