Skip to content

🎁 Kits Configuration ​

DANGER

This file was created automatically and should not be edited manually to avoid errors. Instead, use the commands from Essentials Plus (/kit create and /kit delete).

File Information

πŸ“ File Location: mods/fof1092_EssentialsPlus/kits/
πŸ”™ Back to Configuration Overview

The kits/ directory contains individual JSON files for each kit. Each kit is stored in a separate file named kitname.json.

Kit Permissions: Each kit requires a specific permission to be claimed: essentialsplus.kit.<kitname>. For example, the "starter" kit requires essentialsplus.kit.starter. See Permissions Reference for more details.

First Join Kits: You can automatically give kits to new players on their first join. Configure this in the firstJoin section of config.json.


Example Kit File (kits/starter.json):

json
{
  "version": "1.15.13",
  "name": "starter",
  "cooldown": 31536000000,
  "storage": {
    "capacity": 36,
    "items": {
      "0": {
        "itemId": "Weapon_Arrow_Crude",
        "quantity": 1,
        "durability": 0.0,
        "maxDurability": 0.0,
        "overrideDroppedItemAnimation": false,
        "cachedPacket": {
          "itemId": "Weapon_Arrow_Crude",
          "quantity": 1,
          "durability": 0.0,
          "maxDurability": 0.0,
          "overrideDroppedItemAnimation": false
        }
      }
    },
    "armor": {
      "capacity": 4,
      "items": {}
    },
    "hotbar": {
      "capacity": 9,
      "items": {}
    },
    "utility": {
      "capacity": 4,
      "items": {
        "3": {
          "itemId": "Weapon_Shield_Copper",
          "quantity": 1,
          "durability": 0.0,
          "maxDurability": 0.0,
          "overrideDroppedItemAnimation": false,
          "cachedPacket": {
            "itemId": "Weapon_Shield_Copper",
            "quantity": 1,
            "durability": 0.0,
            "maxDurability": 0.0,
            "overrideDroppedItemAnimation": false
          }
        }
      }
    },
    "lastClaimed": {
      "c3f13aae-432d-4627-9892-e8901144c63b": 1768645206255
    }
  }

Kit Properties:

  • name - Unique kit identifier
  • cooldown - Cooldown in milliseconds (0 for no cooldown)
  • storage - Array of items in the kit

Note: Use /createkit and /deletekit commands to manage kits. Each kit is automatically saved as a separate file.