Skip to main content

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"
}
FieldTypeDescription
nameStringServer name
descriptionStringServer description
versionStringServer version (optional)

Announcements

"announcements": [
{
"title": "Announcement Title",
"text": "Announcement content text",
"priority": 1
}
]
FieldTypeDescription
titleStringAnnouncement title
textStringAnnouncement content
priorityIntegerSort 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": [
{
"name": "Link Name",
"description": "Short description",
"url": "https://example.com",
"icon": "Item_Id"
}
]
FieldTypeDescription
nameStringLink title
descriptionStringShort description
urlStringThe URL
iconStringItem 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.


IconItem ID
DiscordDeco_MusicDisc
WebsiteDeco_Globe
StoreOre_Gold
Wiki/DocsDeco_Book
YouTubeDeco_Painting
TwitterDeco_Scroll
ForumDeco_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
}
]
"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"
}
]