World Manager

World Manager

Manage world time, weather, and warp points — all from the browser.


World Information

The world page displays current state via GET /world:

Metric Description
Time Current in-game time (day/night cycle)
Weather Current weather condition
Seed World generation seed

Requires the hytale-admin.world-read permission.


Set World Time

Detail Value
Permission hytale-admin.world-manage
API POST /world/time
Success "World time set"
Failure "Failed to set world time"
Logged as server:hytale-admin.set-world-time

Set World Weather

Detail Value
Permission hytale-admin.world-manage
API POST /world/weather
Success "World weather set"
Failure "Failed to set world weather"
Logged as server:hytale-admin.set-world-weather

Warp System

Warps are named teleport points that can be used to quickly move players to specific locations.

Create Warp

Detail Value
Permission hytale-admin.world-manage
API POST /warps
Body { "name": string, "x": float, "y": float, "z": float }
Success "Warp created: {name}"
Failure "Failed to create warp"
Logged as server:hytale-admin.create-warp

Delete Warp

Detail Value
Permission hytale-admin.world-manage
API DELETE /warps/{name}
Success "Warp deleted: {name}"
Failure "Failed to delete warp"
Logged as server:hytale-admin.delete-warp

Teleport Player to Warp

Detail Value
Permission hytale-admin.world-manage
API POST /warps/{name}/teleport/{player}
Success "Player warped: {player} → {warp}"
Failure "Failed to warp player"
Logged as server:hytale-admin.warp-player

Warp List

The warp list shows:

  • Name — Warp identifier
  • Coordinates — X, Y, Z position
  • Actions — Teleport player to warp, delete warp

Troubleshooting

"Failed to set world time" / "Failed to set world weather"

  • Server may be offline
  • Java mod API error — check logs
  • Permission hytale-admin.world-manage missing

Warp creation fails

  • Warp name may already exist — use unique names
  • Invalid coordinates
  • API connection lost

World info shows stale data

  • World data is fetched on page load, not polled
  • Refresh the page for updated information
  • If time/weather were changed via console, the API may not reflect it immediately