Kit Plugin X1 banner
Kit Plugin X1 icon

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.

00Free
hytaleServer2026.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:

  1. Type /kit <name> to redeem a kit
  2. Example: /kit starter would give you the "starter" kit
  3. If you don't know the kit names, just type /kit and it will tell you what's available
  4. Some kits may require special permissions - if you can't redeem one, ask an admin!

For Server Admins:

  1. Edit the kits.json file in your mod's data folder
  2. 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 }
      ]
    }
  ]
}
  1. 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