CoreEngineWIKI
ESC
NavigateEnter OpenESC Close

Utility Commands

Convenience and admin commands: healing, flying, god mode, inventory management and info commands. Cooldowns and costs are configurable per command in modules/utility.yml.

Health & status #

CommandSyntaxPermission (self)Permission (others)DefaultDescription
/heal/heal [player]util.healutil.heal.othersfalseHeal fully and extinguish fire
/feed/feed [player]util.feedutil.feed.othersfalseFill hunger and saturation
/god/god [player]util.godutil.god.othersfalseToggle invulnerability (persists with god-persist)
/fly/fly [player]util.flyutil.fly.othersfalseToggle flight mode (not persisted)
/speed/speed <value> [player]util.speedutil.speed.othersfalseWalk/fly speed 0 to 10 (1 = normal)

Game mode #

CommandSyntaxPermission (self)Permission (others)DefaultDescription
/gamemode/gamemode <mode> [player] (alias /gm)util.gamemodeutil.gamemode.othersfalseSet game mode (survival/s/0, creative/c/1, adventure/a/2, spectator/sp/3)
/gmc /gms /gma /gmsp/gmc [player] etc.util.gamemodeutil.gamemode.othersfalseShortcuts for the four modes

Inventory & items #

CommandSyntaxPermission (self)Permission (others/all)DefaultDescription
/repair/repair [all|hand] (alias /fix)util.repairutil.repair.allfalseRepair the item in hand, with all the whole inventory
/hat/hatutil.hat-falseSwap item into the helmet slot (even with a helmet on)
/clear/clear [player] (alias /ci)util.clearutil.clear.othersfalseClear inventory
/clearenderchest/clearenderchest [player] (alias /clearec)util.clearenderchestutil.clearenderchest.othersfalseClear ender chest
/ec/ec (alias /enderchest)util.ec-trueOpen your own ender chest virtually
/invsee/invsee <player>util.invsee-falseView/edit another inventory
/endersee/endersee <player> (alias /ecsee)util.endersee-falseView/edit another ender chest
/exp/exp <give|take|set> <player> <amount> (alias /xp)-util.expfalseManage XP levels using the Minecraft formula
/hunger/hunger <player> <value>-util.hungerfalseSet food level (0 to 20)

Virtual workbenches #

CommandSyntaxPermissionDefaultDescription
/workbench/workbench (alias /craft, /wb)util.workbenchtrueVirtual crafting table
/anvil/anvilutil.anviltrueVirtual anvil
/trash/trash (alias /disposal)util.trashtrueDisposal inventory (contents deleted on close)

More workstations are bundled in the Stations module with its hub GUI.

Info commands #

CommandSyntaxPermissionDefaultDescription
/near/near [radius]util.neartrueNearby players sorted by distance (vanished players hidden)
/ping/ping [player] (alias /latency)util.pingtrueLatency, color coded; others: util.ping.others
/tps/tpsutil.tpsfalseTPS of the last 1/5/15 minutes plus MSPT
/list/list (alias /online, /who)util.listtrueOnline players, sorted by group with LuckPerms
/whois/whois <player> (alias /playerinfo)util.whoisfalseUUID, health, location, game mode, level; IP only with util.whois.ip
/seen/seen <player> (alias /lastseen)util.seentrueLast online time (offline players too)
💡

Tip: /trash is the safe item disposal without lava or fall damage.

Configuration (modules/utility.yml) #

YAML
# Enables or disables the utility module.
enabled: true

utility:
  # Persists god mode across restart/reload.
  god-persist: true
  # Default and maximum search radius for /near in blocks.
  near-default-radius: 200
  near-max-radius: 500
  # Disables individual commands without disabling the module.
  # Example: ["heal", "repair", "anvil"]
  disabled-commands: []

cooldown:
  commands:
    # Seconds per command. 0 = no cooldown. For unlisted commands
    # (e.g. ec, hat, exp) just add an entry with the command name.
    heal: 0
    feed: 0
    repair: 0
    workbench: 0
    anvil: 0
    trash: 0
    near: 0

cost:
  commands:
    # Price per command. 0 = free.
    heal: 0
    feed: 0
    repair: 0
    workbench: 0
    anvil: 0

Complete example config #

YAML
enabled: true

utility:
  god-persist: false
  near-default-radius: 100
  near-max-radius: 250
  disabled-commands:
    - hunger

cooldown:
  commands:
    heal: 300
    feed: 120
    repair: 600
    workbench: 0
    anvil: 0
    trash: 0
    near: 30

cost:
  commands:
    heal: 50.0
    feed: 25.0
    repair: 200.0
    workbench: 0
    anvil: 0