Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
b06c10c76a | |||
134aef7f46 | |||
68dde84742 |
13
README.md
13
README.md
@@ -8,7 +8,7 @@ A lightweight Minecraft plugin that sends real-time alerts to [ntfy.sh](https://
|
|||||||
|
|
||||||
- 🔹 Join and Quit Notifications
|
- 🔹 Join and Quit Notifications
|
||||||
- 🔹 Command Watcher (customizable)
|
- 🔹 Command Watcher (customizable)
|
||||||
- 🔹 `%player%` and `%server%` placeholder support
|
- 🔹 `%player%`,`%server%` and `%target%` placeholder support
|
||||||
- 🔹 Fully configurable messages and settings
|
- 🔹 Fully configurable messages and settings
|
||||||
- 🔹 ntfy.sh API integration (with optional basic auth)
|
- 🔹 ntfy.sh API integration (with optional basic auth)
|
||||||
|
|
||||||
@@ -16,7 +16,7 @@ A lightweight Minecraft plugin that sends real-time alerts to [ntfy.sh](https://
|
|||||||
|
|
||||||
## 🛠 Installation
|
## 🛠 Installation
|
||||||
|
|
||||||
1. Place the compiled `NTFYNotifier-1.0.0.jar` in your server’s `plugins/` folder.
|
1. Place the compiled `NTFYNotifier-1.0.3.jar` in your server’s `plugins/` folder.
|
||||||
2. Start the server to generate `config.yml` and `msg.yml`.
|
2. Start the server to generate `config.yml` and `msg.yml`.
|
||||||
3. Customize configuration and messages to your liking.
|
3. Customize configuration and messages to your liking.
|
||||||
|
|
||||||
@@ -26,16 +26,16 @@ A lightweight Minecraft plugin that sends real-time alerts to [ntfy.sh](https://
|
|||||||
|
|
||||||
### `config.yml`
|
### `config.yml`
|
||||||
```yaml
|
```yaml
|
||||||
server-name: "NTFYCraft"
|
|
||||||
|
|
||||||
ntfy:
|
ntfy:
|
||||||
server: "https://ntfy.sh"
|
server: "https://ntfy.sh" # Default public ntfy.sh server
|
||||||
topic: "minecraft-events"
|
topic: "minecraft-events"
|
||||||
auth:
|
auth:
|
||||||
enabled: false
|
enabled: false
|
||||||
username: "user"
|
username: "user"
|
||||||
password: "pass"
|
password: "pass"
|
||||||
|
|
||||||
|
server-name: "NTFYCraft" # Custom variable used in message placeholders
|
||||||
|
|
||||||
notifications:
|
notifications:
|
||||||
join: true
|
join: true
|
||||||
quit: true
|
quit: true
|
||||||
@@ -45,3 +45,6 @@ notifications:
|
|||||||
- "stop"
|
- "stop"
|
||||||
- "ban"
|
- "ban"
|
||||||
- "kick"
|
- "kick"
|
||||||
|
- "mute"
|
||||||
|
- "warn"
|
||||||
|
- "op"
|
Reference in New Issue
Block a user