A powerful Minecraft server plugin that sends real-time server status notifications to Discord via webhooks with customizable embeds.
Features โข Installation โข Configuration โข Support
- ๐ Real-time Notifications - Instant Discord notifications when your server starts or stops
- ๐จ Customizable Embeds - Beautiful, fully customizable Discord embeds with color coding
- ๐ง Flexible Configuration - Easy-to-use YAML configuration with sensible defaults
- ๐ฏ Lightweight - Minimal performance impact on your server
- Download the latest
MinecraftStateMessages.jarfrom the releases page - Place the JAR file in your server's
plugins/directory - Restart your server
- Configure the plugin by editing
plugins/MinecraftStateMessages/config.yml - Run
/reloador restart the server to apply changes
After the first run, a config.yml file will be generated in plugins/MinecraftStateMessages/. Here's a detailed breakdown of all configuration options:
# Message sent to Discord when the server starts
server-start-message: "Server has been started!"
# Message sent to Discord when the server stops
server-stop-message: "Server has been stopped!"
# Your Discord webhook URL - get this from Discord Server Settings > Integrations > Webhooks
discord-webhook-url: "https://discord.com/api/webhooks/your-webhook-url"# Enable or disable Discord embeds (if false, sends plain text messages)
embed-enabled: true
# Color for server start notifications
# Supported: green, red, blue, yellow, orange, purple, gray/grey, black, white
# Or use hex codes: "#2ECC71" or "2ECC71"
embed-start-color: "green"
# Color for server stop notifications
embed-stop-color: "red"
# Title displayed at the top of the embed
# Leave empty ("") to hide the title completely
embed-title: "Minecraft Server"| Color Name | Hex Code | Preview |
|---|---|---|
green |
#2ECC71 |
๐ข Perfect for start messages |
red |
#E74C3C |
๐ด Perfect for stop messages |
blue |
#3498DB |
๐ต General information |
yellow |
#FFFF00 |
๐ก Warnings |
orange |
#E67E22 |
๐ Alerts |
purple |
#9B59B6 |
๐ฃ Special events |
gray/grey |
#95A5A6 |
โช Neutral |
black |
#23272A |
โซ Discord dark theme |
white |
#FFFFFF |
โช Bright |
You can also use any custom hex color:
embed-start-color: "#FF6B6B" # Custom coral red
embed-stop-color: "4ECDC4" # Custom turquoise (# is optional)server-start-message: "โ
Server Online"
server-stop-message: "โ Server Offline"
discord-webhook-url: "https://discord.com/api/webhooks/123456789/abcdefg"
embed-enabled: true
embed-start-color: "green"
embed-stop-color: "red"
embed-title: "" # Empty = no title shownserver-start-message: "๐ฎ The server is now online and ready for players!"
server-stop-message: "๐ The server is now offline for maintenance."
discord-webhook-url: "https://discord.com/api/webhooks/123456789/abcdefg"
embed-enabled: true
embed-start-color: "#00FF00"
embed-stop-color: "#FF0000"
embed-title: "๐ AwesomeCraft Network"server-start-message: "[SERVER] Started successfully!"
server-stop-message: "[SERVER] Shutting down..."
discord-webhook-url: "https://discord.com/api/webhooks/123456789/abcdefg"
embed-enabled: false # Sends plain text instead of embeds
embed-start-color: "green"
embed-stop-color: "red"
embed-title: ""- Open your Discord server
- Go to Server Settings โ Integrations โ Webhooks
- Click New Webhook or Create Webhook
- Customize the webhook name and channel
- Click Copy Webhook URL
- Paste the URL into
discord-webhook-urlin your config.yml
The embed-title field has special behavior:
- Set to any text: Displays that text as the embed title
embed-title: "My Awesome Server"
- Set to empty string (
"")): No title will be shownembed-title: ""
- Not specified/removed: No title will be shown (same as empty)
Want to send notifications to multiple Discord channels? You can modify the webhook URL dynamically or create multiple configurations. For advanced setups, consider forking this plugin and adding multi-webhook support.
Problem: No messages appear in Discord
Solutions:
- โ Verify your webhook URL is correct
- โ
Ensure
discord-webhook-urlis not set to the default placeholder - โ Check server console for error messages
- โ Confirm the webhook hasn't been deleted in Discord
- โ Test the webhook URL using a tool like webhook.site
Problem: Embeds show wrong colors or no color
Solutions:
- โ Use supported color names (see Color Reference)
- โ
If using hex codes, ensure format is correct:
"#FF0000"or"FF0000" - โ Reload the plugin after changing colors
Problem: Title appears even when set to empty
Solutions:
- โ
Ensure
embed-title: ""is exactly like this (empty quotes) - โ
Remove any spaces between quotes: โ
" "โ โ"" - โ Reload/restart server after config changes
- ๐ฌ Support Server: dsc.gg/gglvxd - Get help, report bugs, or suggest features
- ๐จโ๐ป Developer: gglvxd.net - Visit the developer's website
- ๐ข Organization: Fryde - Powered by Fryde
This plugin requires no special permissions. It only needs:
- File system access for config management
- Network access for webhook requests
This project is licensed under the MIT License - see the LICENSE file for details.
Developed with โค๏ธ by gglvxd