I have issue in the quest -Audience with the Land Dragon.
It seems that I cannot find one little spawn isseu with Abyssal Jewel guardian amount. Quest it self works fine to the end, exept the amount of those guardians in all Jewel cases.. in stead of 5-6-7 it spawns like 20!
How and where to reduce the amount of guardian spawn?
I browsed through quest .py, but my eye did not catch any line responsible for spawn amount.
The script under its def onAttack has its spawn commands:
def onAttack (self, npc, player, damage, isPet):
st = player.getQuestState(qn)
if st :
npcId = npc.getNpcId()
maxHp = npc.getMaxHp()
nowHp = npc.getCurrentHp()
cond = st.getInt("cond")
if npcId == ABYSS_JEWEL1 :
if cond == 2 and st.getInt("moke")<>1:
if nowHp < maxHp*0.8 and st.getInt("aspawned")<>1 :
for i in range(0,70,7):
st.addSpawn(GUARDIAN1,-81260,75639+i,-3300,180000)
st.addSpawn(GUARDIAN1,-81240,75639+i,-3300,180000)
st.set("aspawned","1")
self.startQuestTimer("Jewel1_Timer1",900000,npc,None)
elif nowHp < maxHp*0.4 and st.getQuestItemsCount(FIRST_FRAGMENT_OF_ABYSS_JEWEL)==0 :
st.giveItems(FIRST_FRAGMENT_OF_ABYSS_JEWEL,1)
st.playSound("ItemSound.quest_itemget")
self.startQuestTimer("Jewel1_Timer2",240000,npc,None)
if nowHp < maxHp*0.1 :
npc.reduceCurrentHp(9999999,npc)
self.cancelQuestTimer("Jewel1_Timer1",npc,None)
self.cancelQuestTimer("Jewel1_Timer2",npc,None)
if npcId == ABYSS_JEWEL2 :
Could not locate anywhere else anything/db/java side.. It should be stated in .py anyway right? May b I'm missing to see which digits are the ones...
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.
To celebrate the update to Chronicle 5 on the Teon server, which will take place at 11th of January, we’ve prepared special bonuses to help new players get started easily in the world of Lineage II!
What’s included?
- Starter gear for a smooth beginning — talk to Miss Queen to receive coupons that can be exchanged for equipment.
- Runes to speed up your character’s progression — usable up to level 49.
- Newbie buffs are now available up to level 39.
- Newbie guides have been added to the towns of Heine, Oren, Giran, and Dion.
Start: January 11 at 09:00 (GMT +1)
End: February 1 at 04:00 (GMT +1)
This offer is available for a limited time, so don’t miss your chance to start with an advantage!
Registration
Download Teon client
Contact us:
>Discord
>Telegram
Question
zilbe333
Hi,
I have issue in the quest -Audience with the Land Dragon.
It seems that I cannot find one little spawn isseu with Abyssal Jewel guardian amount. Quest it self works fine to the end, exept the amount of those guardians in all Jewel cases.. in stead of 5-6-7 it spawns like 20!
How and where to reduce the amount of guardian spawn?
I browsed through quest .py, but my eye did not catch any line responsible for spawn amount.
The script under its def onAttack has its spawn commands:
Could not locate anywhere else anything/db/java side.. It should be stated in .py anyway right? May b I'm missing to see which digits are the ones...
Edited by zilbe3333 answers to this question
Recommended Posts
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.