Skip to main content

Getting Started

This guide will walk you through installing and configuring the Info Hub.

Installation

Step 1: Download

Download the latest version from CurseForge.

Step 2: Install

Place the JAR file in your server's mods/ directory:

your-server/
├── mods/
│ └── KyuubiSoftInfoHub-X.X.X.jar ← Place here
├── worlds/
└── ...

Step 3: Start Server

Start or restart your Hytale server. The plugin will automatically generate all configuration files:

plugins/InfoHub/
├── config.json
├── commands/
├── rules/
├── faq/
├── serverinfo/
├── team/
├── quickaccess/
└── localization/

Step 4: Configure

Edit the configuration files to customize the Info Hub for your server.

Step 5: Reload

Use /infoadmin reload to apply changes without restarting the server.


For Players

Opening the Info Hub

MethodDescription
/infoMain command
/hubAlias
/infohubAlias
/menuAlias
Info BookRight-click the Info Book in inventory (if enabled)
  • Main Menu - Shows all available sections (Commands, Rules, FAQ, etc.)
  • Back Button - Top left, navigates to previous page
  • ESC Key - Closes the entire UI
  • Sidebars - Quick access buttons for frequently used commands
  1. Enter a search term in the search field (minimum 2 characters)
  2. Click "Search" or press Enter
  3. Results show matching commands, FAQ entries, and rules

Executing Commands

When command execution is enabled:

  1. Navigate to a command
  2. Click "Execute"
  3. For commands with parameters: Fill in the input fields
  4. Confirm execution

Quick Configuration

Change Language

Edit config.json:

{
"language": "en-US"
}

Available: en-US, de-DE (or add your own)

Disable a Section

Edit config.json:

"sections": {
"faq": {
"enabled": false
}
}

Add Join Message

Edit config.json:

"joinMessage": {
"enabled": true,
"delaySeconds": 2,
"message": [
"",
"&6Welcome to the server!",
"&7Use &e/info &7for all information!",
""
]
}

Next Steps