Compare commits

3 Commits

Author SHA1 Message Date
b06c10c76a Update README.md 2025-08-09 04:18:13 -04:00
134aef7f46 Update README.md 2025-08-09 04:17:11 -04:00
68dde84742 Update README.md 2025-08-09 04:16:29 -04:00

View File

@@ -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 servers `plugins/` folder. 1. Place the compiled `NTFYNotifier-1.0.3.jar` in your servers `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"