Server Info Configuration
File: serverinfo/serverinfo.json
General server information and external links.
Complete Example
{
"server": {
"name": "KyuubiSoft Server",
"description": "Welcome to our amazing Hytale server! We offer Survival, Mini-Games and a great community.",
"version": "1.0.0"
},
"announcements": [
{
"title": "Season 2 Announcement",
"text": "Season 2 starts next week! Get ready for new content, features and events!",
"priority": 1
}
],
"links": [
{
"name": "Discord",
"description": "Join our community!",
"url": "https://discord.gg/yourserver",
"icon": "Deco_MusicDisc"
},
{
"name": "Website",
"description": "Visit our official website",
"url": "https://yourserver.com",
"icon": "Deco_Globe"
},
{
"name": "Store",
"description": "Support us with a donation",
"url": "https://store.yourserver.com",
"icon": "Ore_Gold"
},
{
"name": "Wiki",
"description": "Server guides and documentation",
"url": "https://wiki.yourserver.com",
"icon": "Deco_Book"
},
{
"name": "YouTube",
"description": "Videos and tutorials",
"url": "https://youtube.com/@yourserver",
"icon": "Deco_Painting"
}
]
}
Server Information
"server": {
"name": "Server Name",
"description": "Server description text",
"version": "1.0.0"
}
| Field | Type | Description |
|---|---|---|
name | String | Server name |
description | String | Server description |
version | String | Server version (optional) |
Announcements
"announcements": [
{
"title": "Announcement Title",
"text": "Announcement content text",
"priority": 1
}
]
| Field | Type | Description |
|---|---|---|
title | String | Announcement title |
text | String | Announcement content |
priority | Integer | Sort order (lower = higher) |
Multiple Announcements
"announcements": [
{
"title": "Maintenance Tonight",
"text": "Server will be down from 2-4 AM for updates.",
"priority": 1
},
{
"title": "New Feature: Guilds",
"text": "Create or join a guild with /guild create or /guild join!",
"priority": 2
},
{
"title": "Double XP Weekend",
"text": "This weekend all XP gains are doubled!",
"priority": 3
}
]
Links
"links": [
{
"name": "Link Name",
"description": "Short description",
"url": "https://example.com",
"icon": "Item_Id"
}
]
| Field | Type | Description |
|---|---|---|
name | String | Link title |
description | String | Short description |
url | String | The URL |
icon | String | Item ID for icon |
How Links Work
Since Hytale cannot open URLs directly, clicking a link sends the URL to the player's chat. From there it can be clicked to open in a browser.
Common Link Icons
| Icon | Item ID |
|---|---|
| Discord | Deco_MusicDisc |
| Website | Deco_Globe |
| Store | Ore_Gold |
| Wiki/Docs | Deco_Book |
| YouTube | Deco_Painting |
Deco_Scroll | |
| Forum | Deco_Chest |
Examples
Minimal Configuration
{
"server": {
"name": "My Server",
"description": "A Hytale server"
},
"announcements": [],
"links": [
{
"name": "Discord",
"description": "Join us!",
"url": "https://discord.gg/example",
"icon": "Deco_MusicDisc"
}
]
}
Event Announcement
"announcements": [
{
"title": "Halloween Event",
"text": "Spooky challenges, exclusive rewards, and haunted dungeons await! Event runs Oct 25 - Nov 1.",
"priority": 1
}
]
Social Links Only
"links": [
{
"name": "Discord",
"description": "Chat with the community",
"url": "https://discord.gg/example",
"icon": "Deco_MusicDisc"
},
{
"name": "Twitter",
"description": "Follow for updates",
"url": "https://twitter.com/example",
"icon": "Deco_Scroll"
},
{
"name": "Instagram",
"description": "Screenshots and art",
"url": "https://instagram.com/example",
"icon": "Deco_Painting"
}
]