Jump to content

rjstjd

Members
  • Posts

    4
  • Joined

  • Last visited

  • Feedback

    0%

About rjstjd

Profile Information

  • Current Mood
    Angry
  • Gender
    Male
  • Country
    Korea - South
  • Location
    seoul

Recent Profile Visitors

465 profile views

rjstjd's Achievements

Newbie

Newbie (1/16)

0

Reputation

  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...

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