raF Posted February 16, 2015 Posted February 16, 2015 (edited) How to make augmented items tradeable? Edit: How to maka augment visible in trade chat? Edited February 16, 2015 by raF
0 SweeTs Posted February 16, 2015 Posted February 16, 2015 ItemInstance.java /** * @return if item is tradable */ public boolean isTradable() { return isAugmented() ? false : _item.isTradable(); }
0 raF Posted February 16, 2015 Author Posted February 16, 2015 ItemInstance.java { return isAugmented() ? false : _item.isTradable(); } I changed false to true and it is working. The problem is that you cant see the augment in the trade chat. I want it to be visible, bcs some luckers can trade augments for items and I want to avoid scams.
0 Tessa Posted February 16, 2015 Posted February 16, 2015 (edited) It's a client side problem, because the augmented items are not tradeable by default on retail. Also don't change false to true but delete it, because it becomes useless: return _item.isTradable(); Edited February 16, 2015 by Tessa
Question
raF
How to make augmented items tradeable?
Edit: How to maka augment visible in trade chat?
Edited by raF5 answers to this question
Recommended Posts