Jump to content

VaGGPD

Members
  • Posts

    65
  • Credits

  • Joined

  • Last visited

  • Feedback

    0%

Posts posted by VaGGPD

  1. Diavase ti leei to error l2jmods sta config.

     

    Kati exeis peiraksh ekei diorthoseto i vale to base config gia na deis an tha sou ksana vgalei to probl.

     

    Nai to ksero oti ekei vgazei error alla to thema to error einai apo java meria i apla apo to config file... Kai to official dld to apiraxto l2jmod arxeio sto config na valo pali to idio error!

     

    Kai nai exo piraksei oti leei to code exo valei!!

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

    oxi einai akrivos apo to svn tous compile!

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

  3. 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

  4. 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!

  5. kalispera se olous!!

    Tha ithela na rotiso kati!! Evala ton parakato kodika ston server mou.

     

    http://maxcheaters.com/forum/index.php?topic=206120.0

     

    Ola komple doulevoun diavazei ta panta xoris errors alla mou leei "Current vote count : 0

    Next vote reward in 5 votes."

     

    Alla o server exei 60 votes!! me liga logia den mou diavazei ta votes apo to hopzone!

    opios kserei kai mporei na me voithisei as postarei!!

     

    Eyxaristo ek ton proteron!

  6. An katalava kala s petaei "your protocol version is different". Katevase allo system kai ksanadokimase.

     

    Ostoso to firewall sou einai enabled?

     

    Sto game server console dn mou leei tpt gia to protocol version !! Sto login tin proti fora pire kanonika ksereis to auto create acc apokei kai pera tpt!! Mporei na ftei to system? Exo ta official Gracia final me patched system.

  7. Kalispera se olous!! xrisimopio to teleyteo version tou ct2.3 apo to svn tou L2jofficial ola kala ola orea alla otan ton anoigo anoigei komple pao na mpo me to client pernaei to login server kai molis eimai gia na mpo sto game server (ekei dld pou leei to name tou server "Bartz" px) patao kollaei ekei kai dn mpainei vgaino pao na ksanampo kai m leei oti to account itan idi mesa:S! Den mporo na katalavo to exei pathei kapios allos h ksereis kapios pos ftiaxnete? Lan to ip etsi 127.0.0.1 klassika einai gia test o server! Eyxaristo!

  8. Kalispera se olous.

     

    Arxika eyxaristo pou mpikate sto kopo na to diavasate!! As poume omos ti psaxno!!

     

    Vrika enan code ayton edo http://maxcheaters.com/forum/index.php?topic=180744.0

     

    leei oti to exei kanei se freya ego thelo na to valo se gracia final! Sigekrimena sto teleyteo rev tou L2jOfficial apo to SVN tous (compiled)

     

    apla epidi eimai akoma newbie sxetika me to java coding mesa sto arxeio pou katevazeis exei kai kapia arxeia diff dn ksero pos ta patcharo!!

     

    Iparxei kapios pou na mporei na me voithisei sxetika me ayto kai 2ron an iparxei kapios dev pou ne mporei na ton valei olo kai sosta enenti xrimaton?(oxi kana trelo poso)

    PS ksero oti iparxei o Elf0Crash sxetika me ayto alla apla dn exo paypal!!!

     

    Eyxaristo ek ton proteron!

  9. Kalispera se olous sas!

     

    Ithela na rotiso sxetika me tous Faction servers kati! Thimame pio palia epeza enan server pou legotane "Fraction Wars"

    kserei kaneis an iparxei kapio pack gve kalo? otan ennoo kalo enoo xoris ola ta bugs p exoun kapia pre configuered packs!

    Eyxaristo ek ton proteron!

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