Skip to content

How to Create a New World on a Hytale Server ​

You can create multiple worlds on your Hytale server. Each world runs independently and can have its own settings.

Available World Types ​

TypeDescription
normalStandard world with natural terrain
flatFlat world without terrain
voidEmpty world without blocks

How to Create a New World via Command ​

  1. Open Server Management
    Open the management panel of your Hytale server.

  2. Enter the Command
    Enter the following command in the console:

    world create <name> [type]
    world create <name> [type]

    Replace <name> with the name of the new world and [type] with the desired world type.

Examples:

world create arena flat
world create survival normal
world create creative void
world create arena flat
world create survival normal
world create creative void

Note

Console commands are entered without /. In-game with admin rights, you need the / (e.g., /world create arena flat).

How to Switch to the New World ​

After creating, you can switch to the world:

world tp <name>
world tp <name>

How to Set the New World as Default ​

To make players automatically spawn in the new world when joining:

world setdefault <name>
world setdefault <name>

Or in the config.json in the root directory:

json
"Defaults": {
  "World": "arena",
  "GameMode": "Adventure"
}
"Defaults": {
  "World": "arena",
  "GameMode": "Adventure"
}

All World Commands ​

CommandDescription
world listShow all worlds
world create <name> [type]Create a new world
world load <name>Load a world
world unload <name>Unload a world
world delete <name>Delete a world (irreversible!)
world tp <name>Teleport to a world
world setdefault <name>Set world as default
world config <setting> <value>Change world setting

Warning

world delete permanently deletes the world. Create a backup first!