This community uses essential cookies to function properly. Non-essential cookies and third-party services are used only with your consent. Read our Privacy Policy and We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue..
Question
darknessneo
L2J Revision Number:4406
L2JDP Revision Number:7663
hello,
i need a little help. If anyone maked a quest in l2j.
Here is my request:
I edited the questname-e.dat for add my quest.
I added in my py all codes needed for activate the cond. of the quest, but i dont see him in my quest windows.
I checked the adventure guildsman and my quest are inside with the description. So i dont undestant why he is not on my quest windows.
Here is my code in questname-e :
And my code in py for active the quest and start the cond 1 :
class Quest (JQuest) : def __init__(self,id,name,descr): JQuest.__init__(self,id,name,descr) def onAdvEvent (self,event,npc,player) : try: st = player.getQuestState(QUEST_INFO) except: return eventSplit = event.split(" ") event = eventSplit[0] eventParam1 = eventSplit[1] if event == "gethtml": if eventParam1 == "1": return MainHtmlI(st) elif eventParam1 == "6": st.set("cond","1") st.setState(State.STARTED) st.playSound("ItemSound.quest_accept") if st.getQuestItemsCount(lettere) == 0 : st.giveItems(lettere,1) return MainHtmlqIb(st) def onFirstTalk (self,npc,player): st = player.getQuestState(QUEST_INFO) if not st : st = self.newQuestState(player) npcId = npc.getNpcId() id = st.getState() cond = st.getInt("cond") if id == State.COMPLETED : htmltext = "<html><body>This quest has already been completed.</body></html>" return htmltext elif npcId == templier_door and id == State.CREATED: if st.getQuestItemsCount(99997) < 1 : return MainHtmlntd(st) if player.getLevel() >= 61 : return MainHtmlpv(st) else: htmltext = "<html><body>Quest for Templars level 61 and above.</body></html>"I checked the database, the quest is started and the cond is 1, its ok, but, i dont see the quest on the quest windows with description, reward and the destination loc.
So, any guide or help? Or maybe i need to register my quest in another file what i missed?
2 answers to this question
Recommended Posts