- 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.
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: