mirror of
https://github.com/5vl/Staff.git
synced 2025-05-24 06:57:00 +00:00
28 lines
735 B
Kotlin
28 lines
735 B
Kotlin
package me.fivevl.staff
|
|
|
|
import org.bukkit.plugin.java.JavaPlugin
|
|
|
|
class Main : JavaPlugin() {
|
|
override fun onEnable() {
|
|
logger.info("Staff plugin enabled.")
|
|
}
|
|
|
|
override fun onDisable() {
|
|
logger.info("Staff plugin disabled.")
|
|
}
|
|
|
|
|
|
/*
|
|
FEATURES:
|
|
DONE:
|
|
|
|
NOT DONE:
|
|
- Staff mode (Invisibility, fly, items)
|
|
- Freeze (Command and freeze wand in staff mode)
|
|
- Open inventory (Command and wand in staff mode) with permission for being able to edit it
|
|
- Teleport to online players
|
|
- Knockback Stick (Extra, useful to check if the player has no kb)
|
|
- PlaceholderAPI support
|
|
*/
|
|
}
|