forked from Euphillya/Skyllia
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
72 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
# config file | ||
|
||
### config file of the plugin | ||
|
||
plugins/Skyllia/config.toml | ||
|
||
```toml | ||
config-version = 1 | ||
verbose = false | ||
# Description: Indicates the version of the configuration used. | ||
# Value: 1 | ||
|
||
[island-starter] | ||
|
||
[island-starter.example-schem] | ||
|
||
# Description: Configuration of the startup schema for islands. | ||
# The example-schem key is used to reference this configuration in island.create.default-schem-key. | ||
|
||
[island-starter.example-schem.worlds] | ||
# name: Name of the schematic for the sky-overworld. | ||
# schematic: Path to the schematic 0.schem file. | ||
# height: Height of the island schematic (0) | ||
[island-starter.example-schem.worlds.sky-overworld] | ||
name = "example-schem" | ||
schematic = "./schematics/default.schem" | ||
|
||
[settings] | ||
|
||
[settings.player] | ||
|
||
[settings.player.island] | ||
|
||
[settings.player.island.delete] | ||
clear-inventory = true | ||
clear-enderchest = true | ||
clear-experience = true | ||
|
||
[worlds] | ||
|
||
[worlds.sky-overworld] | ||
environment = "NORMAL" | ||
portal-tp = "sky-overworld" | ||
|
||
[sgbd] | ||
|
||
[sgbd.mariadb] | ||
hostname = "127.0.0.1" | ||
password = "azerty" | ||
database = "sky_folia" | ||
host = "3306" | ||
maxPool = 5 | ||
username = "root" | ||
useSSL = false | ||
timeOut = 500 | ||
|
||
[island] | ||
|
||
[island.create] | ||
default-schem-key = "example-schem" | ||
|
||
[island-types] | ||
|
||
[island-types.example] | ||
size = 50.0 | ||
name = "example" | ||
max-members = 3 | ||
|
||
[config] | ||
max-island = 1_000_000 | ||
|
||
``` |