EssentiaX
🟡 Updated this yearPreview

🔍 Analysis
- 👍 0.2% endorsement rate
- 🏆 #370 of 1560 bukkit mods in this game by downloads
📋 About This Mod
# 🍃 EssentiaX **EssentiaX** is a versatile Minecraft plugin that **enhances server functionality with teleportation, homes, AFK management, time voting, messaging, and more**. Fully configurable through `config.yml` and supports **multi-language messages** via JSON language files. --- ## ⚙️ Features - 🏠 **Homes system**: Set and teleport to multiple homes with configurable cooldowns and stand-still times - 🌀 **Spawn & SpawnPoint**: Teleport to world spawn or personal spawn points with safety checks - ↔️ **TPA system**: Send, accept, and deny teleport requests with automatic expiration and cooldowns - ⏪ **Back command**: Return to last death point - ⏰ **Time voting**: Players can start votes to change the time of day (`/day`, `/noon`, `/morning`, `/night`) - 💬 **Messaging system**: Private messages with `/msg` and `/reply` - 🔇 **Mute & FullMute**: Temporarily or permanently mute players (public & private chat) - 💤 **AFK system**: Automatic AFK detection, AFK spots, and optional action bar messages - 🗨️ **MOTD messages**: Custom welcome messages for first-time and returning players - 🌐 **Automatic language support**: - Loads the correct language file based on the **player's client language** - Supports **all included languages out of the box** - Still fully **modifiable** by editing the JSON language files - ⏳ **Configurable cooldowns and stand-still times** for commands - ⚡ Lightweight and optimized for server performance - 🗣️ **Announcement**: Broadcast server-wide messages with custom colors and prefixes. - 🌍 **RTP**: Teleport to a random location within configured boundaries. - 🎮 **Gamemode Switching**: Change your gamemode quickly with shorter commands. - 👻 **Vanish Mode**: Become invisible to other players while maintaining control. --- ## Default Config ## <details> <summary>config.yml</summary> ```yaml # ==== EssentiaX-Config ==== # ==== Spawn ==== spawn: enabled: true cooldown: 0 stand-still-time: 5 # ==== Home ==== home: enabled: true max-homes: 3 cooldown: 0 stand-still-time: 5 # ==== Teleportation ==== tpa: enabled: true cooldown: 10 stand-still-time: 5 back: enabled: true cooldown: 10 stand-still-time: 3 # ==== Chat Management ==== reply: enabled: true mute: enabled: true fullmute: enabled: true chat: private: prefix: "&7" message: "&7" # ==== AFK System ==== afk: enabled: true afk-delay: 5 afkspot: enabled: false actionbar: enabled: true server-type: paper # options: paper, purpur, folia, spigot, bukkit countdown: color: "§e" # ==== MOTD ==== motd: enabled: true overwrite-languagefile-first-join: false first-join: "§aWelcome to the server, {player}!" overwrite-languagefile-join: false join: "§eWelcome back, {player}!" # ==== TimeVote ==== timevote: duration: 60 percent: 50 day: enabled: true noon: enabled: true morning: enabled: true night: enabled: true # ==== Performance ==== despawn: items: enabled: true time: 300 xp: enabled: true time: 300 # ==== Spawnpoint ==== spawnpoint: enabled: true cooldown: 0 stand-still-time: 5 # ==== RTP ==== rtp: enabled: true min-x: -1000 max-x: 1000 min-y: -1000 max-y: 1000 # ==== Vanish ==== vanish: enabled: true leftMessage: true invisible: true fly: true block-collision: true hideFromTab: true # ==== Announcement ==== announcement: prefix: text: "Announcement" color: "AQUA" ``` </details> <details> <summary>en_us.json</summary> ```json { "spawn": { "wait": "§cWait %seconds% seconds before using /spawn again.", "stand": "§aStand still for %seconds% seconds to teleport to spawn...", "canceled": "§cTeleport cancelled!", "teleported": "§aTeleported to spawn!" }, "home": { "wait": "§cWait %seconds% seconds.", "stand_set": "§aStand still for %seconds% seconds to set home %home%...", "set": "§aHome %home% set!", "stand_tp": "§aStand still for %seconds% seconds to teleport to home %home%...", "tp": "§aTeleported to home %home%!", "missing": "§cHome %home% does not exist!", "max": "§cMaximum homes reached (%max%)", "canceled": "§cTeleport cancelled!", "canceled_set": "§cSetting home cancelled!" }, "afk": { "start": "§eAFK activating in %seconds% seconds... Stand still and avoid damage!", "now": "§aYou are now AFK!", "canceled_move": "§cAFK cancelled because you moved!", "canceled_damage": "§cAFK cancelled due to damage!", "not_afk": "§cYou are no longer AFK!", "actionbar": "§7You are AFK!", "countdown": "§7AFK in %seconds%..." }, "afkspot": { "set": "§aAFK spot set!", "delete": "§cAFK spot deleted!", "usage": "§cUsage: /afkspot <set|delete>" }, "motd": { "first_join": "§aWelcome to the server, {player}!", "join": "§eWelcome back, {player}!" }, "back": { "stand": "§aStand still for %seconds% seconds to tele
# 🍃 EssentiaX
EssentiaX is a versatile Minecraft plugin that enhances server functionality with teleportation, homes, AFK management, time voting, messaging, and more. Fully configurable through `config.yml` and supports multi-language messages via JSON language files.
## ⚙️ Features
- 🏠 Homes system: Set and teleport to multiple homes with configurable cooldowns and stand-still times
- 🌀 Spawn & SpawnPoint: Teleport to world spawn or personal spawn points with safety checks
- ↔️ TPA system: Send, accept, and deny teleport requests with automatic expiration and cooldowns
- ⏪ Back command: Return to last death point
- ⏰ Time voting: Players can start votes to change the time of day (`/day`, `/noon`, `/morning`, `/night`)
- 💬 Messaging system: Private messages with `/msg` and `/reply`
- 🔇 Mute & FullMute: Temporarily or permanently mute players (public & private chat)
- 💤 AFK system: Automatic AFK detection, AFK spots, and optional action bar messages
- 🗨️ MOTD messages: Custom welcome messages for first-time and returning players
- 🌐 Automatic language support:
- - Loads the correct language file based on the player's client language
- - Supports all included languages out of the box
- - Still fully modifiable by editing the JSON language files
- ⏳ Configurable cooldowns and stand-still times for commands
- ⚡ Lightweight and optimized for server performance
- 🗣️ Announcement: Broadcast server-wide messages with custom colors and prefixes.
- 🌍 RTP: Teleport to a random location within configured boundaries.
- 🎮 Gamemode Switching: Change your gamemode quickly with shorter commands.
- 👻 Vanish Mode: Become invisible to other players while maintaining control.
## Default Config ##
config.yml
```yaml # ==== EssentiaX-Config ====
# ==== Spawn ==== spawn: enabled: true cooldown: 0 stand-still-time: 5
# ==== Home ==== home: enabled: true max-homes: 3 cooldown: 0 stand-still-time: 5
# ==== Teleportation ==== tpa: enabled: true cooldown: 10 stand-still-time: 5
back: enabled: true cooldown: 10 stand-still-time: 3
# ==== Chat Management ==== reply: enabled: true
mute: enabled: true
fullmute: enabled: true
chat: private: prefix: "&7" message: "&7"
# ==== AFK System ==== afk: enabled: true afk-delay: 5
afkspot: enabled: false
actionbar: enabled: true
server-type: paper # options: paper, purpur, folia, spigot, bukkit
countdown: color: "§e"
# ==== MOTD ==== motd: enabled: true overwrite-languagefile-first-join: false first-join: "§aWelcome to the server, {player}!" overwrite-languagefile-join: false join: "§eWelcome back, {player}!"
# ==== TimeVote ==== timevote: duration: 60 percent: 50 day: enabled: true noon: enabled: true morning: enabled: true night: enabled: true
# ==== Performance ==== despawn: items: enabled: true time: 300 xp: enabled: true time: 300
# ==== Spawnpoint ==== spawnpoint: enabled: true cooldown: 0 stand-still-time: 5
# ==== RTP ==== rtp: enabled: true min-x: -1000 max-x: 1000 min-y: -1000 max-y: 1000
# ==== Vanish ==== vanish: enabled: true leftMessage: true invisible: true fly: true block-collision: true hideFromTab: true
# ==== Announcement ====
announcement:
prefix:
text: "Announcement"
color: "AQUA"
```
en_us.json
```json
{
"spawn": {
"wait": "§cWait %seconds% seconds before using /spawn again.",
"stand": "§aStand still for %seconds% seconds to teleport to spawn...",
"canceled": "§cTeleport cancelled!",
"teleported": "§aTeleported to spawn!"
},
"home": {
"wait": "§cWait %seconds% seconds.",
"stand_set": "§aStand still for %seconds% seconds to set home %home%...",
"set": "§aHome %home% set!",
"stand_tp": "§aStand still for %seconds% seconds to teleport to home %home%...",
"tp": "§aTeleported to home %home%!",
"missing": "§cHome %home% does not exist!",
"max": "§cMaximum homes reached (%max%)",
"canceled": "§cTeleport cancelled!",
"canceled_set": "§cSetting home cancelled!"
},
"afk": {
"start": "§eAFK activating in %seconds% seconds... Stand still and avoid damage!",
"now": "§aYou are now AFK!",
"canceled_move": "§cAFK cancelled because you moved!",
"canceled_damage": "§cAFK cancelled due to damage!",
"not_afk": "§cYou are no longer AFK!",
"actionbar": "§7You are AFK!",
"countdown": "§7AFK in %seconds%..."
},
"afkspot": {
"set": "§aAFK spot set!",
"delete": "§cAFK spot deleted!",
"usage": "§cUsage: /afkspot
📊 Mod Details
- Game
- Minecraft Plugins
- Author
- JikZ109
- Version
- 1.12.1
- Downloads
- 8,912
- Endorsements
- 17
- Category
- bukkit
- Created
- 8/31/2025
- Updated
- 12/7/2025
- Game Versions
- 1.18, 1.18.1, 1.18.2, 1.19, 1.19.1
- Tags
- management, optimization, social
🔧 How to Install Minecraft Plugins Mods
Download from Modrinth. Use Prism Launcher or drop into your mods folder.
📖 Full step-by-step install guide for Minecraft Plugins →
Visit the official mod page for specific installation instructions for this mod.
🎮 Need cheat codes or console commands? Check ur gaming wiki for Minecraft Plugins commands, item IDs, and more.
❓ Frequently Asked Questions
Which Minecraft Plugins versions does EssentiaX support?
The author lists 1.18, 1.18.1, 1.18.2, 1.19, 1.19.1, 1.19.2. Other versions may work but are untested by the author.
What is the latest version of EssentiaX?
Version 1.12.1, published 2025-12-07 with 8,912 downloads recorded at the source.
Keep browsing — more Minecraft Plugins mods await