What's new

Quest 12176 - A minor substitution

sputnik1

Gold Supporter
Silver Supporter
MoP Premium
Senior User
206
2017
12
No drops of Grizzly Hide from the bears (doesn't even show when you mouse over that it is possible), despite showing the right location on map.
 

mastermind

Silver Supporter
Senior User
188
2017
13
Location
PA, USA
I see the item is in the creature_loot_template for two creatures the the chances are 12% and 1%. This is on the VIP version 7.0.2. Not sure about prior versions.

Grizzly Bear = 12%
Ursus Mauler = 1%

Code:
"entry"	"item"	"ChanceOrQuestChance"	"lootmode"	"groupid"	"mincountOrRef"	"maxcount"
"26644"	"37020"	"-1"	"1"	"0"	"1"	"1"
"27131"	"37020"	"-12"	"1"	"0"	"1"	"1"
 

ExO

Admin
5,119
2014
1,639
Seems like too low drop chance. Will check some databases to see what it should be.

About it not showing as quest loot - for those who wish to learn:

In creature_template there is a field called questitem1, questitem2 etc. In here we simply add the quest item, and delete cache and it will display :)
 

mastermind

Silver Supporter
Senior User
188
2017
13
Location
PA, USA
wowhead list 14% from Grizzly Bear (27131) and 1% from Ursus Mauler (26644)

wowdb list 20% from the Grizzly Bear (27131)

wow-freakz list 100% from both Grizzly Bear (27131) and Ursus Mauler (26644)

Not sure which is correct. I agree the first two sites seem a bit low.
 

mastermind

Silver Supporter
Senior User
188
2017
13
Location
PA, USA
20% sound more realistic that 12% or 1%.
The following will set the quest item's drop chance to %20 on both NPCs.

Code:
-- -------------------------------------------------------------------------------------------------------
-- Repack version:               7.0.2
-- QuestID 12176: A minor substitution  - adjusts drop chance for quest item.
-- -------------------------------------------------------------------------------------------------------
UPDATE `creature_loot_template` SET `ChanceOrQuestChance` = -20 WHERE `entry` IN (26644, 27131) AND `item` = 37020
 
Top