What's new

Quest item drop issue

DarknessEndowed

Gold Supporter
MoP Premium
Verified Member
24
2024
2
i noticed a quest item drop issue in regards to some items were not successfully dropping, i looked into the database and came to realize, that the emulation protocol was not reading the database correctly, so i created a hotfix that seems to work.

ONLY INSTALL IF YOUR QUEST ITEMS ARE NOT DROPPING!

The installation is quite easy.
Navigate to your table located in your world DB called: gameobject_loot_template
add this to the query:


UPDATE creature_loot_template
SET ChanceorQuestChance = ABS(ChanceorQuestChance)
WHERE ChanceorQuestChance < 0;

run the query, quest items resolved.
 
Last edited:

DarknessEndowed

Gold Supporter
MoP Premium
Verified Member
24
2024
2
for those of you that used my last upload, with the gameobject_loot_template, it may have broke your db, redownload the database, and export the original gameobject_loot_template to a sql file as replace, then import it into your db, that will fix the issue, sorry for those of you that were errored in this.
 
Top