Jump to content

rjstjd

Members
  • Posts

    4
  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by rjstjd

  1. public boolean isTradeable() { return isAugmented() ? false : _item.isTradeable(); } change this. public boolean isTradeable() { return isAugmented() ? Config.AUG_ITEM_TRADE : _item.isTradeable(); }
  2. l2jserver/gameserver/model/item/instance/L2ItemInstance.java public boolean isDropable() { return isAugmented() ? Config.AUG_ITEM_DROP : _item.isDropable(); } public boolean isTradeable() { return isAugmented() ? Config.AUG_ITEM_TRADE : _item.isTradeable(); } public boolean isSellable() { return isAugmented() ? Config.AUG_ITEM_SELL : _item.isSellable(); } ------------------------------------------------------------------------------------------ l2jserver/Config.java public static boolean AUG_ITEM_TRADE; public static boolean AUG_ITEM_DROP; public static boolean AUG_ITEM_SELL; AUG_ITEM_TRADE = L2JMods.getBoolean("AugItemTrade", false); AUG_ITEM_DROP = L2JMods.getBoolean("AugItemDrop", false); AUG_ITEM_SELL = L2JMods.getBoolean("AugItemSell", false); ------------------------------------------------------------------------------------------ L2JMods.properties # trade AugItemTrade = True # drop AugItemDrop = True # sell AugItemSell = True
×
×
  • Create New...

Important Information

This community uses essential cookies to function properly. Non-essential cookies and third-party services are used only with your consent. Read our Privacy Policy and We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue..

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock