An open API service indexing awesome lists of open source software.

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

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:
![](https://raw.githubusercontent.com/Mandlemankiller/ConsoleBroadcast/master/screenshots/welcome.png)
### 2
```
console @everyone There is an event happening right now!
```
#### everyone's POV:
![](https://raw.githubusercontent.com/Mandlemankiller/ConsoleBroadcast/master/screenshots/event.png)

## 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
```