Compatibility
Minecraft: Java Edition
26.2
26.1.x
1.21.x
1.20.x
1.19.x
1.18.x
1.17.x
1.16.x
1.15.x
1.14.x
1.13.x
1.12.x
Platforms
Tags
Creators
Details
VeloxRelay
VeloxRelay is a lightweight Velocity plugin that relays player activity/server events to Discord through webhooks. It integrates chat messages, proxy joins and leaves, and server switches, with customizable message formats. I plan to add more relayed events in the future, and perhaps some other features that allow smoother configuration.
config.yml
# VeloxRelay configuration file
# if any format option is left blank (""), it's corresponding
# message broadcast will be disabled, if unspecified it will
# default to it's respective default format
webhooks:
- "URLHERE" # non-https prefixed strings are ignored
# Message format for any chat message received
# {server} will be replaced with the server name
# {player} will be replaced with the player's username
# {message} will be replaced with the message sent by the player
format: "`{server}` **{player}**: {message}"
# Message format for when a player joins the proxy
# {player} will be replaced with the player's username
joinformat: "**{player}** has connected to the proxy."
# Message format for when a player enters a server
# {server} will be replaced with the server name
# {player} will be replaced with the player's username
enterformat: "**{player}** has entered `{server}`."
# Message format for when a player leaves the proxy
# {player} will be replaced with the player's username
leaveformat: "**{player}** has disconnected from the proxy."
For developers wanting to implement their own features using the webhooks registered on this plugin, they can cast messages using the method
broadcastMessage(java.lang.String) on the plugin's running instance


