🌤️ Tutorial: Managing weather on your Hytale server
📋 Introduction
The /weather command allows you to control the weather in the different worlds of your Hytale server.
🔧 Available Commands
1️⃣ Set weather (set)
Syntax:
/weather set <weather> [--options]
Description: Set a forced weather in a world.
Permission: hytale.system.command.weather.set
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
weather | Weather Asset | ✅ Required | The weather to force |
--world <world> | World | ❌ Optional | The world to apply the command to |
Argument Types
- Weather Asset: A reference to a Weather type Asset
- World: Name of the world folder (example:
default)
Example:
/weather set rain
/weather set rain --world default
2️⃣ Get current weather (get)
Syntax:
/weather get [--options]
Description: Get the currently forced weather in a world.
Permission: hytale.system.command.weather.get
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
--world <world> | World | ❌ Optional | The world to apply the command to |
Argument Types
- World: Name of the world folder (example:
default)
Example:
/weather get
/weather get --world default
3️⃣ Reset weather (reset)
Syntax:
/weather reset [--options]
Description: Reset the forced weather in a world to return to default behavior.
Alias: clear
Permission: hytale.system.command.weather.reset
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
--world <world> | World | ❌ Optional | The world to apply the command to |
Argument Types
- World: Name of the world folder (example:
default)
Example:
/weather reset
/weather reset --world default
🔑 Permissions Summary
| Command | Permission |
|---|---|
/weather set | hytale.system.command.weather.set |
/weather get | hytale.system.command.weather.get |
/weather reset | hytale.system.command.weather.reset |
📊 Quick Summary
| Command | Action |
|---|---|
/weather set <weather> | Force weather |
/weather get | View current forced weather |
/weather reset | Reset weather (back to default) |
⚠️ Remarks
- The
--worldparameter allows targeting a specific world - If
--worldis not specified, the command applies to the current world - The
/weather resetcommand can also be written as/weather clear


