Setting Config

In this page, you can get help for config.yml file.

Config Configurating

# I don't add messages, don't copy and paste here.
config:
  default:
    main:
      flags: # Item flags for main menu items. (Includes every item in main menu)
        - HIDE_ENCHANTS
        - HIDE_ATTRIBUTES
    buyOrder: 1600 # Maximum item amount per buy order creation.
    sellOffer: 1600 # Maximum item amount per sell order creation.
    economy:
      type: "vault" # Economy type. (vault or yaml)
      yaml: # You can edit yaml settings. (You can use %player% and %uuid% in every setting)
        folder: "plugins/YAMLEconomy/players" # Money file's folder. (Start with plugins)
        file: "%uuid%.yml" # Money file name.
        node: money.total # File's node. (Like players -> NAME -> money)
    input: # Input setting for custom buy, sell, buy order, sell offer etc.
      type: "sign" # Input menu type, I prefer anvil for better performance. (sign or anvil)
      sign:
        lines: # Lines for sign, don't use color codes.
          - ""
          - "^^^^^^^^^^"
          - "Write"
          - "number"
    category: "mining" # Default category name.
    mode: "direct" # Default mode name.
    sellNormalItems: true # Enable this if you want to sell default Minecraft items. (Not bought from Bazaar)
    settings:
      order: true # Enable or disable orders.
      sellAll: true # Enable or disable sell all.
      sellItems: true # Enable or disable sell items.

      items:
        enabled: true # Enable if you want to see prices are changing.
        reload: 60 # Item & Amount reloading time in minutes.

  permissions: # Permissions for commands. Set to "" for disabling.
    command: "bazaar.command" # Main command permission.
    reload: "bazaar.reload" # Reload command permission.
    open: "bazaar.open" # Menu command permission.
    buy: "bazaar.buy" # Buy command permission. (Menu uses commands for buying.)
    sell: "bazaar.sell" # Sell command permission. (Menu uses commands for selling.)

Number Configurating

number: # Number Format for prices. (Counts not includes.)
  decimal: # 10,02 etc.
    enabled: true
    minimumFraction: 0
    maximumFraction: 2
  short: # 10k, 25M, 1T etc.
    enabled: false
    thousand: "k" # 1,000 to 1k
    million: "M" # 1,000,000 to 1M
    billion: "G" # 1,000,000,000 to 1G
    trillion: "T" # 1,000,000,000,000 to 1T
    quadrillion: "Q" # 1,000,000,000,000,000 to 1Q
    quintillion: "E" # 1,000,000,000,000,000,000 to 1E

Last updated