Jump to content
  • 0

Quest


Question

Posted

kalispera se ola ta members!! Exo to eksis provlima me ena quest!

Pao milao sto npc kai mou leei to gnosto "You dont meet the criteria etc..."

Aniksa sto html kai to init_py alla dn mporo na katalavo pos mporo na to fixaro!

An ksereis kapios as mou pei! to init_py einai etsi:

 

# Created by Gnacik

# 2010-02-16 based on official Franz server

 

import sys

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 = "311_ExpulsionOfEvilSpirits"

 

CHAIREN    = 32655

 

SOUL_CORE = 14881

RAGNA_ORCS_AMULET = 14882

 

DROP_CHANCE = 20

 

MOBS = [22691,22692,22693,22694,22695,22696,22697,22698,22699,22700,22701,22702]

 

 

class Quest (JQuest) :

 

    def __init__(self,id,name,descr):

        JQuest.__init__(self,id,name,descr)

        self.questItemIds = [sOUL_CORE,RAGNA_ORCS_AMULET]

 

    def onExchangeRequest (self,event,st,qty) :

        st.giveItems(int(event),1)

        st.takeItems(RAGNA_ORCS_AMULET,qty)

        st.playSound("ItemSound.quest_finish")

        return "32655-13ok.htm"

 

    def onAdvEvent (self,event,npc,player) :

        htmltext = event

        st = player.getQuestState(qn)

        if not st : return

        if event == "32655-yes.htm" :

            st.set("cond","1")

            st.setState(State.STARTED)

            st.playSound("ItemSound.quest_accept")

        elif event.isdigit() :

            f = st.getQuestItemsCount(RAGNA_ORCS_AMULET)

            if int(event) == 9482 and f >= 488 :                        # Recipe: Sealed Dynasty Breast Plate (60%)

                htmltext = self.onExchangeRequest(event,st,488)

            elif int(event) == 9483 and f >= 305 :                        # Recipe: Sealed Dynasty Gaiter (60%)

                htmltext = self.onExchangeRequest(event,st,305)

            elif int(event) == 9484 and f >= 183 :                        # Recipe: Sealed Dynasty Helmet (60%)

                htmltext = self.onExchangeRequest(event,st,183)

            elif int(event) == 9485 and f >= 122 :                        # Recipe: Sealed Dynasty Gauntlet (60%)

                htmltext = self.onExchangeRequest(event,st,122)

            elif int(event) == 9486 and f >= 122 :                        # Recipe: Sealed Dynasty Boots (60%)

                htmltext = self.onExchangeRequest(event,st,122)

            elif int(event) == 9487 and f >= 366 :                        # Recipe: Sealed Dynasty Leather Armor (60%)

                htmltext = self.onExchangeRequest(event,st,366)

            elif int(event) == 9488 and f >= 229 :                        # Recipe: Sealed Dynasty Leather Leggings (60%)

                htmltext = self.onExchangeRequest(event,st,229)

            elif int(event) == 9489 and f >= 183 :                        # Recipe: Sealed Dynasty Leather Helmet (60%)

                htmltext = self.onExchangeRequest(event,st,183)

            elif int(event) == 9490 and f >= 122 :                        # Recipe: Sealed Dynasty Leather Gloves (60%)

                htmltext = self.onExchangeRequest(event,st,122)

            elif int(event) == 9491 and f >= 122 :                        # Recipe: Sealed Dynasty Leather Boots (60%)

                htmltext = self.onExchangeRequest(event,st,122)

            elif int(event) == 9497 and f >= 129 :                        # Recipe: Sealed Dynasty Shield (60%)

                htmltext = self.onExchangeRequest(event,st,129)

            elif int(event) == 9625 and f >= 667 :                        # Giant's Codex - Oblivion

                htmltext = self.onExchangeRequest(event,st,667)

            elif int(event) == 9626 and f >= 1000 :                        # Giant's Codex - Discipline

                htmltext = self.onExchangeRequest(event,st,1000)

            elif int(event) == 9628 and f >= 24 :                        # Leonard

                htmltext = self.onExchangeRequest(event,st,24)

            elif int(event) == 9629 and f >= 43 :                        # Leonard

                htmltext = self.onExchangeRequest(event,st,43)

            elif int(event) == 9630 and f >= 36 :                        # Adamantine

                htmltext = self.onExchangeRequest(event,st,36)

            else :

                htmltext = "32655-13no.htm"

        elif event == "32655-14.htm" :

            if st.getQuestItemsCount(SOUL_CORE) == 10 :

                # TODO

                # htmltext = "32655-14ok.htm"

                htmltext = ""

            else:

                htmltext = "32655-14no.htm"

        elif event == "32655-quit.htm" :

            st.unset("cond")

            st.exitQuest(1)

            st.playSound("ItemSound.quest_finish")

        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

 

        npcId = npc.getNpcId()

        cond = st.getInt("cond")

 

        if npcId == CHAIREN:

            if cond == 0:

                if player.getLevel() >= 80 :

                    htmltext = "32655-01.htm"

                else :

                    htmltext = "32655-lvl.htm"

                    st.exitQuest(1)

            elif st.getState() == State.STARTED :

                if st.getQuestItemsCount(SOUL_CORE) >= 1 or st.getQuestItemsCount(RAGNA_ORCS_AMULET) >= 1 :

                    htmltext = "32655-12.htm"

                else :

                    htmltext = "32655-10.htm"

        return htmltext

 

    def onKill(self,npc,player,isPet) :

        st = player.getQuestState(qn)

        if not st : return

        if st.getState() != State.STARTED : return

 

        npcId = npc.getNpcId()

        cond = st.getInt("cond")

        if cond == 1 and npcId in MOBS :

            if st.getRandom(100) < DROP_CHANCE :

                st.giveItems(RAGNA_ORCS_AMULET,1)

                st.playSound("ItemSound.quest_itemget")

        return

 

