> For the complete documentation index, see [llms.txt](https://docs.pogmc.net/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.pogmc.net/plugins/ultracollections/understanding-the-config.md).

# Understanding the config

The config is pretty straightforward, there's not much to understand.

***

This is the database configuration. You can have either SQLite or MySQL, use mysql if you want to sync the collections data across servers.

```database:
  type: sqlite # Options: mysql, sqlite
  mysql:
    host: localhost
    port: 3306
    database: your_database_name
    username: your_mysql_username
    password: your_mysql_password
  sqlite:
    path: plugins/UltraCollections/database.db
```

***

This saves the playerdata periodically. If a player leaves the server or if the server stops, the data is saved instantly to make sure its synced on other servers when using mysql.

```
save-data-every: 1200 #time in ticks, 1200 = 60 seconds
```

***

This is pretty self explanatory, if you don't want the plugin to work on a certain world, add them to the `disabled-worlds` list and if you don't want it to work in certain worldguard regions, add those worldguard regions to `disabled-worldguard-regions`

```
disabled-worlds:
  - world_2

disabled-worldguard-regions:
  - village
```
