If you want to receive support we need this info to help you properly.
» Find Revision
L2J Revision 3946:
L2JDP Revision 7087:
How to increase chance?
Nearby to hour tried to paint on different floors WHITE FABRIC.
Quaest 348_ArrogantSearch
Forum rules
READ NOW: L2j Forums Rules of Conduct
READ NOW: L2j Forums Rules of Conduct
- netvirus
- Advanced User
- Posts: 408
- Joined: Sun Aug 02, 2009 3:43 pm
- Location: Russia
- Contact:
Quaest 348_ArrogantSearch
FidoNet - iddqd
- jurchiks
- Posts: 6769
- Joined: Sat Sep 19, 2009 4:16 pm
- Location: Eastern Europe
Re: Quaest 348_ArrogantSearch
are you killing the right mobs?
Platinum Tribe Shamans/Overlords (AFAIK floor 9?)
Platinum Tribe Shamans/Overlords (AFAIK floor 9?)
If you have problems, FIRST TRY SOLVING THEM YOURSELF, and if you get errors, TRY TO ANALYZE THEM, and ONLY if you can't help it, THEN ask here.
Otherwise you will never learn anything if all you do is copy-paste!
Discussion breeds innovation.
Otherwise you will never learn anything if all you do is copy-paste!
Discussion breeds innovation.
- netvirus
- Advanced User
- Posts: 408
- Joined: Sun Aug 02, 2009 3:43 pm
- Location: Russia
- Contact:
Re: Quaest 348_ArrogantSearch
Yes. I many times did this quest.
mobs 100 % the correct.
mobs 100 % the correct.
FidoNet - iddqd
- Notorious
- Posts: 501
- Joined: Thu May 28, 2009 3:50 pm
- Location: Sweden
Re: Quaest 348_ArrogantSearch
Default chance of drop is 1/1000. This patch sets it 1/100:
Code: Select all
Index: data/scripts/quests/348_ArrogantSearch/__init__.py===================================================================--- data/scripts/quests/348_ArrogantSearch/__init__.py (revision 7005)+++ data/scripts/quests/348_ArrogantSearch/__init__.py (working copy)@@ -358,7 +358,7 @@ if npcId in ATTACK_DROPS_24.keys() : cond = ATTACK_DROPS_24[npcId][0] chance = ATTACK_DROPS_24[npcId][3]- if st.getInt("cond") == cond and st.getRandom(1000) < ATTACK_DROPS_24[npcId][3] and st.getQuestItemsCount(ATTACK_DROPS_24[npcId][4]) > 0 : # Attack drops are low chance+ if st.getInt("cond") == cond and st.getRandom(100) < ATTACK_DROPS_24[npcId][3] and st.getQuestItemsCount(ATTACK_DROPS_24[npcId][4]) > 0 : # Attack drops are low chance st.giveItems(ATTACK_DROPS_24[npcId][1],ATTACK_DROPS_24[npcId][2]) st.playSound("ItemSound.quest_itemget") st.takeItems(ATTACK_DROPS_24[npcId][4],1)@@ -368,7 +368,7 @@ elif npcId in ATTACK_DROPS_25.keys() : cond = ATTACK_DROPS_25[npcId][0] chance = ATTACK_DROPS_25[npcId][3]- if st.getInt("cond") == cond and st.getRandom(1000) < ATTACK_DROPS_25[npcId][3] and st.getQuestItemsCount(ATTACK_DROPS_25[npcId][4]) > 0 : # Attack drops are low chance+ if st.getInt("cond") == cond and st.getRandom(100) < ATTACK_DROPS_25[npcId][3] and st.getQuestItemsCount(ATTACK_DROPS_25[npcId][4]) > 0 : # Attack drops are low chance st.giveItems(ATTACK_DROPS_25[npcId][1],ATTACK_DROPS_25[npcId][2]) st.playSound("ItemSound.quest_itemget") st.takeItems(ATTACK_DROPS_25[npcId][4],1)
- netvirus
- Advanced User
- Posts: 408
- Joined: Sun Aug 02, 2009 3:43 pm
- Location: Russia
- Contact:
- Notorious
- Posts: 501
- Joined: Thu May 28, 2009 3:50 pm
- Location: Sweden
Re: Quaest 348_ArrogantSearch
There's nothing wrong with the original quest, it's just hard to get the drops. My patch makes it easier, that's all.
-
- Posts: 1
- Joined: Sat Mar 10, 2007 11:39 am
Re: Quaest 348_ArrogantSearch
For first fabric u must kill shamans at floor 7 .jurchiks wrote:are you killing the right mobs?
Platinum Tribe Shamans/Overlords (AFAIK floor 9?)