write this on L2ItemInstance.java
if (Config.ENABLE_TRADE_AUGMENT)
{
return _item.isTradeable();
}
return isAugmented() ? false : _item.isTradeable();
now go to Configs.java
add this on
// Custom
public static boolean ENABLE_TRADE_AUGMENT;
search for this ENABLE_OLYMPIAD = olympSettings.getProperty("EnableOlympiad", true);
and above this add this one so should look like that
+ENABLE_TRADE_AUGMENT = olympSettings.getProperty("EnableTradeAugment", true);
ENABLE_OLYMPIAD = olympSettings.getProperty("EnableOlympiad", true);
in config folder of your gameserver in olympiad config settings add this (* you can add this setting in whatever section you like even olympiad or not. This one is just an example)
+#==============================================
+# Enable Trade Augmention #
+#==============================================
+EnableTradeAugment = True
+
#==============================================
# Olympiad Settings #
#==============================================
EnableOlympiad = true
EnableOlympiadSpectating = true