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

    • Dear friends, right now we are holding a grand competition with a prize fund of more than $ 1000 in our stores https://socnet.store , telegram store: https://socnet.shop and SMM panel: https://socnet.pro There are more than 50 prize places in our competition, each lucky person can take one of the places. Important condition: you must make a purchase at any time before June 1, 2025. The more purchases you make - the more chances you have to win the main prize in the community of $ 300! ➡ Our Online Shop: socnet.store  ➡ Our SMM-Boosting Panel: socnet.pro  ➡ Telegram Shop Bot: socnet.shop  ➡ Telegram Support: https://t.me/solomon_bog  ➡ Telegram Channel: https://t.me/accsforyou_shop  ➡ Discord Support: @AllSocialNetworksShop  ➡ Discord Server: https://discord.gg/y9AStFFsrh  ➡ WhatsApp Support: 79051904467 ➡ WhatsApp Channel: https://whatsapp.com/channel/0029Vau0CMX002TGkD4uHa2n  ➡ Email Support: solomonbog@socnet.store 
    • Dear friends, right now we are holding a grand competition with a prize fund of more than $ 1000 in our stores https://socnet.store , telegram store: https://socnet.shop and SMM panel: https://socnet.pro There are more than 50 prize places in our competition, each lucky person can take one of the places. Important condition: you must make a purchase at any time before June 1, 2025. The more purchases you make - the more chances you have to win the main prize in the community of $ 300! ➡ Our Online Shop: socnet.store  ➡ Our SMM-Boosting Panel: socnet.pro  ➡ Telegram Shop Bot: socnet.shop  ➡ Telegram Support: https://t.me/solomon_bog  ➡ Telegram Channel: https://t.me/accsforyou_shop  ➡ Discord Support: @AllSocialNetworksShop  ➡ Discord Server: https://discord.gg/y9AStFFsrh  ➡ WhatsApp Support: 79051904467 ➡ WhatsApp Channel: https://whatsapp.com/channel/0029Vau0CMX002TGkD4uHa2n  ➡ Email Support: solomonbog@socnet.store 
    • REBORN ETERNAL IL x10 WTS  1gb 8e (a lot in stock) DR set +6 180e Frintezza+6 200e Zaken+6 200e AQ+6 200e You must go first or Pufa middleman service
    • There's many reasons why it would be more NO than YES : Using NCSoft assets is a death wish, they can lawyer any LU3/Unity if they wanted, since it's a plain steal of intellectual property. It's an hobby, as you said it, and it's not specially about money. Money is a way to filter idiots/resellers, nothing more. It's really about trying to replicate old content and optimize it which I find it fun. I just align with the basic idea than an emulator emulates. When you launch Project64 and SuperMario 64, you don't expect to get something more than 120 stars and Bowser boss in the end - which should have been L2J project to begin with Even if I played a lot with TESCS from Morrowind, back in time, it's not enough to handle current engines, and I'm too lazy to learn Unity/Unreal Engine. Moreover, it would mean buying assets. While doing it alone would be a fail, coupling to L2J / L2 community would still be shitty (since the majority is RU/BR) ; people is only about fame/glory/reselling shit on back of others. Opening to others, the project would be leaked day 1, rebranded and resold. MMO genre is basically dead, and that's not a reboot of any game (l2/wow classic :D) which will turn the tide. Regarding L2 or an remastered version of it, you can obviously blatantly copy-cat it (as Propnight did for Dead by daylight).   All frenchies aren't supposed to do Expedition 33 :).
    • 190euro until last month, don't miss it.
  • Topics

×
×
  • 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