Where can I get the Hellbound Quests and Instances for l2j epilogue??
the quest that you recieve from Hude but it doesn't work right:((
import sys
from java.lang import System
from com.l2jserver import L2DatabaseFactory
from com.l2jserver.gameserver.instancemanager import HellboundManager
from com.l2jserver.gameserver.model.quest import State
from com.l2jserver.gameserver.model.quest import QuestState
from com.l2jserver.gameserver.model.quest.jython import QuestJython as JQuest
HudeNpc = 32298
class Hude (JQuest):
def __init__(self, id, name, descr):
JQuest.__init__(self, id, name, descr)
def onFirstTalk (self, npc, player):
id = npc.getNpcId()
st = player.getQuestState("Hude")
if not st:
st = self.newQuestState(player)
hellboundLevel = HellboundManager.getInstance().getLevel()
if hellboundLevel >= 4 and st.getQuestItemsCount(9850) >= 1 and st.getQuestItemsCount(9851) < 1: return "32298.htm"
if hellboundLevel < 7 and hellboundLevel > 3 and st.getQuestItemsCount(9851) >= 1: return "32298-1.htm"
if hellboundLevel >= 7 and st.getQuestItemsCount(9851) >= 1: return "32298-2.htm"
if hellboundLevel >= 7 and st.getQuestItemsCount(9852) >= 1: return "32298-3.htm"
return "<html><body>Hude:<br>I've never seen them before, but they're dressed in really awful clothes.</body></html>"
def onAdvEvent (self, event, npc, player):
if player:
st = player.getQuestState("Hude")
if event == "scertif":
if st.getQuestItemsCount(10012) < 60 or st.getQuestItemsCount(9676) < 30: return "<html><body>Hude:<br>I do not see them! Do not try to deceive me!</body></html>"
st.takeItems(9676, 30)
st.takeItems(10012, 60)
st.takeItems(9850, 1)
st.giveItems(9851, 1)
return "<html><body>Hude:<br>Remarkably! You pleasantly surprised me.</body></html>"
if event == "pcertif":
if st.getQuestItemsCount(9681) < 56 or st.getQuestItemsCount(9682) < 14: return "<html><body>Hude:<br>I know, whatever you would begin to cheat me, but in behalf of our business relations I think that was better, if you give me proofs...</body></html>"
st.takeItems(9681, 56)
st.takeItems(9682, 14)
st.takeItems(9851, 1)
st.giveItems(9852, 1)
st.giveItems(9994, 1)
return "<html><body>Hude:<br>Fine! With such high-quality materials, as these, I will be able well to begin to work. Take this map which was found by a Caravan's near Hellbound. I hope, it will be useful for you.</body></html>"
QUEST = Hude(-1, "Hude", "custom")
QUEST.addStartNpc(HudeNpc)
QUEST.addTalkId(HudeNpc)
QUEST.addFirstTalkId(HudeNpc)
You can post now and register later.
If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.
Hello. You may encounter the Push item fail error when trying to pick up an item dropped on the ground by a mob.
or
You can throw something out of your inventory and pick it up again, several times.
Probably this is a quantum dependency) I don't understand at what point this happens, sometimes two items one after another experience push item errors, and sometimes I don't have enough thousands of attempts to repeat this trick)
In any case, this is just a visual error and after the relog, the item appears in the inventory. I think first i need to disconnect the extender and check it on a bare server. I still need time to check this, maybe it's not even about the autoloot function.
https://youtu.be/6mcfmdImofE
-----------
In general, I would like to thank our wonderful Emca Eressea for her deep knowledge in programming and reverse engineering. And for the fact that her work is open to everyone, this is very amazing, and incredibly valuable.
Question
paulibvro
Where can I get the Hellbound Quests and Instances for l2j epilogue??
the quest that you recieve from Hude but it doesn't work right:((
It gives me an error when I talk to Hude.
Can anyone help me pls.
2 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.