QUEST        = Quest(311,qn,"Expulsion of Evil Spirits")

 

QUEST.addStartNpc(CHAIREN)

QUEST.addTalkId(CHAIREN)

 

for i in MOBS :

    QUEST.addKillId(i)

 

Eno eimai 81lvl kanonika opos thelei to Q na eisai pano 80 ktlp..ti na po opios kserei as voithisei.

L2jserver last revision CT.2.4 epilogue.

 

Eyxaristo!

7 answers to this question

Recommended Posts

  • 0
Posted

kalispera se ola ta members!! Exo to eksis provlima me ena quest!

Pao milao sto npc kai mou leei to gnosto "You dont meet the criteria etc..."

Aniksa sto html kai to init_py alla dn mporo na katalavo pos mporo na to fixaro!

An ksereis kapios as mou pei! to init_py einai etsi:

 

Eno eimai 81lvl kanonika opos thelei to Q na eisai pano 80 ktlp..ti na po opios kserei as voithisei.

L2jserver last revision CT.2.4 epilogue.

 

Eyxaristo!

το init.py ειναι περασμένο στα scripts.cfg?

  • 0
Posted

Ok to fixara mporeis na pareis to q ola komple! to provlima mou omos einai oti o server den exei ta new mobs sta new zones tou epilogue!! Diladi sto den of evil den exei ta lvl 80+ exei ta 40-45...opos oute sto stakato nest ktlp.... Kserei kaneis pos ftiaxnete?? Gracia epilogue last revision l2jserver official

  • 0
Posted

Ok to fixara mporeis na pareis to q ola komple! to provlima mou omos einai oti o server den exei ta new mobs sta new zones tou epilogue!! Diladi sto den of evil den exei ta lvl 80+ exei ta 40-45...opos oute sto stakato nest ktlp.... Kserei kaneis pos ftiaxnete?? Gracia epilogue last revision l2jserver official

Μήπως είναι κάποιο custom pack? Γιατί κι εγώ l2j ep χρησιμοποιώ και είναι όλα τα mobs στην κατάλληλη τοποθεσία τους.
  • 0
