Skip to content

Server Info Configuration

File: serverinfo/serverinfo.json

General server information and external links.

{
"server": {
"name": "KyuubiSoft Server",
"description": "Welcome to our amazing Hytale server! We offer Survival, Mini-Games and a great community.",
"version": "1.0.0"
},
"stats": {
"showPlayerCount": true,
"showUptime": true,
"showVersion": true,
"customStats": []
},
"announcements": [
{
"id": "season2",
"title": "Season 2 Announcement",
"text": "Season 2 starts next week! Get ready for new content, features and events!",
"type": "event",
"priority": 1,
"expiresAt": null
}
],
"links": [
{
"id": "discord",
"name": "Discord",
"description": "Join our community!",
"url": "https://discord.gg/yourserver",
"icon": "Deco_MusicDisc",
"copyable": true,
"priority": 1
},
{
"id": "website",
"name": "Website",
"description": "Visit our official website",
"url": "https://yourserver.com",
"icon": "Deco_Globe",
"copyable": true,
"priority": 2
},
{
"id": "store",
"name": "Store",
"description": "Support us with a donation",
"url": "https://store.yourserver.com",
"icon": "Ore_Gold",
"copyable": true,
"priority": 3
},
{
"id": "wiki",
"name": "Wiki",
"description": "Server guides and documentation",
"url": "https://wiki.yourserver.com",
"icon": "Deco_Book",
"copyable": true,
"priority": 4
}
]
}

"server": {
"name": "Server Name",
"description": "Server description text",
"version": "1.0.0"
}
FieldTypeDescription
nameStringServer name
descriptionStringServer description
versionStringServer version (optional)

"announcements": [
{
"id": "maintenance",
"title": "Announcement Title",
"text": "Announcement content text",
"type": "info",
"priority": 1,
"expiresAt": "2026-12-31"
}
]
FieldTypeDefaultDescription
idString-Unique announcement ID
titleString-Announcement title
textString-Announcement content
typeString"info"Type: "info", "warning", or "event"
priorityInteger99Sort order (lower = higher)
expiresAtStringnullISO date string for expiration (null = never expires)
"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": [
{
"id": "discord",
"name": "Link Name",
"description": "Short description",
"url": "https://example.com",
"icon": "Item_Id",
"copyable": true,
"priority": 1
}
]
FieldTypeDefaultDescription
idString-Unique link ID
nameString-Link title
descriptionString-Short description
urlString-The URL
iconString-Item ID for icon
copyableBooleantrueAllow copying the URL to chat
priorityInteger99Sort order (lower = higher)

:::info 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. :::


Display live server statistics on the Server Info page.

"stats": {
"showPlayerCount": true,
"showUptime": true,
"showVersion": true,
"customStats": [
{
"name": "Game Mode",
"value": "Survival",
"icon": "Weapon_Sword_Iron"
}
]
}
FieldTypeDefaultDescription
showPlayerCountBooleantrueShow current player count
showUptimeBooleantrueShow server uptime
showVersionBooleantrueShow server version
customStatsArray[]Custom statistics to display
FieldTypeDescription
nameStringStat display name
valueStringStat value
iconStringItem ID for icon

IconItem ID
DiscordDeco_MusicDisc
WebsiteDeco_Globe
StoreOre_Gold
Wiki/DocsDeco_Book
YouTubeDeco_Painting
TwitterDeco_Scroll
ForumDeco_Chest

{
"server": {
"name": "My Server",
"description": "A Hytale server"
},
"announcements": [],
"links": [
{
"name": "Discord",
"description": "Join us!",
"url": "https://discord.gg/example",
"icon": "Deco_MusicDisc"
}
]
}
"announcements": [
{
"title": "Halloween Event",
"text": "Spooky challenges, exclusive rewards, and haunted dungeons await! Event runs Oct 25 - Nov 1.",
"priority": 1
}
]
"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"
}
]