123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230 |
- /*
- * 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 quests.Q00552_OlympiadVeteran;
- import com.l2jserver.gameserver.enums.QuestType;
- import com.l2jserver.gameserver.model.actor.L2Npc;
- import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
- import com.l2jserver.gameserver.model.olympiad.CompetitionType;
- import com.l2jserver.gameserver.model.olympiad.Participant;
- import com.l2jserver.gameserver.model.quest.Quest;
- import com.l2jserver.gameserver.model.quest.QuestState;
- import com.l2jserver.gameserver.model.quest.State;
- /**
- * Olympiad Veteran (552)
- * @author lion
- */
- public class Q00552_OlympiadVeteran extends Quest
- {
- // NPC
- private static final int MANAGER = 31688;
- // Items
- private static final int TEAM_EVENT_CERTIFICATE = 17241;
- private static final int CLASS_FREE_BATTLE_CERTIFICATE = 17242;
- private static final int CLASS_BATTLE_CERTIFICATE = 17243;
- private static final int OLY_CHEST = 17169;
-
- public Q00552_OlympiadVeteran()
- {
- super(552, Q00552_OlympiadVeteran.class.getSimpleName(), "Olympiad Veteran");
- addStartNpc(MANAGER);
- addTalkId(MANAGER);
- registerQuestItems(TEAM_EVENT_CERTIFICATE, CLASS_FREE_BATTLE_CERTIFICATE, CLASS_BATTLE_CERTIFICATE);
- addOlympiadMatchFinishId();
- }
-
- @Override
- public String onAdvEvent(String event, L2Npc npc, L2PcInstance player)
- {
- final QuestState st = getQuestState(player, false);
- if (st == null)
- {
- return getNoQuestMsg(player);
- }
- String htmltext = event;
-
- if (event.equalsIgnoreCase("31688-03.html"))
- {
- st.startQuest();
- }
- else if (event.equalsIgnoreCase("31688-04.html"))
- {
- final long count = st.getQuestItemsCount(TEAM_EVENT_CERTIFICATE) + st.getQuestItemsCount(CLASS_FREE_BATTLE_CERTIFICATE) + st.getQuestItemsCount(CLASS_BATTLE_CERTIFICATE);
-
- if (count > 0)
- {
- st.giveItems(OLY_CHEST, count);
- st.exitQuest(QuestType.DAILY, true);
- }
- else
- {
- htmltext = getNoQuestMsg(player);
- }
- }
- return htmltext;
- }
-
- @Override
- public void onOlympiadMatchFinish(Participant winner, Participant looser, CompetitionType type)
- {
- if (winner != null)
- {
- final L2PcInstance player = winner.getPlayer();
- if (player == null)
- {
- return;
- }
-
- final QuestState st = getQuestState(player, false);
- if ((st != null) && st.isStarted())
- {
- int matches;
- switch (type)
- {
- case CLASSED:
- {
- matches = st.getInt("classed") + 1;
- st.set("classed", String.valueOf(matches));
- if ((matches == 5) && !st.hasQuestItems(CLASS_BATTLE_CERTIFICATE))
- {
- st.giveItems(CLASS_BATTLE_CERTIFICATE, 1);
- }
- break;
- }
- case NON_CLASSED:
- {
- matches = st.getInt("nonclassed") + 1;
- st.set("nonclassed", String.valueOf(matches));
- if ((matches == 5) && !st.hasQuestItems(CLASS_FREE_BATTLE_CERTIFICATE))
- {
- st.giveItems(CLASS_FREE_BATTLE_CERTIFICATE, 1);
- }
- break;
- }
- case TEAMS:
- {
- matches = st.getInt("teams") + 1;
- st.set("teams", String.valueOf(matches));
- if ((matches == 5) && !st.hasQuestItems(TEAM_EVENT_CERTIFICATE))
- {
- st.giveItems(TEAM_EVENT_CERTIFICATE, 1);
- }
- break;
- }
- }
- }
- }
-
- if (looser != null)
- {
- final L2PcInstance player = looser.getPlayer();
- if (player == null)
- {
- return;
- }
- final QuestState st = getQuestState(player, false);
- if ((st != null) && st.isStarted())
- {
- int matches;
- switch (type)
- {
- case CLASSED:
- {
- matches = st.getInt("classed") + 1;
- st.set("classed", String.valueOf(matches));
- if (matches == 5)
- {
- st.giveItems(CLASS_BATTLE_CERTIFICATE, 1);
- }
- break;
- }
- case NON_CLASSED:
- {
- matches = st.getInt("nonclassed") + 1;
- st.set("nonclassed", String.valueOf(matches));
- if (matches == 5)
- {
- st.giveItems(CLASS_FREE_BATTLE_CERTIFICATE, 1);
- }
- break;
- }
- case TEAMS:
- {
- matches = st.getInt("teams") + 1;
- st.set("teams", String.valueOf(matches));
- if (matches == 5)
- {
- st.giveItems(TEAM_EVENT_CERTIFICATE, 1);
- }
- break;
- }
- }
- }
- }
- }
-
- @Override
- public String onTalk(L2Npc npc, L2PcInstance player)
- {
- String htmltext = getNoQuestMsg(player);
- final QuestState st = getQuestState(player, true);
- if (st == null)
- {
- return htmltext;
- }
-
- if ((player.getLevel() < 75) || !player.isNoble())
- {
- htmltext = "31688-00.htm";
- }
- else if (st.isCreated())
- {
- htmltext = "31688-01.htm";
- }
- else if (st.isCompleted())
- {
- if (st.isNowAvailable())
- {
- st.setState(State.CREATED);
- htmltext = (player.getLevel() < 75) || !player.isNoble() ? "31688-00.htm" : "31688-01.htm";
- }
- else
- {
- htmltext = "31688-05.html";
- }
- }
- else if (st.isStarted())
- {
- final long count = st.getQuestItemsCount(TEAM_EVENT_CERTIFICATE) + st.getQuestItemsCount(CLASS_FREE_BATTLE_CERTIFICATE) + st.getQuestItemsCount(CLASS_BATTLE_CERTIFICATE);
-
- if (count == 3)
- {
- htmltext = "31688-04.html";
- st.giveItems(OLY_CHEST, 4);
- st.exitQuest(QuestType.DAILY, true);
- }
- else
- {
- htmltext = "31688-s" + count + ".html";
- }
- }
- return htmltext;
- }
- }
|