Upload via Git Manager GUI - plugin.yml
This commit is contained in:
@@ -1,29 +1,211 @@
|
|||||||
name: StatusAPI
|
name: StatusAPI
|
||||||
main: net.viper.status.StatusAPI
|
main: net.viper.status.StatusAPI
|
||||||
version: 4.0.6
|
version: 4.1.0
|
||||||
author: M_Viper
|
author: M_Viper
|
||||||
description: StatusAPI für BungeeCord inkl. Update-Checker und Modul-System
|
description: StatusAPI für BungeeCord inkl. Update-Checker, Modul-System und ChatModule
|
||||||
|
# Mindestanforderung: Minecraft 1.20 / BungeeCord mit PlayerChatEvent-Unterstützung
|
||||||
|
|
||||||
softdepend:
|
softdepend:
|
||||||
- LuckPerms
|
- LuckPerms
|
||||||
|
- Geyser-BungeeCord
|
||||||
|
|
||||||
commands:
|
commands:
|
||||||
# Verify Modul Befehle
|
# ── Verify Modul ──────────────────────────────────────────
|
||||||
verify:
|
verify:
|
||||||
description: Verifiziere dich mit einem Token
|
description: Verifiziere dich mit einem Token
|
||||||
usage: /verify <token>
|
usage: /verify <token>
|
||||||
|
|
||||||
# ForumBridge Modul Befehle
|
# ── ForumBridge Modul ─────────────────────────────────────
|
||||||
forumlink:
|
forumlink:
|
||||||
description: Verknüpfe deinen Minecraft-Account mit dem Forum
|
description: Verknüpfe deinen Minecraft-Account mit dem Forum
|
||||||
usage: /forumlink <token>
|
usage: /forumlink <token>
|
||||||
|
|
||||||
|
# ── ChatModule – Kanal ────────────────────────────────────
|
||||||
|
channel:
|
||||||
|
description: Kanal wechseln oder Kanalliste anzeigen
|
||||||
|
usage: /channel [kanalname]
|
||||||
|
aliases: [ch, kanal]
|
||||||
|
|
||||||
|
# ── ChatModule – HelpOp ───────────────────────────────────
|
||||||
|
helpop:
|
||||||
|
description: Sende eine Hilfeanfrage an das Team
|
||||||
|
usage: /helpop <Nachricht>
|
||||||
|
|
||||||
|
# ── ChatModule – Privat-Nachrichten ───────────────────────
|
||||||
|
msg:
|
||||||
|
description: Sende eine private Nachricht
|
||||||
|
usage: /msg <Spieler> <Nachricht>
|
||||||
|
aliases: [tell, w, whisper]
|
||||||
|
|
||||||
|
r:
|
||||||
|
description: Antworte auf die letzte private Nachricht
|
||||||
|
usage: /r <Nachricht>
|
||||||
|
aliases: [reply, antwort]
|
||||||
|
|
||||||
|
# ── ChatModule – Blockieren ───────────────────────────────
|
||||||
|
ignore:
|
||||||
|
description: Spieler ignorieren
|
||||||
|
usage: /ignore <Spieler>
|
||||||
|
aliases: [block]
|
||||||
|
|
||||||
|
unignore:
|
||||||
|
description: Spieler nicht mehr ignorieren
|
||||||
|
usage: /unignore <Spieler>
|
||||||
|
aliases: [unblock]
|
||||||
|
|
||||||
|
# ── ChatModule – Mute (Admin) ─────────────────────────────
|
||||||
|
chatmute:
|
||||||
|
description: Spieler im Chat stumm schalten
|
||||||
|
usage: /chatmute <Spieler> [Minuten]
|
||||||
|
aliases: [gmute]
|
||||||
|
|
||||||
|
chatunmute:
|
||||||
|
description: Chat-Stummschaltung aufheben
|
||||||
|
usage: /chatunmute <Spieler>
|
||||||
|
aliases: [gunmute]
|
||||||
|
|
||||||
|
# ── ChatModule – Selbst-Mute ──────────────────────────────
|
||||||
|
chataus:
|
||||||
|
description: Eigenen Chat-Empfang ein-/ausschalten
|
||||||
|
usage: /chataus
|
||||||
|
aliases: [togglechat, chaton, chatoff]
|
||||||
|
|
||||||
|
# ── ChatModule – Broadcast ────────────────────────────────
|
||||||
|
broadcast:
|
||||||
|
description: Nachricht an alle Spieler senden
|
||||||
|
usage: /broadcast <Nachricht>
|
||||||
|
aliases: [bc, alert]
|
||||||
|
|
||||||
|
# ── ChatModule – Emoji ────────────────────────────────────
|
||||||
|
emoji:
|
||||||
|
description: Liste aller verfügbaren Emojis
|
||||||
|
usage: /emoji
|
||||||
|
aliases: [emojis]
|
||||||
|
|
||||||
|
# ── ChatModule – Social Spy ───────────────────────────────
|
||||||
|
socialspy:
|
||||||
|
description: Private Nachrichten mitlesen (Admin)
|
||||||
|
usage: /socialspy
|
||||||
|
aliases: [spy]
|
||||||
|
|
||||||
|
# ── ChatModule – Reload ───────────────────────────────────
|
||||||
|
chatreload:
|
||||||
|
description: Chat-Konfiguration neu laden
|
||||||
|
usage: /chatreload
|
||||||
|
|
||||||
|
# ── ChatModule – Admin-Info ───────────────────────────────
|
||||||
|
chatinfo:
|
||||||
|
description: Chat-Informationen ueber einen Spieler anzeigen (Admin)
|
||||||
|
usage: /chatinfo <Spieler>
|
||||||
|
|
||||||
|
# ── ChatModule – Chat-History ─────────────────────────────
|
||||||
|
chathist:
|
||||||
|
description: Chat-History aus dem Logfile anzeigen (Admin)
|
||||||
|
usage: /chathist [Spieler] [Anzahl]
|
||||||
|
|
||||||
|
# ── ChatModule – Mentions ─────────────────────────────────
|
||||||
|
mentions:
|
||||||
|
description: Mention-Benachrichtigungen ein-/ausschalten
|
||||||
|
usage: /mentions
|
||||||
|
aliases: [mention]
|
||||||
|
|
||||||
|
# ── ChatModule – Plugin-Bypass ────────────────────────────
|
||||||
|
chatbypass:
|
||||||
|
description: ChatModule fuer naechste Eingabe ueberspringen (fuer Plugin-Dialoge wie CMI)
|
||||||
|
usage: /chatbypass
|
||||||
|
aliases: [cbp]
|
||||||
|
|
||||||
|
# ── ChatModule – Account-Verknuepfung ─────────────────────
|
||||||
|
linkdiscord:
|
||||||
|
description: Minecraft-Account mit Discord verknuepfen
|
||||||
|
usage: /linkdiscord
|
||||||
|
aliases: [discordlink]
|
||||||
|
|
||||||
|
linktelegram:
|
||||||
|
description: Minecraft-Account mit Telegram verknuepfen
|
||||||
|
usage: /linktelegram
|
||||||
|
aliases: [telegramlink]
|
||||||
|
|
||||||
|
unlink:
|
||||||
|
description: Account-Verknuepfung aufheben
|
||||||
|
usage: /unlink <discord|telegram|all>
|
||||||
|
|
||||||
|
# ── ChatModule – Report ───────────────────────────────────
|
||||||
|
report:
|
||||||
|
description: Spieler melden
|
||||||
|
usage: /report <Spieler> <Grund>
|
||||||
|
|
||||||
|
reports:
|
||||||
|
description: Offene Reports anzeigen (Admin)
|
||||||
|
usage: /reports [all]
|
||||||
|
|
||||||
|
reportclose:
|
||||||
|
description: Report schliessen (Admin)
|
||||||
|
usage: /reportclose <ID>
|
||||||
|
|
||||||
permissions:
|
permissions:
|
||||||
# StatusAPI Core Permissions
|
# ── StatusAPI Core ────────────────────────────────────────
|
||||||
statusapi.update.notify:
|
statusapi.update.notify:
|
||||||
description: 'Erlaubt Update-Benachrichtigungen'
|
description: Erlaubt Update-Benachrichtigungen
|
||||||
default: op
|
default: op
|
||||||
|
|
||||||
|
# ── ChatModule – Kanaele ──────────────────────────────────
|
||||||
|
chat.channel.local:
|
||||||
|
description: Zugang zum Local-Kanal
|
||||||
|
default: true
|
||||||
|
|
||||||
|
chat.channel.trade:
|
||||||
|
description: Zugang zum Trade-Kanal
|
||||||
|
default: true
|
||||||
|
|
||||||
|
chat.channel.staff:
|
||||||
|
description: Zugang zum Staff-Kanal
|
||||||
|
default: false
|
||||||
|
|
||||||
|
# ── ChatModule – HelpOp ───────────────────────────────────
|
||||||
|
chat.helpop.receive:
|
||||||
|
description: HelpOp-Nachrichten empfangen
|
||||||
|
default: false
|
||||||
|
|
||||||
|
# ── ChatModule – Mute ─────────────────────────────────────
|
||||||
|
chat.mute:
|
||||||
|
description: Spieler muten / unmuten
|
||||||
|
default: false
|
||||||
|
|
||||||
|
# ── ChatModule – Broadcast ────────────────────────────────
|
||||||
|
chat.broadcast:
|
||||||
|
description: Broadcast-Nachrichten senden
|
||||||
|
default: false
|
||||||
|
|
||||||
|
# ── ChatModule – Social Spy ───────────────────────────────
|
||||||
|
chat.socialspy:
|
||||||
|
description: Private Nachrichten mitlesen
|
||||||
|
default: false
|
||||||
|
|
||||||
|
# ── ChatModule – Admin ────────────────────────────────────
|
||||||
|
chat.admin.bypass:
|
||||||
|
description: Admin-Bypass - Kann nicht geblockt/gemutet werden
|
||||||
|
default: op
|
||||||
|
|
||||||
|
chat.admin.notify:
|
||||||
|
description: Benachrichtigungen ueber Mutes und Blocks erhalten
|
||||||
|
default: false
|
||||||
|
|
||||||
|
# ── ChatModule – Report ───────────────────────────────────
|
||||||
|
chat.report:
|
||||||
|
description: Spieler reporten (/report)
|
||||||
|
default: true
|
||||||
|
|
||||||
|
# ── ChatModule – Farben ───────────────────────────────────
|
||||||
|
chat.color:
|
||||||
|
description: Farbcodes (&a, &b, ...) im Chat nutzen
|
||||||
|
default: false
|
||||||
|
|
||||||
|
chat.color.format:
|
||||||
|
description: Formatierungen (&l, &o, &n, ...) im Chat nutzen
|
||||||
|
default: false
|
||||||
|
|
||||||
|
# ── ChatModule – Filter ───────────────────────────────────
|
||||||
|
chat.filter.bypass:
|
||||||
|
description: Chat-Filter (Anti-Spam, Caps, Blacklist) umgehen
|
||||||
|
default: false
|
||||||
Reference in New Issue
Block a user