Jump to content
  • 0

Question

Posted (edited)

Whenever i want to do my nobless quest i am gettin this error. 

first of all  i am taking the quest at lv 55  with my subclass character from Talien who is standing near of the stairs in Aden with .

after taking the quest He is saying me to meet with Gabrielle in giran town

i am arriving to gabrielle clicking her and whenever i clicked the quest button from the panel i am getting this code

 

i am using L2jFrozen Interlude  Rev 3160

 

 

 

[31/07 06:05:17] Client: [Character: dwarf - Account: rere - IP: 85.32.16.47] - Failed reading: [C] 21 RequestBypassToServer ; org/omg/PortableServer/POAManagerPackage/State
java.lang.NoClassDefFoundError: org/omg/PortableServer/POAManagerPackage/State
        at l2jorion.game.model.actor.instance.L2NpcInstance.showQuestChooseWindow(L2NpcInstance.java:2174)
        at l2jorion.game.model.actor.instance.L2NpcInstance.showQuestWindowGeneral(L2NpcInstance.java:2319)
        at l2jorion.game.model.actor.instance.L2NpcInstance.onBypassFeedback(L2NpcInstance.java:1600)
        at l2jorion.game.network.clientpackets.RequestBypassToServer.runImpl(RequestBypassToServer.java:471)
        at l2jorion.game.network.clientpackets.L2GameClientPacket.run(L2GameClientPacket.java:82)
        at l2jorion.game.network.L2GameClient.run(L2GameClient.java:1142)
        at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130)
        at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:630)
        at java.base/java.lang.Thread.run(Thread.java:832)

java.lang.NoClassDefFoundError: org/omg/PortableServer/POAManagerPackage/State
        at l2jorion.game.model.actor.instance.L2NpcInstance.showQuestChooseWindow(L2NpcInstance.java:2174)
        at l2jorion.game.model.actor.instance.L2NpcInstance.showQuestWindowGeneral(L2NpcInstance.java:2319)
        at l2jorion.game.model.actor.instance.L2NpcInstance.onBypassFeedback(L2NpcInstance.java:1600)
        at l2jorion.game.network.clientpackets.RequestBypassToServer.runImpl(RequestBypassToServer.java:471)
        at l2jorion.game.network.clientpackets.L2GameClientPacket.run(L2GameClientPacket.java:82)
        at l2jorion.game.network.L2GameClient.run(L2GameClient.java:1142)
        at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130)
        at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:630)
        at java.base/java.lang.Thread.run(Thread.java:832)

 

-------------------------------------------------------------------------------------------------------------------------------------------
L2NpcInstance.java:2174

