Skip to content

Commit

Permalink
Create 3.Plugins configuration.md
Browse files Browse the repository at this point in the history
  • Loading branch information
haha252 authored Feb 10, 2024
1 parent 3a8d8c3 commit a2007f2
Showing 1 changed file with 72 additions and 0 deletions.
72 changes: 72 additions & 0 deletions wiki/En_EN/3.Plugins configuration.md
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

```

0 comments on commit a2007f2

Please sign in to comment.