123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199 |
- /*
- * 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.Q00278_HomeSecurity;
- import com.l2jserver.gameserver.model.actor.L2Npc;
- import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
- import com.l2jserver.gameserver.model.quest.Quest;
- import com.l2jserver.gameserver.model.quest.QuestState;
- /**
- * Home Security (278)
- * @author malyelfik
- */
- public class Q00278_HomeSecurity extends Quest
- {
- // NPC
- private static final int TUNATUN = 31537;
- private static final int[] MONSTER =
- {
- 18905,
- 18906,
- 18907
- };
- // Item
- private static final int SEL_MAHUM_MANE = 15531;
- // Misc
- private static final int SEL_MAHUM_MANE_COUNT = 300;
-
- public Q00278_HomeSecurity()
- {
- super(278, Q00278_HomeSecurity.class.getSimpleName(), "Home Security");
- addStartNpc(TUNATUN);
- addTalkId(TUNATUN);
- addKillId(MONSTER);
- registerQuestItems(SEL_MAHUM_MANE);
- }
-
- @Override
- public String onAdvEvent(String event, L2Npc npc, L2PcInstance player)
- {
- String htmltext = event;
- final QuestState st = getQuestState(player, false);
- if (st == null)
- {
- return htmltext;
- }
-
- switch (event)
- {
- case "31537-02.htm":
- {
- htmltext = (player.getLevel() >= 82) ? "31537-02.htm" : "31537-03.html";
- break;
- }
- case "31537-04.htm":
- {
- st.startQuest();
- break;
- }
- case "31537-07.html":
- {
- int i0 = getRandom(100);
-
- if (i0 < 10)
- {
- st.giveItems(960, 1);
- }
- else if (i0 < 19)
- {
- st.giveItems(960, 2);
- }
- else if (i0 < 27)
- {
- st.giveItems(960, 3);
- }
- else if (i0 < 34)
- {
- st.giveItems(960, 4);
- }
- else if (i0 < 40)
- {
- st.giveItems(960, 5);
- }
- else if (i0 < 45)
- {
- st.giveItems(960, 6);
- }
- else if (i0 < 49)
- {
- st.giveItems(960, 7);
- }
- else if (i0 < 52)
- {
- st.giveItems(960, 8);
- }
- else if (i0 < 54)
- {
- st.giveItems(960, 9);
- }
- else if (i0 < 55)
- {
- st.giveItems(960, 10);
- }
- else if (i0 < 75)
- {
- st.giveItems(9553, 1);
- }
- else if (i0 < 90)
- {
- st.giveItems(9553, 2);
- }
- else
- {
- st.giveItems(959, 1);
- }
-
- st.exitQuest(true, true);
- htmltext = "31537-07.html";
- break;
- }
- }
- return htmltext;
- }
-
- @Override
- public String onKill(L2Npc npc, L2PcInstance player, boolean isSummon)
- {
- final QuestState st = getRandomPartyMemberState(player, 1, 3, npc);
- if (st != null)
- {
- switch (npc.getId())
- {
- case 18905: // Farm Ravager (Crazy)
- {
- final int itemCount = ((getRandom(1000) < 486) ? getRandom(6) + 1 : getRandom(5) + 1);
- if (st.giveItemRandomly(npc, SEL_MAHUM_MANE, itemCount, SEL_MAHUM_MANE_COUNT, 1.0, true))
- {
- st.setCond(2, true);
- }
- break;
- }
- case 18906: // Farm Bandit
- case 18907: // Beast Devourer
- {
- if (st.giveItemRandomly(npc, SEL_MAHUM_MANE, 1, SEL_MAHUM_MANE_COUNT, 0.85, true))
- {
- st.setCond(2, true);
- }
- break;
- }
- }
- }
- return null;
- }
-
- @Override
- public String onTalk(L2Npc npc, L2PcInstance player)
- {
- String htmltext = getNoQuestMsg(player);
- final QuestState st = getQuestState(player, true);
- if (st == null)
- {
- return htmltext;
- }
-
- if (st.isCreated())
- {
- htmltext = "31537-01.htm";
- }
- else if (st.isStarted())
- {
- if (st.isCond(1) || (getQuestItemsCount(player, SEL_MAHUM_MANE) < SEL_MAHUM_MANE_COUNT))
- {
- htmltext = "31537-06.html";
- }
- else if (st.isCond(2) && (getQuestItemsCount(player, SEL_MAHUM_MANE) >= SEL_MAHUM_MANE_COUNT))
- {
- htmltext = "31537-05.html";
- }
- }
- return htmltext;
- }
- }
|