vmangos / core

Progressive Vanilla Core aimed at all versions from 1.2 to 1.12
GNU General Public License v2.0
668 stars 480 forks source link

🐝 [Bug] Cuergo's Gold quest #1340

Open LEO33SoFo opened 3 years ago

LEO33SoFo commented 3 years ago

🐝 Bug report - Quest

For the first issue:

  1. .go object id 142194
  2. Check if the object is hidden.

For the second issue:

  1. .go object id 142194
  2. Successfully interact with Inconspicuous Landmark object and check where the hostile pirates spawn.

For the third issue:

  1. In the database run this query:
    SELECT * FROM `item_loot_template` WHERE `entry` = 9265;
  2. Check if the Cuergo's Gold with Worm item ID is included.

    Also the database table _creature_loottemplate contains references to the Cuergo's Gold with Worm items, checked with:

    SELECT * FROM `creature_loot_template` WHERE `item` = 9361;

    which means the item is droppable from NPCs, which according to Wowhead's article, can only be found in a chest.

Version & Environment

Client Version:

LEO33SoFo commented 3 years ago

For the third issue: is this the solution?

INSERT INTO `item_loot_template` (`entry`, `item`, `ChanceOrQuestChance`) VALUES ('9265', '9361', '9');
DELETE FROM `creature_loot_template` WHERE (`item`='9361');