Jump to content
  • 0

Tradeable Augmented Items For Acis.


Question

Posted (edited)

How to make augmented items tradeable?

 

Edit: How to maka augment visible in trade chat?

Edited by raF

5 answers to this question

Recommended Posts

  • 0
Posted

ItemInstance.java

 

 

/**
     * @return if item is tradable
     */
    public boolean isTradable()
    {
        return isAugmented() ? false : _item.isTradable();
    }
  • 0
Posted

 

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
Posted (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 by Tessa
Guest
This topic is now closed to further replies.


×
×
  • Create New...