item_trade.txt 751 B

12345678910111213141516171819202122
  1. // Item Trade Restrictions Database
  2. // Defines special trade rules for individual items.
  3. //
  4. // Structure of Database:
  5. // Item ID, TradeMask,Group Level Override
  6. //
  7. // Legend for 'TradeMask' field (bitmask):
  8. // 1 - item can't be dropped
  9. // 2 - item can't be traded (nor vended)
  10. // 4 - wedded partner can override restriction 2
  11. // 8 - item can't be sold to npcs
  12. // 16 - item can't be placed in the cart
  13. // 32 - item can't be placed in the storage
  14. // 64 - item can't be placed in the guild storage
  15. // 128 - item can't be attached to mail
  16. // 256 - item can't be auctioned
  17. //
  18. // Example:
  19. // 1161,67,50
  20. // Balmung cannot be dropped, traded, or placed in Guild Storage (1+2+64).
  21. // Only groups of group-level 50 and up can override this setting.