What's new

V15 Quest Fix 12644 Sholazar Basin

Banni

Verified Member
18
2019
15
Location
Germany
Hey everyone!

This is another Quest Fix for Quest 12644
NPC 28566
The Problem is - Questgiver gives wrong instructions.

Instead of telling you, that you have to throw a orange, he says "Beginning the distillation in 5 seconds."
If you play the game in english, you may not have any issues with this quest. Its a translation Bug!

If you know, what locale code you have, you can replace the english text with the text in your language.
In my case its german so - text_loc3

If you are from france, it would look like that
UPDATE `locales_creature_text` SET `text_loc3`='Gebt eine weitere Orange hinzu! Schnell!' WHERE `entry`=28566 AND `groupid`=1 AND `id`=0;
SELECT `entry`, `groupid`, `id`, `text_loc1`, `text_loc2`, `text_loc3`, `text_loc4`, `text_loc5`, `text_loc6`, `text_loc7`, `text_loc8` FROM `locales_creature_text` WHERE `entry`=28566 AND `groupid`=1 AND `id`=0;
UPDATE .`locales_creature_text` SET `text_loc1`='Add another orange! Quickly!', `text_loc2`='Ajoutez une autre orange! Vite!', `text_loc4`='Add another orange! Quickly!', `text_loc5`='Add another orange! Quickly!', `text_loc6`='Add another orange! Quickly!', `text_loc7`='Add another orange! Quickly!', `text_loc8`='Add another orange! Quickly!' WHERE `entry`=28566 AND `groupid`=1 AND `id`=0;
SELECT `entry`, `groupid`, `id`, `text_loc1`, `text_loc2`, `text_loc3`, `text_loc4`, `text_loc5`, `text_loc6`, `text_loc7`, `text_loc8` FROM `locales_creature_text` WHERE `entry`=28566 AND `groupid`=1 AND `id`=0;
 
Last edited:
  • Like
Reactions: ExO
Top