Posted

Μήπως είναι κάποιο custom pack? Γιατί κι εγώ l2j ep χρησιμοποιώ και είναι όλα τα mobs στην κατάλληλη τοποθεσία τους.

oxi einai akrivos apo to svn tous compile!

Kai mena exei spawn mobs ekei alla oxi ta lvl 81+...

  • 0
Posted

Σε ποια περιοχή αναφέρεσαι;

 

Se ola ta new epilogue areas! Den of evil,crypts of disgrace,fog ta new mobs Primeval island ta new mobs opos episis kai ta quests tous den litourgoun....opos kai stakato nest exei ta palia mobs oxi ta 81+.

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.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Posts

    • From Salvation onwards I think you need a patched nwindow.dll that allows such modifications, try to see if you get what you need here: https://drive.google.com/drive/u/1/folders/1LLbQFGf8KlR-O0Iv5umfF-pwZgrDh9bd
    • hello everyone! I am wanting to save the files (Ini. - Data - ) of the EP5 Client: Salvation... But they generate the error "corrupt files"... I tried several versions of L2FileEditor without good results. I need help! Thank you!
    • Opening December 6th at 19:00 (GMT +3)! Open Beta Test from November 30th!   https://l2soe.com/   🌟 Introducing L2 Saga of Eternia: A Revolution in Lineage 2 High Five! 🌟   Dear Lineage 2 enthusiasts, Prepare to witness the future of private servers! L2 Saga of Eternia is not just another High Five project—it’s a game-changing experience designed to compete with the giants of the Lineage 2 private server scene. Built for the community, by the community, we’re here to raise the bar in quality, innovation, and longevity. What Sets Us Apart? 💎 No Wipes, Ever Say goodbye to the fear of losing your progress. Our server is built to last and will never close. Stability and consistency are our promises to you. ⚔️ Weekly New Content Our dedicated development team ensures fresh challenges, events, and updates every week. From custom quests to exclusive features, there will always be something exciting to explore. 💰 No Pay-to-Win Skill and strategy matter most here. Enjoy a balanced gameplay environment where your achievements come from effort, not your wallet. 🌍 A Massive Community With 2000+ players expected, join a vibrant and active community of like-minded adventurers ready to conquer the world of Aden. 🏆 Fair and Competitive Gameplay Our systems are designed to promote healthy competition while avoiding abusive mechanics and exploits. 🔧 Professional Development From advanced bug fixes to carefully curated content, we pride ourselves on smooth performance, no lag, and unparalleled server quality. Key Features Chronicle: High Five with unique interface Rate: Dynamic x10 rates Class Balance: Carefully fine-tuned for a fair experience PvP Focused: PvP Ranking & aura display effect for 3 Top PvPers every week Custom Events: Seasonal and permanent events to keep you engaged Additional Features:   Custom Endgame Content: Introduce unique dungeons, raids, or zones unavailable in other servers. Player-Driven Economy: Implement a strong market system and avoid overinflated drops or rewards. Epic Siege Battles: Announce special large-scale sieges and PvP events. Incentives for Streamers and Clans: Attract influencers and big clans to boost server publicity. Roadmap Transparency: Share a public roadmap of planned updates to build trust and excitemen   Here you can read all the features: https://l2soe.com/features   Video preview: Join the Revolution! This is your chance to be part of something legendary. L2 Saga of Eternia is not just a server; it’s a movement to redefine what Lineage 2 can be. Whether you’re a seasoned veteran or a newcomer to the world of Aden, we invite you to experience Lineage 2 at its finest.   Official Launch Date: December 6th 2024 Website: https://l2soe.com/ Facebook: https://www.facebook.com/l2soe Discord: https://discord.com/invite/l2eternia   Let’s build the ultimate Lineage 2 experience together. See you in-game! 🎮
    • That's like a tutorial on how to run l2 on MacOS Xd but good job for the investigation. 
    • small update: dc robe set sold   wts adena 1kk = 1.5$ 
  • Topics

×
×
  • Create New...