# Configuration

## ​<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/4/4c/Edit_font_awesome.svg/512px-Edit_font_awesome.svg.png" alt="" data-size="line"> Prefix <a href="#prefix" id="prefix"></a>

You can set a prefix for all plugin messages.

{% code lineNumbers="true" %}

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

{% endcode %}

{% hint style="info" %}
To see the prefix in messages, just use the placeholder <mark style="color:green;">%prefix%</mark>
{% endhint %}

## <img src="https://cdn-icons-png.flaticon.com/512/5650/5650380.png" alt="" data-size="line"> Toggle Examples

You can toggle the examples.

<pre class="language-yaml" data-line-numbers><code class="lang-yaml"># ------------------
# General Settings
Settings:
  prefix: '&#x26;bMBedWarsKits ┃ &#x26;7'
<strong>  # You can decide whether to enable, or disable
</strong><strong>  # the sample kits when starting the plugin.
</strong><strong>  toggle_examples: true
</strong></code></pre>

## <img src="https://cdn-icons-png.flaticon.com/512/31/31623.png" alt="" data-size="line"> Storage

You can choose where the data is saved.

{% code lineNumbers="true" %}

```yaml
# ------------------
# 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
```

{% endcode %}

## <img src="https://cdn-icons-png.flaticon.com/512/1926/1926039.png" alt="" data-size="line"> Kit

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

{% code lineNumbers="true" %}

```yaml
# ------------------
# 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'
```

{% endcode %}
