This commit is contained in:
rattatwinko
2025-04-26 21:43:14 +02:00
commit c794b19531
25 changed files with 538 additions and 0 deletions

Binary file not shown.

Binary file not shown.

21
target/classes/config.yml Normal file
View File

@@ -0,0 +1,21 @@
# MOTD Quote Plugin Configuration
# How often to update the MOTD (in minutes)
update-interval-minutes: 60
# Maximum length for MOTD quotes
max-motd-length: 50
# Style settings
motd-prefix: "§e§l" # Gold color and bold
motd-suffix: ""
# Debug mode (shows more console output)
debug: false
# List of quotes to use for MOTD
quotes:
- "Wie heißt der Workshop? Rassismus ohne Schule"
- "What da fäck is hier passiert bitte sehr?"
- "Digga meine Yeezys!"
- "Da Sessel kommt auffi, nd owi."

Binary file not shown.

Binary file not shown.

22
target/classes/plugin.yml Normal file
View File

@@ -0,0 +1,22 @@
name: MOTD
version: 1.0-SNAPSHOT
main: org.server_info.MOTD.MOTD
api-version: 1.19
description: Sets the server MOTD to random quotes from config
author: YourName
commands:
motd:
description: Control the MOTD quote plugin
usage: /motd [refresh|reload]
permission: motd.use
aliases: [quotemotd]
permissions:
motd.use:
description: Allows using basic MOTD commands
default: true
motd.refresh:
description: Allows refreshing the MOTD quote
default: op
motd.reload:
description: Allows reloading the plugin configuration
default: op

View File

@@ -0,0 +1,3 @@
artifactId=MOTD
groupId=org.server_info
version=1.0-SNAPSHOT

Binary file not shown.