Skip to content
Snippets Groups Projects
Commit 71b10fd0 authored by Zoey76's avatar Zoey76
Browse files

BETA: Tired of Waiting (26) quest by corbin12, thanks.

parent fdece441
No related branches found
No related tags found
No related merge requests found
<html><body>Valley Trader Kitzka:<br>
You selected the <font color="LEVEL">Sealed Blood Crystal</font>. Here is is. If you obtain Will of Antharas later, ask the Separated Soul to combine it for you. If you do, you will realize the true value of this item. Good luck!<br>
</body></html>
\ No newline at end of file
/*
* 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 quests.Q26_TiredOfWaiting;
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;
import com.l2jserver.gameserver.model.quest.State;
/**
* Tired Of Waiting (26)
* @author corbin12
*/
public class Q26_TiredOfWaiting extends Quest
{
private static final String qn = "26_TiredOfWaiting";
// NPCs
private static final int ISAEL_SILVERSHADOW = 30655;
private static final int KITZKA = 31045;
// Quest Item - Rewards
private static final int DELIVERY_BOX = 17281;
private static final int WILL_OF_ANTHARAS = 17266;
private static final int LARGE_DRAGON_BONE = 17248;
private static final int SEALED_BLOOD_CRYSTAL = 17267;
@Override
public String onAdvEvent(String event, L2Npc npc, L2PcInstance player)
{
String htmltext = event;
final QuestState st = player.getQuestState(qn);
if (st == null)
{
return htmltext;
}
final int npcId = npc.getNpcId();
switch (npcId)
{
case ISAEL_SILVERSHADOW:
if (event.equalsIgnoreCase("30655-04.html"))
{
st.setState(State.STARTED);
st.set("cond", "1");
st.giveItems(DELIVERY_BOX, 1);
st.playSound("ItemSound.quest_accept");
}
break;
case KITZKA:
if (event.equalsIgnoreCase("31045-04.html"))
{
st.takeItems(DELIVERY_BOX, 1);
}
else if (event.equalsIgnoreCase("31045-10.html"))
{
st.giveItems(LARGE_DRAGON_BONE, 1);
st.playSound("ItemSound.quest_finish");
st.exitQuest(false);
}
else if (event.equalsIgnoreCase("31045-11.html"))
{
st.giveItems(WILL_OF_ANTHARAS, 1);
st.playSound("ItemSound.quest_finish");
st.exitQuest(false);
}
else if (event.equalsIgnoreCase("31045-12.html"))
{
st.giveItems(SEALED_BLOOD_CRYSTAL, 1);
st.playSound("ItemSound.quest_finish");
st.exitQuest(false);
}
break;
}
return htmltext;
}
@Override
public String onTalk(L2Npc npc, L2PcInstance player)
{
String htmltext = getNoQuestMsg(player);
final QuestState st = player.getQuestState(qn);
if (st == null)
{
return htmltext;
}
final int npcId = npc.getNpcId();
switch (st.getState())
{
case State.CREATED:
if (npcId == ISAEL_SILVERSHADOW)
{
htmltext = (player.getLevel() >= 80) ? "30655-01.htm" : "30655-00.html";
}
break;
case State.STARTED:
if (st.getInt("cond") == 1)
{
switch (npcId)
{
case ISAEL_SILVERSHADOW:
htmltext = "30655-07.html";
break;
case KITZKA:
htmltext = (st.hasQuestItems(DELIVERY_BOX)) ? "31045-01.html" : "31045-09.html";
break;
}
}
break;
case State.COMPLETED:
if (npcId == ISAEL_SILVERSHADOW)
{
htmltext = "30655-08.html";
}
break;
}
return htmltext;
}
public Q26_TiredOfWaiting(int questId, String name, String descr)
{
super(questId, name, descr);
addStartNpc(ISAEL_SILVERSHADOW);
addTalkId(ISAEL_SILVERSHADOW, KITZKA);
questItemIds = new int[]
{
DELIVERY_BOX
};
}
public static void main(String[] args)
{
new Q26_TiredOfWaiting(26, qn, "Tired of Waiting");
}
}
......@@ -559,7 +559,12 @@
<!-- Description: Box that Isabel Silvershadow in Hunters Village asks you to deliver. Bring it to Valley Trader Kitzka in Dragon's Valley. -->
<set name="icon" val="icon.etc_jewel_box_i00" />
<set name="material" val="paper" />
<set name="is_tradable" val="false" />
<set name="is_dropable" val="false" />
<set name="is_sellable" val="false" />
<set name="is_depositable" val="false" />
<set name="is_stackable" val="true" />
<set name="is_questitem" val="true" />
</item>
<item id="17282" type="EtcItem" name="2010 Summer Special Pack">
<!-- Description: Dimensional Item Pack. Gift box containing Nevit's Hourglass, Freya's Refreshing Breeze, and Ice Watermelon Hat. Cannot be exchanged or dropped. Can be stored in a private warehouse. -->
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment