Jump to content

Starfire868686

Members
  • Posts

    39
  • Credits

  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by Starfire868686

  1. Hello ! I looking for info in questname-e.dat 1 10505 4294967295 a,Jewel of Valakas\0 a, a, 0 0 183664.00000000 -114944.00000000 -3335.00000000 84 0 1 a, 1 1 1 31540 183664.00000000 -114944.00000000 -3335.00000000 a,No record of having completed this quest today\0 a,There is a mysterious jewel that teleports you very close to the Hall of Flames.\0 0 1 7267 0 0 0 187 0 1 21896 1 1 1 2 The marked Green stuff, as far i found 30 is talking island but a found two dwarwen 16, 138. I can find it in the client as a list just in questname-e.dat. in this Quest, the 187 is Forge of the God's, upper level Thx fowardly
  2. Hy there! Anyone can share a list to walker NPC's please? With walk animation. Specially Town NPC's, I'm intrested in. So many just slide on texture while moving. Thank you fowardly
  3. Hello I tried to re implement this quest and got this error . Can anybody help me pls? import sys from com.l2jserver import Config 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 qn = "640_TheZeroHour" #NPC Kahman = 31554 #MONSTERS MONSTERS = range(22105,22112)+range(22113,22120)+[22121] #ITEMS Fang = 8085 REWARDS={ "1":[12 ,4042, 1], "2":[6 ,4043, 1], "3":[6 ,4044, 1], "4":[81 ,1887,10], "5":[33 ,1888, 5], "6":[30 ,1889,10], "7":[150,5550,10], "8":[131,1890,10], "9":[123,1893, 5], } class Quest (JQuest) : def __init__(self,id,name,descr): JQuest.__init__(self,id,name,descr) self.questItemIds = [Fang] def onAdvEvent (self,event,npc, player) : htmltext = event st = player.getQuestState(qn) if not st : return if event == "31554-02.htm" : st.set("cond","1") st.setState(STARTED) st.playSound("ItemSound.quest_accept") elif event == "31554-08.htm" : st.playSound("ItemSound.quest_finish") st.exitQuest(True) elif event in REWARDS.keys() : cost,item,amount = REWARDS[event] if st.getQuestItemsCount(Fang)>=cost : st.takeItems(Fang,cost) st.giveItems(item, amount) htmltext = "31554-09.htm" else : htmltext = "31554-06.htm" return htmltext def onTalk (self, npc, player) : htmltext = "<html><body>You are either not on a quest that involves this NPC, or you don't meet this NPC's minimum quest requirements.</body></html>" st = player.getQuestState(qn) if not st : return htmltext id = st.getState() if id == CREATED : if player.getLevel() >= 66 : st2 = player.getQuestState("109_InSearchOfTheNest") if st2 and st2.getState().getName() == 'Completed' : htmltext = "31554-01.htm" else : htmltext = "31554-00.htm" #todo: missing retail html else : htmltext = "31554-00.htm" elif st.getQuestItemsCount(Fang) >= 1 : htmltext = "31554-04.htm" else : htmltext = "31554-03.htm" return htmltext def onKill(self, npc, player, isPet) : st = player.getQuestState(qn) if not st : return st.giveItems(Fang,int(Config.RATE_QUEST_DROP)) st.playSound("ItemSound.quest_itemget") return QUEST = Quest(640,qn,"The Zero Hour") CREATED = State('Start', QUEST) STARTED = State('Started', QUEST) COMPLETED = State('Completed', QUEST) QUEST.setInitialState(CREATED) QUEST.addStartNpc(Kahman) QUEST.addTalkId(Kahman) for i in MONSTERS : QUEST.addKillId(i)
  4. Can u re share pls? Dead links.
  5. Hello guy's ! Im looking for these files from L2J. I hope someone have them lying around. Thx L2j 6570-6599 Core and L2 10394 DP. The source dont have it. https://web.archive.org/web/20140708071632/http://www.l2jserver.com/nightly/?dir=&download=L2J_Server-6570-unstable.zip Thx fowardly
×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock