Quaest 348_ArrogantSearch

Support for the latest build of L2J Server, get help here with installations, upgrades, problems.
Do not post bugs reports here, use viewforum.php?f=77 instead.
There is no support for other server builds than the official provided by l2jserver.com
Forum rules
READ NOW: L2j Forums Rules of Conduct
Post Reply
User avatar
netvirus
Advanced User
Advanced User
Posts: 408
Joined: Sun Aug 02, 2009 3:43 pm
Location: Russia
Contact:

Quaest 348_ArrogantSearch

Post by netvirus »

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.
FidoNet - iddqd
User avatar
jurchiks
Posts: 6769
Joined: Sat Sep 19, 2009 4:16 pm
Location: Eastern Europe

Re: Quaest 348_ArrogantSearch

Post by jurchiks »

are you killing the right mobs?
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.
User avatar
netvirus
Advanced User
Advanced User
Posts: 408
Joined: Sun Aug 02, 2009 3:43 pm
Location: Russia
Contact:

Re: Quaest 348_ArrogantSearch

Post by netvirus »

Yes. I many times did this quest.
mobs 100 % the correct.
FidoNet - iddqd
User avatar
Notorious
Posts: 501
Joined: Thu May 28, 2009 3:50 pm
Location: Sweden

Re: Quaest 348_ArrogantSearch

Post by Notorious »

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) 
User avatar
netvirus
Advanced User
Advanced User
Posts: 408
Joined: Sun Aug 02, 2009 3:43 pm
Location: Russia
Contact:

Re: Quaest 348_ArrogantSearch

Post by netvirus »

If it correctly that add it on svn
FidoNet - iddqd
User avatar
Notorious
Posts: 501
Joined: Thu May 28, 2009 3:50 pm
Location: Sweden

Re: Quaest 348_ArrogantSearch

Post by Notorious »

There's nothing wrong with the original quest, it's just hard to get the drops. My patch makes it easier, that's all.
aytter
Posts: 1
Joined: Sat Mar 10, 2007 11:39 am

Re: Quaest 348_ArrogantSearch

Post by aytter »

jurchiks wrote:are you killing the right mobs?
Platinum Tribe Shamans/Overlords (AFAIK floor 9?)
For first fabric u must kill shamans at floor 7 .
Post Reply