
Kit Plugin X1
Create a /kit mod where admins can define kits inside of a configuration file and players can type /kit <name of kit> to redeem the kit.
00—FreehytaleServer2026.01.24mod
Kit Plugin X1
Overview
This mod lets server admins create custom kits that players can redeem anytime. Simply set up your kits in the config file, and players can claim them with a simple command!
Features
- Define unlimited custom kits with any items you want
- Set item quantities for each item in a kit
- Optional permission requirements for specific kits
- Add descriptions to tell players what's in each kit
- Items go directly into player inventory
How to Use
For Players:
- Type
/kit <name>to redeem a kit - Example:
/kit starterwould give you the "starter" kit - If you don't know the kit names, just type
/kitand it will tell you what's available - Some kits may require special permissions - if you can't redeem one, ask an admin!
For Server Admins:
- Edit the
kits.jsonfile in your mod's data folder - Add kits in this format:
{
"Kits": [
{
"Name": "starter",
"Description": "A starter kit for new players",
"Permission": "",
"Items": [
{ "ItemId": "Sword_Iron", "Quantity": 1 },
{ "ItemId": "Pickaxe_Iron", "Quantity": 1 }
]
},
{
"Name": "vip",
"Description": "Special kit for VIP players",
"Permission": "kit.vip",
"Items": [
{ "ItemId": "Sword_Diamond", "Quantity": 1 },
{ "ItemId": "Apple_Gold", "Quantity": 10 }
]
}
]
}
- Restart the server to reload the config
Tips & Tricks
- Leave the "Permission" field empty to make a kit available to everyone
- Use item IDs exactly as they appear in the game files
- You can add as many items to a kit as you want - they'll fill the player's inventory
Known Limitations
- If a player's inventory is full, some items may not fit
- The config file needs to be edited manually (no in-game editor yet)
- Invalid item IDs will be skipped with a warning in the server logs