This commit is contained in:
5vl
2022-04-06 21:50:22 +02:00
commit 3ec865d247
7 changed files with 296 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
package me.fivevl.staff;
import org.bukkit.plugin.java.JavaPlugin;
public final class Main extends JavaPlugin {
@Override
public void onEnable() {
// Plugin startup logic
}
@Override
public void onDisable() {
// Plugin shutdown logic
}
}

View File

@@ -0,0 +1,29 @@
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
- Freeze
- Inventory Lookup (Open inventory)
- Teleport to online players
- Invisibility
- Knockback Stick (Extra, useful to check if the player has no kb)
- PlaceholderAPI
- Toggle on/off each individual items, (Extra, per-player settings would be sweet)
*/
}