mirror of
https://github.com/5vl/Staff.git
synced 2025-09-18 14:33:39 +00:00
Init
This commit is contained in:
17
src/main/java/me/fivevl/staff/Main.java
Normal file
17
src/main/java/me/fivevl/staff/Main.java
Normal 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
|
||||
}
|
||||
}
|
29
src/main/java/me/fivevl/staff/Main.kt
Normal file
29
src/main/java/me/fivevl/staff/Main.kt
Normal 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)
|
||||
*/
|
||||
}
|
Reference in New Issue
Block a user