Hello guys,
How to make a specific creature drop maximum 3 items of type armor and 1 items of type weapons by quality legendary
Thank you!
Hello guys,
How to make a specific creature drop maximum 3 items of type armor and 1 items of type weapons by quality legendary
Thank you!
Good question
use group ID
I dont understand how to use that, I didnt get it from wiki either, if someone can post an example here pls…
How do I create a group only for armors
How do I create a group for weapons
And max items dropped from the armors group to be 3
Max items droped from the weapons group to be 1
How to set chance for each item correctly?
Here is your example. You just have to mod the “100” to set the drop chances that you want.
INSERT INTO reference_loot_template VALUES
(100000, #ArmorItemEntry1, 100, 1, 1, 1, 1),
(100000, #ArmorItemEntry2, 100, 1, 1, 1, 1),
(100000, #ArmorItemEntry3, 100, 1, 1, 1, 1),
(100000, #ArmorItemEntry4, 100, 1, 1, 1, 1),
(100000, #ArmorItemEntry5, 100, 1, 1, 1, 1),
[SIZE=14px](100001, #WeaponItemEntry1, 100, 1, 1, 1, 1),[/SIZE]
[SIZE=14px](100001, #WeaponItemEntry2, 100, 1, 1, 1, 1),[/SIZE]
[SIZE=14px](100001, #WeaponItemEntry3, 100, 1, 1, 1, 1)[/SIZE][SIZE=14px];[/SIZE]
INSERT INTO creature_loot_template VALUES
(#mobEntry, 100000, 100, 1, 0, -100000, 3[SIZE=14px])[/SIZE]
[SIZE=14px](#mobEntry, 100001, 100, 1, 0, -100001, 1);[/SIZE]
[SIZE=14px]UPDATE creature_template SET lootId = #[/SIZE]mobEntry [SIZE=14px]WHERE entry = #[/SIZE]mobEntry[SIZE=14px];[/SIZE]
Thanks a lot!
i’d try it out!
Thanks and where to modify the rate, at reference loot or at the creature_loot ?
equal-chanced reference thus you modify the ammount on the creature, same for the chances
better to have 0 then 100 on the reference
I dont understand…