Description
KitsX - Hytale Kit Manager
Note: This plugin was developed for the Hytale Server API.
KitsX is a lightweight, efficient, and fully configurable kit manager for Hytale servers. It allows administrators to create custom item packages, define specific permissions, and configure cooldowns via simple and intuitive JSON files.
✨ Features
-
📄 JSON Configuration: Add, remove, or edit kits quickly without needing to recompile the plugin.
-
⏱️ Cooldown System: Set individual waiting times (in seconds) to prevent excessive kit usage.
-
🔐 Permissions: Full control over who can use each kit (e.g., exclusive kits for VIPs or Staff).
-
🎒 Smart Inventory Management: Items are sent to the best available slot (Hotbar or Backpack).
-
🎨 Visual Feedback: Colorful and formatted messages for success, errors, and kit lists.
🚀 Installation
-
Download the latest KitsX
.jarfile from the files tab. -
Place the file in the
mods/folder of your Hytale server directory. -
Start the server. The plugin will automatically create the configuration folder.
-
The configuration file will be generated at:
mods/KitsX/kits.json.
⚙️ Configuration
Configuration is done via a JSON file located at mods/KitsX/kits.json. You can create as many kits as you want following this model.
Example configuration (kits.json):
[
{
"name": "iniciante",
"permission": "",
"icon": "sword_stone",
"cooldown": 60,
"items": [
{
"id": "Weapon_Spear_Thorium",
"amount": 1
},
{
"id": "bread",
"amount": 5
}
]
},
{
"name": "vip",
"permission": "kits.vip",
"icon": "sword_diamond",
"cooldown": 3600,
"items": [
{
"id": "Weapon_Sword_Diamond",
"amount": 1
},
{
"id": "potion_healing",
"amount": 3
}
]
}
]
Download: https://github.com/ySKELLETONX/KitsX