if ((qs == null) || qs.getState().equals(State.ACTIVE))
{
   state = "";
   
}
else if (qs.isStarted() && (qs.getInt("cond") > 0))
{
   state = " (In Progress)";
   

-------------------------------------------------------------------------------------------------------------------------------------------

L2NpcInstance.java:2319

    showQuestChooseWindow(player, options.toArray(new Quest[options.size()]));
}
else if (options.size() == 1)
{
   showQuestWindowSingle(player, options.get(0).getName());
}
else
{
   showQuestWindowSingle(player, "");

 

-------------------------------------------------------------------------------------------------------------------------------------------

 

 

The Quest of Nobbless

 

 

 

# Made by disKret
import sys
from l2jorion.game.model.quest import State
from l2jorion.game.model.quest import QuestState
from l2jorion.game.model.quest.jython import QuestJython as JQuest

qn = "241_PossessorOfAPreciousSoul_1"

#NPC
STEDMIEL = 30692
GABRIELLE = 30753
GILMORE = 30754
KANTABILON = 31042
NOEL = 31272
RAHORAKTI = 31336
TALIEN = 31739
CARADINE = 31740
VIRGIL = 31742
KASSANDRA = 31743
OGMAR = 31744

#QUEST ITEM
LEGEND_OF_SEVENTEEN = 7587
MALRUK_SUCCUBUS_CLAW = 7597
ECHO_CRYSTAL = 7589
POETRY_BOOK = 7588
CRIMSON_MOSS = 7598
RAHORAKTIS_MEDICINE = 7599
LUNARGENT = 6029
HELLFIRE_OIL = 6033
VIRGILS_LETTER = 7677

#CHANCE
#
CRIMSON_MOSS_CHANCE = 5
MALRUK_SUCCUBUS_CLAW_CHANCE = 10

#MOB
BARAHAM = 27113

class Quest (JQuest) :

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

 def onEvent (self,event,st) :
   htmltext = event
   cond = st.getInt("cond")
   if event == "31739-4.htm" :
     if cond == 0 and st.getPlayer().isSubClassActive() :
       st.setState(STARTED)
       st.set("cond","1")
       st.playSound("ItemSound.quest_accept")
   if event == "30753-2.htm" :
     if cond == 1 and st.getPlayer().isSubClassActive() :
       st.set("cond","2")
       st.playSound("ItemSound.quest_middle")
   if event == "30754-2.htm" :
     if cond == 2 and st.getPlayer().isSubClassActive() :
       st.set("cond","3")
       st.playSound("ItemSound.quest_middle")
   if event == "31739-8.htm" :
     if cond == 4 and st.getPlayer().isSubClassActive() :
       st.set("cond","5")
       st.takeItems(LEGEND_OF_SEVENTEEN,1)
       st.playSound("ItemSound.quest_middle")
   if event == "31042-2.htm" :
     if cond == 5 and st.getPlayer().isSubClassActive() :
       st.set("cond","6")
       st.playSound("ItemSound.quest_middle")
   if event == "31042-5.htm" :
     if cond == 7 and st.getPlayer().isSubClassActive() :
       st.set("cond","8")
       st.takeItems(MALRUK_SUCCUBUS_CLAW,10)
       st.giveItems(ECHO_CRYSTAL,1)
       st.playSound("ItemSound.quest_middle")
   if event == "31739-12.htm" :
     if cond == 8 and st.getPlayer().isSubClassActive() :
       st.set("cond","9")
       st.takeItems(ECHO_CRYSTAL,1)
       st.playSound("ItemSound.quest_accept")
   if event == "30692-2.htm" :
     if cond == 9 and st.getPlayer().isSubClassActive() :
       st.set("cond","10")
       st.giveItems(POETRY_BOOK,1)
       st.playSound("ItemSound.quest_accept")
   if event == "31739-15.htm" :
     if cond == 10 and st.getPlayer().isSubClassActive() :
       st.set("cond","11")
       st.takeItems(POETRY_BOOK,1)
       st.playSound("ItemSound.quest_accept")
   if event == "31742-2.htm" :
     if cond == 11 and st.getPlayer().isSubClassActive() :
       st.set("cond","12")
       st.playSound("ItemSound.quest_accept")
   if event == "31744-2.htm" :
     if cond == 12 and st.getPlayer().isSubClassActive() :
       st.set("cond","13")
       st.playSound("ItemSound.quest_accept")
   if event == "31336-2.htm" :
     if cond == 13 and st.getPlayer().isSubClassActive() :
       st.set("cond","14")
       st.playSound("ItemSound.quest_accept")
   if event == "31336-5.htm" :
     if cond == 15 and st.getPlayer().isSubClassActive() :
       st.set("cond","16")
       st.takeItems(CRIMSON_MOSS,5)
       st.giveItems(RAHORAKTIS_MEDICINE,1)
       st.playSound("ItemSound.quest_accept")
   if event == "31743-2.htm" :
     if cond == 16 and st.getPlayer().isSubClassActive() :
       st.set("cond","17")
       st.takeItems(RAHORAKTIS_MEDICINE,1)
       st.playSound("ItemSound.quest_accept")
   if event == "31742-5.htm" :
     if cond == 17 and st.getPlayer().isSubClassActive() :
       st.set("cond","18")
       st.playSound("ItemSound.quest_accept")
   if event == "31740-2.htm" :
     if cond == 18 and st.getPlayer().isSubClassActive() :
       st.set("cond","19")
       st.playSound("ItemSound.quest_accept")
   if event == "31272-2.htm" :
     if cond == 19 and st.getPlayer().isSubClassActive() :
       st.set("cond","20")
       st.playSound("ItemSound.quest_accept")
   if event == "31272-5.htm" :
     if (st.getPlayer().isProcessingRequest() or st.getPlayer().isProcessingTransaction()) :
       st.getPlayer().sendMessage("Another transaction in progress..")
     elif cond == 20 and st.getQuestItemsCount(LUNARGENT) >= 5 and st.getQuestItemsCount(HELLFIRE_OIL) and  st.getPlayer().isSubClassActive() :
       st.takeItems(LUNARGENT,5)
       st.takeItems(HELLFIRE_OIL,1)
       st.set("cond","21")
       st.playSound("ItemSound.quest_accept")
   if event == "31740-5.htm" :
     if cond == 21 and st.getPlayer().isSubClassActive() :
       st.giveItems(VIRGILS_LETTER,1)
       st.addExpAndSp(263043,0)
       st.set("cond","0")
       st.playSound("ItemSound.quest_finish")
       st.setState(COMPLETED)
   return htmltext

 def onTalk (self,npc,player):
   htmltext = "<html><body>You are either not carrying out your quest or don't meet the criteria.</body></html>"
   st = player.getQuestState(qn)
   if not st : return htmltext
   npcId = npc.getNpcId()
   id = st.getState()
   if npcId != TALIEN and id != STARTED : return htmltext
   cond = st.getInt("cond")
   id = st.getState()
   if player.isSubClassActive() :
     if npcId == TALIEN :
       if cond == 0 :
         if id == COMPLETED :
           htmltext = "<html><body>This quest has already been completed.</body></html>"
         elif player.getLevel() < 50 : 
           htmltext = "31739-2.htm"
           st.exitQuest(1)
         elif player.getLevel() >= 50 :
           htmltext = "31739-1.htm"
       elif cond == 1 :
         htmltext = "31739-5.htm"
       elif cond == 4 and st.getQuestItemsCount(LEGEND_OF_SEVENTEEN) == 1 :
         htmltext = "31739-6.htm"
       elif cond == 5 :
         htmltext = "31739-9.htm"
       elif cond == 8 and st.getQuestItemsCount(ECHO_CRYSTAL) == 1 :
         htmltext = "31739-11.htm"
       elif cond == 9 :
         htmltext = "31739-13.htm"
       elif cond == 10 and st.getQuestItemsCount(POETRY_BOOK) == 1 :
         htmltext = "31739-14.htm"
       elif cond == 11 :
         htmltext = "31739-16.htm"
     elif npcId == GABRIELLE :
       if cond == 1 :
         htmltext = "30753-1.htm"
       elif cond == 2 :
         htmltext = "30753-3.htm"
     elif npcId == GILMORE :
       if cond == 2 :
         htmltext = "30754-1.htm"
       elif cond == 3 :
         htmltext = "30754-3.htm"
     elif npcId == KANTABILON :
       if cond == 5 :
         htmltext = "31042-1.htm"
       elif cond == 6 :
         htmltext = "31042-4.htm"
       elif cond == 7 and st.getQuestItemsCount(MALRUK_SUCCUBUS_CLAW) == 10 :
         htmltext = "31042-3.htm"
       elif cond == 8 :
         htmltext = "31042-6.htm"
     elif npcId == STEDMIEL :
       if cond == 9 :
         htmltext = "30692-1.htm"
       elif cond == 10 :
         htmltext = "30692-3.htm"
     elif npcId == VIRGIL :
       if cond == 11 :
         htmltext = "31742-1.htm"
       elif cond == 12 :
         htmltext = "31742-3.htm"
       elif cond == 17 :
         htmltext = "31742-4.htm"
       elif cond == 18 :
         htmltext = "31742-6.htm"
     elif npcId == OGMAR :
       if cond == 12 :
         htmltext = "31744-1.htm"
       elif cond == 13 :
         htmltext = "31744-3.htm"
     elif npcId == RAHORAKTI :
       if cond == 13 :
         htmltext = "31336-1.htm"
       elif cond == 14 :
         htmltext = "31336-4.htm"
       elif cond == 15 and st.getQuestItemsCount(CRIMSON_MOSS) == 5 :
         htmltext = "31336-3.htm"
       elif cond == 16 :
         htmltext = "31336-6.htm"
     elif npcId == KASSANDRA :
       if cond == 16 and st.getQuestItemsCount(RAHORAKTIS_MEDICINE) == 1 :
         htmltext = "31743-1.htm"
       elif cond == 17 :
         htmltext = "31743-3.htm"
     elif npcId == CARADINE :
       if cond == 18 :
         htmltext = "31740-1.htm"
       elif cond == 19 :
         htmltext = "31740-3.htm"
       elif cond == 21 :
         htmltext = "31740-4.htm"
     elif npcId == NOEL :
       if cond == 19 :
         htmltext = "31272-1.htm"
       elif cond == 20 and st.getQuestItemsCount(LUNARGENT) < 5 and not st.getQuestItemsCount(HELLFIRE_OIL) :
         htmltext = "31272-4.htm"
       elif cond == 20 and st.getQuestItemsCount(LUNARGENT) >= 5 and st.getQuestItemsCount(HELLFIRE_OIL) :
         htmltext = "31272-3.htm"
       elif cond == 21 :
         htmltext = "31272-7.htm"
   else :
     htmltext = "31739-2.htm"
   return htmltext

 def onKill(self,npc,player,isPet):
   npcId = npc.getNpcId()
   if npcId == BARAHAM:
     # get a random party member who is doing this quest and is at cond == 3  
     partyMember = self.getRandomPartyMember(player, "3")
     if partyMember :
         st = partyMember.getQuestState(qn)
         st.set("cond","4")
         st.giveItems(LEGEND_OF_SEVENTEEN,1)
         st.playSound("ItemSound.quest_itemget")
   elif npcId in [20244,20245,20283,20284] :
     # get a random party member who is doing this quest and is at cond == 6  
     partyMember = self.getRandomPartyMember(player, "6")
     if partyMember :
         st = partyMember.getQuestState(qn)
         chance = st.getRandom(100)
         if MALRUK_SUCCUBUS_CLAW_CHANCE >= chance and st.getQuestItemsCount(MALRUK_SUCCUBUS_CLAW) < 10 :
           st.giveItems(MALRUK_SUCCUBUS_CLAW,1)
           st.playSound("ItemSound.quest_itemget")
           if st.getQuestItemsCount(MALRUK_SUCCUBUS_CLAW) == 10 :
             st.set("cond","7")
             st.playSound("ItemSound.quest_middle")
   elif npcId in range(21508,21513) :
     # get a random party member who is doing this quest and is at cond == 14  
     partyMember = self.getRandomPartyMember(player, "14")
     if partyMember :
         st = partyMember.getQuestState(qn)
         chance = st.getRandom(100)
         if CRIMSON_MOSS_CHANCE >= chance and st.getQuestItemsCount(CRIMSON_MOSS) < 5 :
           st.giveItems(CRIMSON_MOSS,1)
           st.playSound("ItemSound.quest_itemget")
           if st.getQuestItemsCount(CRIMSON_MOSS) == 5 :
             st.set("cond","15")
             st.playSound("ItemSound.quest_middle")
   return

QUEST       = Quest(241,qn,"Possessor Of A Precious Soul - 1")
CREATED     = State('Start', QUEST)
STARTED     = State('Started', QUEST)
COMPLETED   = State('Completed', QUEST)

QUEST.setInitialState(CREATED)
QUEST.addStartNpc(TALIEN)
QUEST.addTalkId(TALIEN)

QUEST.addTalkId(STEDMIEL)
QUEST.addTalkId(GABRIELLE)
QUEST.addTalkId(GILMORE)
QUEST.addTalkId(KANTABILON)
QUEST.addTalkId(NOEL)
QUEST.addTalkId(RAHORAKTI)
QUEST.addTalkId(CARADINE)
QUEST.addTalkId(VIRGIL)
QUEST.addTalkId(KASSANDRA)
QUEST.addTalkId(OGMAR)

QUEST.addKillId(BARAHAM)
QUEST.addKillId(20244)
QUEST.addKillId(20245)
QUEST.addKillId(20283)
QUEST.addKillId(21508)

QUEST.addKillId(21509)
QUEST.addKillId(21510)
QUEST.addKillId(21511)
QUEST.addKillId(21512)

STARTED.addQuestDrop(BARAHAM,LEGEND_OF_SEVENTEEN,1)
STARTED.addQuestDrop(BARAHAM,MALRUK_SUCCUBUS_CLAW,1)
STARTED.addQuestDrop(BARAHAM,ECHO_CRYSTAL,1)
STARTED.addQuestDrop(BARAHAM,POETRY_BOOK,1)
STARTED.addQuestDrop(BARAHAM,CRIMSON_MOSS,1)
STARTED.addQuestDrop(BARAHAM,RAHORAKTIS_MEDICINE,1)
STARTED.addQuestDrop(BARAHAM,VIRGILS_LETTER,1)

 

 

Edited by sqhizein
Missing Information

1 answer to this question

Recommended Posts

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now


  • Posts

    • UPDATE M63 Introduced the first major Party Logic system: Bots can join and operate under a real-player party leader. Party members: follow the real player, assist the leader in combat, coordinate around the party leader, support party combat instead of behaving purely as independent farmers. Added initial party formation/follow behavior. Added party-aware PvP assisting.   Expanded Party Support / Party Combat behavior: Improved party coordination across different bot classes. Added broader healer/support participation. Expanded combat equipment/ammunition support, including all six arrow grades. Party members became more coordinated in PvP and group combat. Added improved bot reaction to resurrection situations. Added compatible resurrection-answer handling. Refined party formation behavior. Party combat became more persistent when members were attacked. Party members maintain combat participation more reliably instead of immediately dropping engagement.     Major Party Logic expansion:   Changed party travel formation Added temporary main assister leadership: if the real-player leader dies, a random living damage dealer becomes combat leader, other bots assist that damage dealer, if the assister dies, another DD can take over. Added special Bishop/Cardinal real-player leader logic: bots continue following the real player, a damage-dealer bot becomes the party’s combat assister. Added 5-second idle Party Logic: if the real-player leader stops moving/actively controlling combat for 5 seconds, bots can resume autonomous farming around the leader. Temporary main assisters use the bot’s already configured PvP mode instead of a separate Party Logic PvP system. Existing modes remain authoritative: Idle AttackFlagged AttackEveryone Temporary main assister can independently acquire PvP targets according to its configured mode. Other party bots assist that selected combat leader. Made Party Logic target acquisition party-location aware. While operating in a party, autonomous PvE/PvP searches can be centered around the real player’s current location rather than only the bot’s original farming position. Existing bot farmRadius remains the effective acquisition radius. This allows parties to travel away from their original farming areas while continuing to operate dynamically.     Expanded Bishop/Cardinal Party Logic behavior:   Bishop/Cardinal parties now use the same 5-second activity/idle model as normal real-player-led parties. While the Bishop/Cardinal leader is moving or active: bots prioritize staying with the real player, maintain the ~70–100 unit random formation. After the Bishop/Cardinal remains idle for 5 seconds: party bots may return to autonomous farming around the leader. When the Bishop/Cardinal starts moving again: party members transition back to following the leader. PvP remains independent of the PvE idle condition: valid PvP targets can still trigger combat according to each bot’s configured PvP mode.     Optional Hero System: Added a new hero_enabled option for Autobots. Bot creation gained Hero appearance: No / Yes. Existing bots default to hero_enabled = 0. Bots with hero_enabled = 1 spawn with native Lucera Hero status/aura/appearance through Player.setHero(true). Hero weapons configured through the existing Autobots item system can be equipped normally. This is intentionally visual/status Hero only: no Hero skill injection, no automatic native Hero skills, no changes to combat AI or targeting. Hero state can also be changed directly in the database and takes effect after respawning the bot.     DOWNLOAD
    • Throw a free cloudflare SSL cert in there. 😄
    • Nextarget was a LT international clan in Dawn and  Evoke and other servers, playing most in Interlude, so dunno if you try use this name to atrack the players or smth.
    • Server Specs ChapterInterlude Classic EXP / SP Ratex50 Adena Ratex30 Drop Ratex20 Spoil Ratex15 Max Level78 Website https://l2nextarget.com/ Start On Today At 22:00
    • Since last forums fail, I decided to introduce a little website over PTS server holder - just to make basic informations more reachable. You can discover it over http://anothercrappyinterludeserver.com/   Discord channels ACCESS TO SOURCES and SERVER INSTALLATION were also reworked to be easier to handle.
  • Topics

×
×
  • Create New...

Important Information

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