⚙️Configuration

Plugin settings

You can set a prefix for all plugin messages.

# ------------------
# General Settings
Settings:
  prefix: '&bMBedWarsKits ┃ &7'

To see the prefix in messages, just use the placeholder %prefix%

You can toggle the examples.

# ------------------
# General Settings
Settings:
  prefix: '&bMBedWarsKits ┃ &7'
  # You can decide whether to enable, or disable
  # the sample kits when starting the plugin.
  toggle_examples: true

You can choose where the data is saved.

# ------------------
# Storage Settings
Storage:
  # Types Available: SQLite, MySQL
  type: SQLite
  mysql:
    database: MBedWarsKits
    hostname: localhost
    port: 3306
    user: root
    password: 'MyPassword'
    advanced:
      customURI: '?useSSL=false&autoReconnect=true'
  pool_settings:
    maximum_pool_size: 10
    minimum_idle: 10
    maximum_lifetime: 1800000
    keepalive_time: 0
    connection_timeout: 5000

You can set the item random, and the automatic kit.

# ------------------
# Kit Settings
Kit:

  # If it is on "true" it automatically selects the kit below. (If you don't have a kit selected)
  select_automatically: false

  # This is the name of the kit to be automatically selected.
  to_select: random

  # These are the random item settings
  random:

    enable: true

    # Item description
    description:
      - '&7Gives you a random kit in game.'

    # Configuring the item in GUI
    item:
        material: ENDER_PEARL
        priority: 0
        name: 'Random Kit'

Last updated