Skip to content

Kits & Warps

Nyxon edited this page Mar 24, 2026 · 1 revision

Kits & Warps

PotatoEssentials includes a robust system for creating item kits and managing global warp locations for your players.

Warp System

Warps allow players to teleport to predefined locations across any world on the server. These are stored in warps.json.

Managing Warps

  • Setting a Warp: Stand at the location you want to save and use
/setwarp <name>

This saves your current coordinates, including yaw and pitch.

  • Teleporting to a Warp: Players can use the warp by typing
/warp <name>
  • Deleting a Warp: To remove a warp permanently
/delwarp <name>

Permissions: Players need potatoessentials.warp to use warps and potatoessentials.setwarp to create them.

Kit System

Kits are collections of items that can be defined from a player's actual inventory and distributed to others. Kits are stored in kits.yml.

Kit Operations

  • To create a kit, fill your inventory with the items you want included and run:
/kit create <kitName>
  • To give a kit to yourself or others:
/kit give <kitName> [player]
  • To remove a kit from the database:
/kit delete <kitName>

When a player is given a kit, items are placed into specific slots based on how the kit was created. This may overwrite items currently in those slots.

Configuration

Kits are cached in memory for performance and saved to plugins/PotatoEssentials/kits.yml. You can see registered kits via tab-completion on the /kit command.

Clone this wiki locally