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

BETA: Quests in Java by nonom:

	* Secret Meeting With Ketra Orcs (11)
	* Secret Meeting With Varka Silenos (12)
	* Parcel Delivery (13)
	* Whereabouts of the Archaeologist (14)
	* Sweet Whispers (15)
	* The Coming Darkness (16)
	* Light and Darkness (17)
	* Meeting with the Golden Ram (18)
	* Added SQL update queries for quests that changed it's name.

Review, tests and fixes by me, thanks jurchiks for suggestions for improvements and typos.
parent 18babf72
No related branches found
No related tags found
No related merge requests found
Showing
with 440 additions and 6 deletions
/*
* 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.Q11_SecretMeetingWithKetraOrcs;
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;
/**
* Secret Meeting With Ketra Orcs (11).<br>
* Original Jython script by Emperorc.
* @author nonom
*/
public class Q11_SecretMeetingWithKetraOrcs extends Quest
{
private static final String qn = "11_SecretMeetingWithKetraOrcs";
// NPCs
private static final int CADMON = 31296;
private static final int LEON = 31256;
private static final int WAHKAN = 31371;
// Items
private static final int BOX = 7231;
@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 cond = st.getInt("cond");
switch (event)
{
case "31296-03.html":
st.set("cond", "1");
st.setState(State.STARTED);
st.playSound("ItemSound.quest_accept");
break;
case "31256-02.html":
if (cond == 1)
{
st.set("cond", "2");
st.giveItems(BOX, 1);
st.playSound("ItemSound.quest_middle");
}
break;
case "31371-02.html":
if ((cond == 2) && (st.hasQuestItems(BOX)))
{
st.takeItems(BOX, -1);
st.addExpAndSp(233125, 18142);
st.exitQuest(false);
st.playSound("ItemSound.quest_finish");
}
else
{
htmltext = "31371-03.html";
}
break;
}
return htmltext;
}
@Override
public String onTalk(L2Npc npc, L2PcInstance player)
{
String htmltext = getNoQuestMsg(player);
QuestState st = player.getQuestState(qn);
if (st == null)
{
return htmltext;
}
int cond = st.getInt("cond");
int npcId = npc.getNpcId();
switch (st.getState())
{
case State.COMPLETED:
htmltext = getAlreadyCompletedMsg(player);
break;
case State.CREATED:
if (npcId == CADMON)
{
htmltext = (player.getLevel() >= 74) ? "31296-01.htm" : "31296-02.html";
}
break;
case State.STARTED:
if ((npcId == CADMON) && (cond == 1))
{
htmltext = "31296-04.html";
}
else if (npcId == LEON)
{
if (cond == 1)
{
htmltext = "31256-01.html";
}
else if (cond == 2)
{
htmltext = "31256-03.html";
}
}
else if ((npcId == WAHKAN) && (cond == 2))
{
htmltext = "31371-01.html";
}
break;
}
return htmltext;
}
public Q11_SecretMeetingWithKetraOrcs(int questId, String name, String descr)
{
super(questId, name, descr);
addStartNpc(CADMON);
addTalkId(CADMON, LEON, WAHKAN);
}
public static void main(String[] args)
{
new Q11_SecretMeetingWithKetraOrcs(11, qn, "Secret Meeting With Ketra Orcs");
}
}
......@@ -2,5 +2,5 @@
Did Guard Cadmon send you? All right. I guess you are good enough.<br>
Bear in mind that the Varka Silenos are different from other Silenos. They may look alike, but the Varka Silenos have traditionally been fearless soldiers. They are completely different from other Silenos who are engaged in stock farming. They are very particular about manners. You should try not to offend them.<br>
Okay, here's the task. You need to take this box of supplies to the<font color="LEVEL"> Varka Silenos base</font>. Sounds simple, right? Even a three year old can do this.<br>
<a action="bypass -h Quest 12_SecretMeetingWithVarkaSilenos 31258-02.htm">"All right. Entrust me with the task."</a>
<a action="bypass -h Quest 12_SecretMeetingWithVarkaSilenos 31258-02.html">"All right. Entrust me with the task."</a>
</body></html>
\ No newline at end of file
<html><body>Trader Helmut:<br>
What are you still doing here? Take the box of supplies to <font color="LEVEL">Naran Ashanuk Herald of Varka</font>!
</body></html>
\ No newline at end of file
<html><body>Guard Cadmon:<br>
Are you interested in the Varka Silenos, stranger? Well, if you are, I know an interesting story. They've been hiring mercenaries lately! It's a great opportunity to gain access to their barracks on the pretext of smuggling weapons in!<br>
<a action="bypass -h Quest 12_SecretMeetingWithVarkaSilenos 31296-03.htm">"I'll do it."</a>
<a action="bypass -h Quest 12_SecretMeetingWithVarkaSilenos 31296-03.html">"I'll do it."</a>
</body></html>
\ No newline at end of file
<html><body>Varka's Messenger Naran Ashanuk:<br>
What brings you to this land of the Varka, traveler of Zephyr Winds?<br>
<a action="bypass -h Quest 12_SecretMeetingWithVarkaSilenos 31378-02.htm">"Hand over Helmut's chest of military supplies."</a>
<a action="bypass -h Quest 12_SecretMeetingWithVarkaSilenos 31378-02.html">"Hand over Helmut's chest of military supplies."</a>
</body></html>
\ No newline at end of file
<html><body>Varka's Messenger Naran Ashanuk:<br>
You don't have required items.
</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.Q12_SecretMeetingWithVarkaSilenos;
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;
/**
* Secret Meeting With Varka Silenos (12).<br>
* Original Jython script by Emperorc.
* @author nonom
*/
public class Q12_SecretMeetingWithVarkaSilenos extends Quest
{
private static final String qn = "12_SecretMeetingWithVarkaSilenos";
// NPCs
private static final int CADMON = 31296;
private static final int HELMUT = 31258;
private static final int NARAN = 31378;
// Items
private static final int BOX = 7232;
@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 cond = st.getInt("cond");
switch (event)
{
case "31296-03.html":
st.set("cond", "1");
st.setState(State.STARTED);
st.playSound("ItemSound.quest_accept");
break;
case "31258-02.html":
if (cond == 1)
{
st.set("cond", "2");
st.giveItems(BOX, 1);
st.playSound("ItemSound.quest_middle");
}
break;
case "31378-02.html":
if ((cond == 2) && (st.hasQuestItems(BOX)))
{
st.takeItems(BOX, -1);
st.addExpAndSp(233125, 18142);
st.playSound("ItemSound.quest_finish");
st.exitQuest(false);
}
else
{
htmltext = "31378-03.html";
}
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.COMPLETED:
htmltext = getAlreadyCompletedMsg(player);
break;
case State.CREATED:
if (npcId == CADMON)
{
htmltext = (player.getLevel() >= 74) ? "31296-01.htm" : "31296-02.html";
}
break;
case State.STARTED:
final int cond = st.getInt("cond");
if ((npcId == CADMON) && (cond == 1))
{
htmltext = "31296-04.html";
}
else if (npcId == HELMUT)
{
if (cond == 1)
{
htmltext = "31258-01.html";
}
else if (cond == 2)
{
htmltext = "31258-03.html";
}
}
else if ((npcId == NARAN) && (cond == 2))
{
htmltext = "31378-01.html";
}
break;
}
return htmltext;
}
public Q12_SecretMeetingWithVarkaSilenos(int questId, String name, String descr)
{
super(questId, name, descr);
addStartNpc(CADMON);
addTalkId(CADMON, HELMUT, NARAN);
}
public static void main(String[] args)
{
new Q12_SecretMeetingWithVarkaSilenos(12, qn, "Secret Meeting With Varka Silenos");
}
}
<html><body>Mineral Trader Fundin:<br>
I have an urgent delivery to the Gods' Cauldron area!<br>
Would you deliver it for me?<br>
<a action="bypass -h Quest 13_ParcelDelivery 31274-2.htm">Sure!</a>
<a action="bypass -h Quest 13_ParcelDelivery 31274-02.html">Sure!</a>
</body></html>
\ No newline at end of file
<html><body>Flame Blacksmith Vulcan:<br>
Did Fundin send you? A little late, but at least you didn't break it.<br>
Let me have it.<br>
<a action="bypass -h Quest 13_ParcelDelivery 31539-1.htm">Here.</a>
<a action="bypass -h Quest 13_ParcelDelivery 31539-01.html">Here.</a>
</body></html>
\ No newline at end of file
<html><body>Flame Blacksmith Vulcan:<br>
You don't have required items.
</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.Q13_ParcelDelivery;
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;
/**
* Parcel Delivery (13).<br>
* Original Jython script by Emperorc.
* @author nonom
*/
public class Q13_ParcelDelivery extends Quest
{
private static final String qn = "13_ParcelDelivery";
// NPCs
private static final int FUNDIN = 31274;
private static final int VULCAN = 31539;
// Items
private static final int PACKAGE = 7263;
@Override
public String onAdvEvent(String event, L2Npc npc, L2PcInstance player)
{
String htmltext = event;
final QuestState st = player.getQuestState(qn);
if (st == null)
{
return htmltext;
}
switch (event)
{
case "31274-02.html":
st.set("cond", "1");
st.giveItems(PACKAGE, 1);
st.setState(State.STARTED);
st.playSound("ItemSound.quest_accept");
break;
case "31539-01.html":
if ((st.getInt("cond") == 1) && (st.hasQuestItems(PACKAGE)))
{
st.takeItems(PACKAGE, -1);
st.giveItems(57, 157834);
st.addExpAndSp(589092, 58794);
st.exitQuest(false);
st.playSound("ItemSound.quest_finish");
}
else
{
htmltext = "31539-02.html";
}
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.COMPLETED:
htmltext = getAlreadyCompletedMsg(player);
break;
case State.CREATED:
if (npcId == FUNDIN)
{
htmltext = (player.getLevel() >= 74) ? "31274-00.htm" : "31274-01.html";
}
break;
case State.STARTED:
final int cond = st.getInt("cond");
if (cond == 1)
{
switch (npcId)
{
case FUNDIN:
htmltext = "31274-02.html";
break;
case VULCAN:
htmltext = "31539-00.html";
break;
}
}
break;
}
return htmltext;
}
public Q13_ParcelDelivery(int questId, String name, String descr)
{
super(questId, name, descr);
addStartNpc(FUNDIN);
addTalkId(FUNDIN, VULCAN);
questItemIds = new int[]
{
PACKAGE
};
}
public static void main(String[] args)
{
new Q13_ParcelDelivery(13, qn, "Parcel Delivery");
}
}
<html><body>Trader Liesel:<br>
My friend left home to study archaeology a couple of years ago. His mother was just overcome by disease.<br>
Could you deliver her last letter to him?<br>
<a action="bypass -h Quest 14_WhereaboutsOfTheArchaeologist 31263-2.htm">Yes</a>
<a action="bypass -h Quest 14_WhereaboutsOfTheArchaeologist 31263-02.html">Yes</a>
</body></html>
\ No newline at end of file
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