https://github.com/huzvanec/consolebroadcast
Simple and customizable way to send messages to players from minecraft server console
https://github.com/huzvanec/consolebroadcast
minecraft-plugin
Last synced: 3 days ago
JSON representation
Simple and customizable way to send messages to players from minecraft server console
- Host: GitHub
- URL: https://github.com/huzvanec/consolebroadcast
- Owner: huzvanec
- Created: 2022-01-03T16:45:42.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-08-01T14:37:31.000Z (almost 3 years ago)
- Last Synced: 2025-02-26T03:38:56.650Z (over 1 year ago)
- Topics: minecraft-plugin
- Language: Java
- Homepage:
- Size: 33.2 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Console Broadcast
## What is Console Broadcast?
It's a simple minecraft plugin for messaging players from console.
## What platforms are supported?
Paper based minecraft servers **1.19.4+**
**Bukkit and Spigot are not supported!**
## Usage
````
/broadcast
````
or
```
/console
```
## Selectors
A valid selector is any online player's name, or ```@everyone``` which will make all the players online recieve the message.
## Message formatting
If the player has ```consolebroadcast.message-formatting``` permission, they can use minimessage formats in their messages. This includes all the colors, bold, italic, underline... If you want to learn more about this format, read https://docs.advntr.dev/minimessage/.
## Examples:
### 1
````
broadcast XD_CZ Hello! Welcome to the server :D
````
#### XD_CZ's POV:

### 2
```
console @everyone There is an event happening right now!
```
#### everyone's POV:

## Build
Requirements: [Git](https://git-scm.com/), [Maven](https://maven.apache.org/)
Clone the repository
```bash
git clone https://github.com/Mandlemankiller/ConsoleBroadcast.git
```
Move to the ConsoleBroadcast directory
```bash
cd ConsoleBroadcast
```
Package with Maven
```bash
mvn package
```