Hi
I made an SQL fix trying to solve thie issue https://github.com/TrinityCore/TrinityCore/issues/1843
I was able to turn NPC Old Crystalbark attackable, and I also added the correct loot, but I’m not sure about the values ChanceOrQuestChance in creature_template
If anyone could see it, and explain to me if I did something wrong, I would apreciate it
Thank you
TC rev: bdc75eb856cd07f11caa
DB: TDB 335.11.40
SQL:
[CODE]
– Turning Old Crystalbark attackable
UPDATE creature_template SET faction_A=103,faction_H=103 WHERE entry=32357;
INSERT INTO creature_loot_template (entry,item,ChanceOrQuestChance,lootmode,groupid,mincountOrRef,maxcount) VALUES
(32357,44663,1,1,1,1,1),
(32357,44649,1,1,1,1,1);[/CODE]
Edit: values for loot items are here http://www.wowhead.com/npc=32357#drops
I just don’t know how to correctly add them into ChanceOrQuestChance