EssentialsXCommandsHomesWarpsKits5 min read

Install and configure EssentialsX

Set up EssentialsX for essential commands: homes, warps, kits, teleportation and more.


What is EssentialsX?

EssentialsX is the most popular utility plugin for Minecraft servers. It provides over 100 commands including homes, warps, kits, teleportation, economy, and player management.

Step 1: Install EssentialsX

  1. Download from essentialsx.net or SpigotMC
  2. Upload the following jars to plugins/ via panel.baires.host:
  • EssentialsX.jar (core)
  • EssentialsXChat.jar (chat formatting, optional)
  • EssentialsXSpawn.jar (spawn management, optional)
  1. Restart the server

Step 2: Basic configuration

Edit plugins/Essentials/config.yml:

yaml
# Teleportation
teleport-cooldown: 5
teleport-delay: 3

# Homes
sethome-multiple:
  default: 3
  vip: 5
  staff: 10

# Economy (if using EssentialsX economy)
currency-symbol: "$"
starting-balance: 100

Key features and commands

Homes

terminal
/sethome <name>    - Set a home
/home <name>       - Teleport to a home
/delhome <name>    - Delete a home
/homes             - List all homes

Warps

terminal
/setwarp <name>    - Create a warp (admin)
/warp <name>       - Teleport to a warp
/delwarp <name>    - Delete a warp
/warps             - List all warps

Teleportation

terminal
/tpa <player>      - Request teleport to player
/tpaccept          - Accept teleport request
/tpdeny            - Deny teleport request
/back              - Return to previous location

Kits

Define kits in plugins/Essentials/config.yml:

yaml
kits:
  starter:
    delay: 86400
    items:
      - stone_sword 1
      - bread 16
      - oak_log 32
  vip:
    delay: 43200
    items:
      - diamond_sword 1 sharpness:2
      - golden_apple 5

Players claim kits with /kit <name>.

Permissions

EssentialsX uses permission nodes like:

  • essentials.home — use /home
  • essentials.warp — use /warp
  • essentials.kit.<name> — access specific kit
  • essentials.fly — use /fly

Assign these through LuckPerms (see our LuckPerms guide).

Tips

  • EssentialsX replaces many small plugins — check if it already does what you need before adding more
  • Use EssentialsXChat with LuckPerms for rank prefixes in chat
  • The /worth system lets you set item values for a sign-based shop economy
  • Run /essentials reload after config changes (no restart needed)

Was this guide helpful?