• This is a read only backup of the old Emudevs forum. If you want to have anything removed, please message me on Discord: KittyKaev

Question about items

gt0110

Enthusiast
I would like to know how to make those requirements that it seems silly my question but I would like to be helped since I saw that it is not the part of the description of the item
Exp.

s5a152.jpg

s5a152.jpg


If anyone knows help me thanks

trinity core
 
Last edited by a moderator:

slp13at420

Mad Scientist
Are you talking about how it displays the Custom extended costs in the description? if so its in item_template:

40478.png


Code:
[COLOR="#808080"]
REPLACE INTO `item_template` (`entry`, `class`, `subclass`, `name`, `displayid`, `Quality`, `Flags`, `description`) VALUES 
(60010, 2, 8, 'G-force Roar', 35097, 6, 0, '[COLOR="#DAA520"]\r\n|cffFF0000 Required items:\r\n|cffC0C0C0 9 Donate Coupons.|r\r\n|cffC0C0C0 VIP 3.|r[/COLOR]');

[/COLOR]

Or are you talking about how it requires those displayed items? if so then it would be setup in ItemExtendedCost.dbc with a custom entry for the requirements.
 
Last edited:
Top