Skip to content
Snippets Groups Projects
Commit 91777c1b authored by Adry_85's avatar Adry_85
Browse files

BETA: Retail-like quests in Java.

	* '''Silver Haired Shaman''' (366)
	* '''Electrifying Recharge! ''' (367)
Patch by: Adry_85, jurchiks
parent 08240dcf
No related branches found
No related tags found
No related merge requests found
Showing
with 180 additions and 205 deletions
......@@ -503,8 +503,8 @@ quests/Q00362_BardsMandolin/Q00362_BardsMandolin.java
quests/Q00363_SorrowfulSoundOfFlute/Q00363_SorrowfulSoundOfFlute.java
quests/Q00364_JovialAccordion/Q00364_JovialAccordion.java
quests/Q00365_DevilsLegacy/Q00365_DevilsLegacy.java
quests/366_SilverHairedShaman/__init__.py
quests/367_ElectrifyingRecharge/__init__.py
quests/Q00366_SilverHairedShaman/Q00366_SilverHairedShaman.java
quests/Q00367_ElectrifyingRecharge/Q00367_ElectrifyingRecharge.java
quests/Q00368_TrespassingIntoTheHolyGround/Q00368_TrespassingIntoTheHolyGround.java
quests/369_CollectorOfJewels/__init__.py
quests/370_AWisemanSowsSeeds/__init__.py
......
<html><body>Magister Dieter:<br>
Wonderful! Please go to<font color="LEVEL"> Devil's Isle</font>, slay<font color="LEVEL"> Sairon, Sairon's doll and Sairon's puppet</font> and bring back<font color="LEVEL"> Sairon's Silver Hair</font>. You will be amply rewarded.
</body></html>
\ No newline at end of file
<html><body>Magister Dieter:<br>
As I said, you must go to<font color="LEVEL"> Devil's Isle</font>, slay<font color="LEVEL"> Sairon, Sairon's doll and Sairon's puppet</font> and bring back<font color="LEVEL"> Sairon's Silver Hair</font>. You will be amply rewarded.<br>
<a action="bypass -h Quest 366_SilverHairedShaman 30111-6.htm">"I want to quit."</a><br>
<a action="bypass -h Quest 366_SilverHairedShaman 30111-5.htm">"I will continue working for you."</a>
</body></html>
\ No newline at end of file
<html><body>Magister Dieter:<br>
Go to<font color="LEVEL"> Devil's Isle</font>, slay<font color="LEVEL"> Sairon, Sairon's doll and Sairon's puppet</font> and bring back their hair.
</body></html>
\ No newline at end of file
# Silver Haired Shaman - Version 0.1 by DrLecter
import sys
from com.l2jserver.gameserver.model.quest import State
from com.l2jserver.gameserver.model.quest import QuestState
from com.l2jserver.gameserver.model.quest import Quest as JQuest
qn = "366_SilverHairedShaman"
#NPC
DIETER=30111
#Items
HAIR=5874
ADENA=57
#BASE CHANCE FOR DROP
CHANCE = 55
class Quest (JQuest) :
def __init__(self,id,name,descr):
JQuest.__init__(self,id,name,descr)
self.questItemIds = [HAIR]
def onEvent (self,event,st) :
htmltext = event
cond = st.getInt("cond")
if event == "30111-2.htm" and cond == 0 :
st.set("cond","1")
st.setState(State.STARTED)
st.playSound("ItemSound.quest_accept")
elif event == "30111-6.htm" :
st.exitQuest(1)
st.playSound("ItemSound.quest_finish")
return htmltext
def onTalk (self,npc,player):
htmltext = Quest.getNoQuestMsg(player)
st = player.getQuestState(qn)
if not st : return htmltext
npcId = npc.getId()
id = st.getState()
cond=st.getInt("cond")
if cond == 0 :
if player.getLevel() >= 48 :
htmltext = "30111-1.htm"
else:
htmltext = "30111-0.htm"
st.exitQuest(1)
else :
hair=st.getQuestItemsCount(HAIR)
if not hair :
htmltext = "30111-3.htm"
else :
st.giveItems(ADENA,12070+500*hair)
st.takeItems(HAIR,-1)
htmltext = "30111-4.htm"
return htmltext
def onKill(self,npc,player,isPet):
partyMember = self.getRandomPartyMemberState(player,State.STARTED)
if not partyMember : return
st = partyMember.getQuestState(qn)
if self.getRandom(100) < CHANCE + ((npc.getId() - 20985) * 2) :
st.giveItems(HAIR,1)
st.playSound("ItemSound.quest_itemget")
return
QUEST = Quest(366,qn,"Silver Haired Shaman")
QUEST.addStartNpc(DIETER)
QUEST.addTalkId(DIETER)
for mob in range(20986,20989) :
QUEST.addKillId(mob)
\ No newline at end of file
<html><body>Researcher Lorain:<br>
You've done it! Did you feel that amazing sensation?<br>
Don't look at me like that... You know you love it!<br>
<a action="bypass -h Quest 367_ElectrifyingRecharge 30673-07.htm">"I'll do it again!"</a><br>
<a action="bypass -h Quest 367_ElectrifyingRecharge 30673-08.htm">"I've had enough."</a>
</body></html>
\ No newline at end of file
# Electrifying Recharge! - v0.1 by DrLecter
import sys
from com.l2jserver.gameserver.datatables import SkillTable
from com.l2jserver.gameserver.model.quest import State
from com.l2jserver.gameserver.model.quest import QuestState
from com.l2jserver.gameserver.model.quest import Quest as JQuest
qn = "367_ElectrifyingRecharge"
#NPC
LORAIN = 30673
#MOBS
CATHEROK=21035
class Quest (JQuest) :
def __init__(self,id,name,descr):
JQuest.__init__(self,id,name,descr)
self.questItemIds = range(5875,5881)
def onEvent (self,event,st) :
htmltext = event
cond = st.getInt("cond")
lamp = st.getQuestItemsCount(5875)
if event == "30673-03.htm" and cond == 0 and not lamp:
if st.getPlayer().getLevel() >= 37 :
st.set("cond","1")
st.setState(State.STARTED)
st.playSound("ItemSound.quest_accept")
st.giveItems(5875,1)
else :
htmltext = "30673-02.htm"
st.exitQuest(1)
elif event == "30673-08.htm" :
st.playSound("ItemSound.quest_finish")
st.exitQuest(1)
return htmltext
def onTalk (self,npc,player):
htmltext = Quest.getNoQuestMsg(player)
st = player.getQuestState(qn)
if not st : return htmltext
npcId = npc.getId()
id = st.getState()
cond=st.getInt("cond")
relic=st.getQuestItemsCount(5879)
broken=st.getQuestItemsCount(5880)
if cond == 0 :
htmltext = "30673-01.htm"
elif cond == 1 :
if not relic and not broken :
htmltext = "30673-04.htm"
elif broken :
htmltext = "30673-05.htm"
st.takeItems(5880,-1)
st.giveItems(5875,1)
elif cond == 2 and relic :
st.takeItems(5879,-1)
st.giveItems(4553+self.getRandom(12),1)
st.giveItems(5875,1)
st.set("cond","1")
htmltext = "30673-06.htm"
return htmltext
def onAttack (self,npc,player,damage,isPet, skill):
st = player.getQuestState(qn)
if not st : return
if st.getState() != State.STARTED : return
chance=self.getRandom(100)
if chance < 3 :
count = 0
for item in range(5875,5879):
if st.getQuestItemsCount(item) :
count += 1
st.takeItems(item,-1)
if count:
st.giveItems(5880,1)
elif chance < 7 :
for item in range(5875,5879):
if st.getQuestItemsCount(item) :
npc.doCast(SkillTable.getInstance().getInfo(4072,4))
st.takeItems(item,-1)
st.giveItems(item+1,1)
if item < 5878 :
st.playSound("ItemSound.quest_itemget")
elif item == 5878 :
st.playSound("ItemSound.quest_middle")
st.set("cond","2")
break
return
QUEST = Quest(367,qn,"Electrifying Recharge")
QUEST.addStartNpc(LORAIN)
QUEST.addTalkId(LORAIN)
QUEST.addAttackId(CATHEROK)
\ No newline at end of file
<html><body>Magister Dieter:<br>
Have you ever been to<font color="LEVEL"> Devil's Isle</font>? It is the home of the devil Zaken. Of course he is not alone. There are all manner of nasty beasts there with him.<br>
Deep in the interior of the island you will find<font color="LEVEL"> living dolls with silvery hair</font> that seems to be bathed in perpetual moonlight. Their hair intrigues me. I must get my hands on some of that magical stuff! The legendary power of just a few strands... Oh, well. Enough of my ramblings.<br>
Have you ever been to <font color="LEVEL">Devil's Isle</font>? It is the home of the devil Zaken. Of course he is not alone. There are all manner of nasty beasts there with him.<br>
Deep in the interior of the island you will find <font color="LEVEL">living dolls with silvery hair</font> that seems to be bathed in perpetual moonlight. Their hair intrigues me. I must get my hands on some of that magical stuff! The legendary power of just a few strands... Oh, well. Enough of my ramblings.<br>
Will you do it? Will you bring back some of their hair for me? You will be handsomely rewarded!<br>
<a action="bypass -h Quest 366_SilverHairedShaman 30111-2.htm">"I will collect the dolls' hair for you."</a>
</body></html>
\ No newline at end of file
<a action="bypass -h Quest Q00366_SilverHairedShaman 30111-02.htm">"I will collect the dolls' hair for you."</a>
</body></html>
<html><body>Magister Dieter:<br>
Great news. Now, please go to <font color="LEVEL">Devil's Isle</font> and slay <font color="LEVEL">Sairon, Sairon's Doll and Sairon's Puppet</font>. But don't forget to bring back <font color="LEVEL">Sairon's Silver Hair</font>. You will be amply rewarded.
</body></html>
......@@ -2,4 +2,4 @@
Have you ever been to Devil's Isle? It is the home of the devil Zaken. Of course he is not alone. There are all manner of nasty beasts there with him.<br>
Deep in the interior of the island you will find living dolls with silvery hair that seems to be bathed in perpetual moonlight. Their hair intrigues me. I must get my hands on some of that magical stuff! But I am afraid you are not yet up to this task. Come back when you think you have become stronger.<br>
(This quest can only be undertaken by a character of level 48 or higher.)
</body></html>
\ No newline at end of file
</body></html>
......@@ -2,6 +2,6 @@
You have done well! At last, I can...<br>
Ah, yes, your pay. Please bring me some more hair! The more the better!<br>
Please don't tell anyone I'm collecting this stuff...<br>
<a action="bypass -h Quest 366_SilverHairedShaman 30111-6.htm">"I want to quit."</a><br>
<a action="bypass -h Quest 366_SilverHairedShaman 30111-5.htm">"I will continue working for you."</a>
</body></html>
\ No newline at end of file
<a action="bypass -h Quest Q00366_SilverHairedShaman 30111-05.html">"I want to quit."</a><br>
<a action="bypass -h Quest Q00366_SilverHairedShaman 30111-06.html">"I will continue working for you."</a>
</body></html>
<html><body>Magister Dieter:<br>
That's too bad. I was hoping to collect more hair. If you change your mind, please come back and see me.
</body></html>
\ No newline at end of file
</body></html>
<html><body>Magister Dieter:<br>
Go to <font color="LEVEL">Devil's Isle</font>, slay <font color="LEVEL">Sairon, Sairon's doll and Sairon's puppet</font> and bring back their hair.
</body></html>
<html><body>Magister Dieter:<br>
As I said, you must go to <font color="LEVEL">Devil's Isle</font>, slay <font color="LEVEL">Sairon, Sairon's doll and Sairon's puppet</font> and bring back <font color="LEVEL">Sairon's Silver Hair</font>. You will be amply rewarded.<br>
<a action="bypass -h Quest Q00366_SilverHairedShaman 30111-05.html">"I want to quit."</a><br>
<a action="bypass -h Quest Q00366_SilverHairedShaman 30111-06.html">"I will continue working for you."</a>
</body></html>
/*
* Copyright (C) 2004-2013 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.Q00366_SilverHairedShaman;
import java.util.HashMap;
import java.util.Map;
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;
/**
* Silver Haired Shaman (366)
* @author Adry_85, jurchiks
*/
public final class Q00366_SilverHairedShaman extends Quest
{
// NPC
private static final int DIETER = 30111;
// Item
private static final int SAIRONS_SILVER_HAIR = 5874;
// Misc
private static final int MIN_LEVEL = 48;
// Mobs
private static final Map<Integer, Integer> MOBS = new HashMap<>();
static
{
MOBS.put(20986, 80); // saitnn
MOBS.put(20987, 73); // saitnn_doll
MOBS.put(20988, 80); // saitnn_puppet
}
private Q00366_SilverHairedShaman()
{
super(366, Q00366_SilverHairedShaman.class.getSimpleName(), "Silver Haired Shaman");
addStartNpc(DIETER);
addTalkId(DIETER);
addKillId(MOBS.keySet());
registerQuestItems(SAIRONS_SILVER_HAIR);
}
@Override
public boolean checkPartyMember(L2PcInstance member, L2Npc npc)
{
final QuestState qs = member.getQuestState(getName());
return ((qs != null) && qs.isStarted());
}
@Override
public String onAdvEvent(String event, L2Npc npc, L2PcInstance player)
{
final QuestState st = getQuestState(player, false);
if (st == null)
{
return null;
}
String htmltext = null;
switch (event)
{
case "30111-02.htm":
{
st.startQuest();
htmltext = event;
break;
}
case "30111-05.html":
{
st.exitQuest(true, true);
htmltext = event;
break;
}
case "30111-06.html":
{
htmltext = event;
break;
}
}
return htmltext;
}
@Override
public String onKill(L2Npc npc, L2PcInstance player, boolean isSummon)
{
if (getRandom(100) < MOBS.get(npc.getId()))
{
L2PcInstance luckyPlayer = getRandomPartyMember(player, npc);
if (luckyPlayer != null)
{
giveItemRandomly(luckyPlayer, npc, SAIRONS_SILVER_HAIR, 1, 0, 1.0, true);
}
}
return super.onKill(npc, player, isSummon);
}
@Override
public String onTalk(L2Npc npc, L2PcInstance player)
{
final QuestState st = getQuestState(player, true);
String htmltext = getNoQuestMsg(player);
if (st.isCreated())
{
htmltext = (player.getLevel() >= MIN_LEVEL) ? "30111-01.htm" : "30111-03.html";
}
else if (st.isStarted())
{
if (hasQuestItems(player, SAIRONS_SILVER_HAIR))
{
final long itemCount = getQuestItemsCount(player, SAIRONS_SILVER_HAIR);
giveAdena(player, (itemCount * 500) + 29000, true);
takeItems(player, SAIRONS_SILVER_HAIR, -1);
htmltext = "30111-04.html";
}
else
{
htmltext = "30111-07.html";
}
}
return htmltext;
}
public static void main(String args[])
{
new Q00366_SilverHairedShaman();
}
}
<html><body>Researcher Lorain:<br>
By any chance are you headed to the Cruma Tower? I need some help with something. I believe I've discovered the secret source of energy used by the ancient Titans, but I must conduct several more experiments to confirm my findings.<br>
<a action="bypass -h Quest 367_ElectrifyingRecharge 30673-03.htm">"I'll help."</a>
</body></html>
\ No newline at end of file
<a action="bypass -h Quest Q00367_ElectrifyingRecharge 30673-02.htm">"I'll help."</a>
</body></html>
<html><body>Researcher Lorain:<br>
The last time I ventured into the deepest part of the dungeon I encountered a monster they call the catherok. His attack caused my body to start tingling all over, followed by complete paralysis! Luckily, my colleagues saved me from certain death! When I gathered my wits, I noticed that an ancient relic had been activated. It gave off an amazing light... At that moment, it came to me! The sting of the catherok contained a power source that actually activated ancient relics!<br>
Take this relic and entice a catherok to attack. It will become activated. When it reaches its brightest, bring it back to me. Heed my words, you must never confront the catherok alone.
</body></html>
\ No newline at end of file
</body></html>
<html><body>Researcher Lorain:<br>
I can't bring myself to sacrifice your life for the sake of my research. Come back when you're older.<br>
(This quest may only be undertaken by a character of level 37 or above.)</body></html>
\ No newline at end of file
(This quest may only be undertaken by a character of level 37 or above.)
</body></html>
<html><body>Researcher Lorain:<br>
This relic could use a little more exposure to the catherok. It is not yet useful for my research. Please do it again.<br>
<a action="bypass -h Quest 367_ElectrifyingRecharge 30673-09.htm">"Okay, I'll continue."</a><br>
<a action="bypass -h Quest 367_ElectrifyingRecharge 30673-08.htm">"I want to quit."</a>
</body></html>
\ No newline at end of file
<a action="bypass -h Quest Q00367_ElectrifyingRecharge 30673-05.html">"Okay, I'll continue."</a><br>
<a action="bypass -h Quest Q00367_ElectrifyingRecharge 30673-06.html">"I want to quit."</a>
</body></html>
<html><body>Researcher Lorain:<br>
Keep up the good work.
</body></html>
\ No newline at end of file
</body></html>
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