Skip to content
mmonkey edited this page Jun 7, 2017 · 4 revisions

Configuration can be found in /config/destinations/destinations.conf.

Command Settings

Node Type Default Description
maximumHomes number 0 Maximum number of homes a player can have. 0 is unlimited.
saveBackLocationOnDeath true/false true Do player's locations get saved when they die?
teleportRequestExpiration number 30 Number of seconds before teleport requests expire.

Database Settings

Currently H2 and MySQL databases are supported.

Node Type Default Description
type string H2 Database type.
url string "jdbc:h2:file:.\config\destinations\" JDBC connection string path.
database string destinations Database name.
username string "" Database username.
password string "" Database password.

Example H2 database settings

"Database Settings" {
    database=destinations
    password="password"
    type=H2
    url="jdbc:h2:file:.\\config\\destinations\\"
    username="root"
}

Example MySQL database settings

"Database Settings" {
    database=destinations
    password="password"
    type=MySQL
    url="jdbc:mysql://localhost:3306/"
    username="root"
}

Clone this wiki locally