mirror of
https://github.com/TheDeus-Group/TFM-4.3-Reloaded.git
synced 2024-11-01 03:39:19 +00:00
113 lines
7.5 KiB
Java
113 lines
7.5 KiB
Java
package me.StevenLawson.TotalFreedomMod.commands;
|
|
|
|
import org.bukkit.plugin.java.JavaPlugin;
|
|
|
|
public class Commands {
|
|
public static void registerCommands(JavaPlugin plugin) {
|
|
plugin.getCommand("adminmode").setExecutor(new Command_adminmode());
|
|
plugin.getCommand("adminworld").setExecutor(new Command_adminworld());
|
|
plugin.getCommand("blockcmd").setExecutor(new Command_blockcmd());
|
|
plugin.getCommand("cage").setExecutor(new Command_cage());
|
|
plugin.getCommand("cake").setExecutor(new Command_cake());
|
|
plugin.getCommand("cartsit").setExecutor(new Command_cartsit());
|
|
plugin.getCommand("cbtool").setExecutor(new Command_cbtool());
|
|
plugin.getCommand("cmdlist").setExecutor(new Command_cmdlist());
|
|
plugin.getCommand("cmdspy").setExecutor(new Command_cmdspy());
|
|
plugin.getCommand("colorme").setExecutor(new Command_colorme());
|
|
plugin.getCommand("creative").setExecutor(new Command_creative());
|
|
plugin.getCommand("csay").setExecutor(new Command_csay());
|
|
plugin.getCommand("deafen").setExecutor(new Command_deafen());
|
|
plugin.getCommand("debug").setExecutor(new Command_debug());
|
|
plugin.getCommand("denick").setExecutor(new Command_denick());
|
|
plugin.getCommand("deop").setExecutor(new Command_deop());
|
|
plugin.getCommand("deopall").setExecutor(new Command_deopall());
|
|
plugin.getCommand("dispfill").setExecutor(new Command_dispfill());
|
|
plugin.getCommand("doom").setExecutor(new Command_doom());
|
|
plugin.getCommand("enchant").setExecutor(new Command_enchant());
|
|
plugin.getCommand("ender").setExecutor(new Command_ender());
|
|
plugin.getCommand("expel").setExecutor(new Command_expel());
|
|
plugin.getCommand("findip").setExecutor(new Command_findip());
|
|
plugin.getCommand("flatlands").setExecutor(new Command_flatlands());
|
|
plugin.getCommand("fr").setExecutor(new Command_fr());
|
|
plugin.getCommand("fuckoff").setExecutor(new Command_fuckoff());
|
|
plugin.getCommand("gadmin").setExecutor(new Command_gadmin());
|
|
plugin.getCommand("gcmd").setExecutor(new Command_gcmd());
|
|
plugin.getCommand("glist").setExecutor(new Command_glist());
|
|
plugin.getCommand("gtfo").setExecutor(new Command_gtfo());
|
|
plugin.getCommand("halt").setExecutor(new Command_halt());
|
|
plugin.getCommand("health").setExecutor(new Command_health());
|
|
plugin.getCommand("invis").setExecutor(new Command_invis());
|
|
plugin.getCommand("jumppads").setExecutor(new Command_jumppads());
|
|
plugin.getCommand("kicknoob").setExecutor(new Command_kicknoob());
|
|
plugin.getCommand("landmine").setExecutor(new Command_landmine());
|
|
plugin.getCommand("lastcmd").setExecutor(new Command_lastcmd());
|
|
plugin.getCommand("list").setExecutor(new Command_list());
|
|
plugin.getCommand("localspawn").setExecutor(new Command_localspawn());
|
|
plugin.getCommand("lockup").setExecutor(new Command_lockup());
|
|
plugin.getCommand("logs").setExecutor(new Command_logs());
|
|
plugin.getCommand("moblimiter").setExecutor(new Command_moblimiter());
|
|
plugin.getCommand("mp").setExecutor(new Command_mp());
|
|
plugin.getCommand("mp44").setExecutor(new Command_mp44());
|
|
plugin.getCommand("myadmin").setExecutor(new Command_myadmin());
|
|
plugin.getCommand("nether").setExecutor(new Command_nether());
|
|
plugin.getCommand("nf").setExecutor(new Command_nf());
|
|
plugin.getCommand("nickclean").setExecutor(new Command_nickclean());
|
|
plugin.getCommand("nicknyan").setExecutor(new Command_nicknyan());
|
|
plugin.getCommand("o").setExecutor(new Command_o());
|
|
plugin.getCommand("onlinemode").setExecutor(new Command_onlinemode());
|
|
plugin.getCommand("op").setExecutor(new Command_op());
|
|
plugin.getCommand("opall").setExecutor(new Command_opall());
|
|
plugin.getCommand("opme").setExecutor(new Command_opme());
|
|
plugin.getCommand("ops").setExecutor(new Command_ops());
|
|
plugin.getCommand("orbit").setExecutor(new Command_orbit());
|
|
plugin.getCommand("overlord").setExecutor(new Command_overlord());
|
|
plugin.getCommand("permban").setExecutor(new Command_permban());
|
|
plugin.getCommand("plugincontrol").setExecutor(new Command_plugincontrol());
|
|
plugin.getCommand("potion").setExecutor(new Command_potion());
|
|
plugin.getCommand("premium").setExecutor(new Command_premium());
|
|
plugin.getCommand("protectarea").setExecutor(new Command_protectarea());
|
|
plugin.getCommand("purgeall").setExecutor(new Command_purgeall());
|
|
plugin.getCommand("qdeop").setExecutor(new Command_qdeop());
|
|
plugin.getCommand("qop").setExecutor(new Command_qop());
|
|
plugin.getCommand("radar").setExecutor(new Command_radar());
|
|
plugin.getCommand("rank").setExecutor(new Command_rank());
|
|
plugin.getCommand("rawsay").setExecutor(new Command_rawsay());
|
|
plugin.getCommand("rd").setExecutor(new Command_rd());
|
|
plugin.getCommand("report").setExecutor(new Command_report());
|
|
plugin.getCommand("ro").setExecutor(new Command_ro());
|
|
plugin.getCommand("rollback").setExecutor(new Command_rollback());
|
|
plugin.getCommand("saconfig").setExecutor(new Command_saconfig());
|
|
plugin.getCommand("say").setExecutor(new Command_say());
|
|
plugin.getCommand("setl").setExecutor(new Command_setl());
|
|
plugin.getCommand("setlevel").setExecutor(new Command_setlevel());
|
|
plugin.getCommand("setlever").setExecutor(new Command_setlever());
|
|
plugin.getCommand("setspawnworld").setExecutor(new Command_setspawnworld());
|
|
plugin.getCommand("smite").setExecutor(new Command_smite());
|
|
plugin.getCommand("spectator").setExecutor(new Command_spectator());
|
|
plugin.getCommand("status").setExecutor(new Command_status());
|
|
plugin.getCommand("stfu").setExecutor(new Command_stfu());
|
|
plugin.getCommand("stop").setExecutor(new Command_stop());
|
|
plugin.getCommand("survival").setExecutor(new Command_survival());
|
|
plugin.getCommand("tag").setExecutor(new Command_tag());
|
|
plugin.getCommand("tagnyan").setExecutor(new Command_tagnyan());
|
|
plugin.getCommand("tban").setExecutor(new Command_tban());
|
|
plugin.getCommand("tempban").setExecutor(new Command_tempban());
|
|
plugin.getCommand("tfbanlist").setExecutor(new Command_tfbanlist());
|
|
plugin.getCommand("tfipbanlist").setExecutor(new Command_tfipbanlist());
|
|
plugin.getCommand("tfm").setExecutor(new Command_tfm());
|
|
plugin.getCommand("toggle").setExecutor(new Command_toggle());
|
|
plugin.getCommand("tossmob").setExecutor(new Command_tossmob());
|
|
plugin.getCommand("trail").setExecutor(new Command_trail());
|
|
plugin.getCommand("updatetfm").setExecutor(new Command_updatetfm());
|
|
plugin.getCommand("uuid").setExecutor(new Command_uuid());
|
|
plugin.getCommand("warn").setExecutor(new Command_warn());
|
|
plugin.getCommand("whitelist").setExecutor(new Command_whitelist());
|
|
plugin.getCommand("whohas").setExecutor(new Command_whohas());
|
|
plugin.getCommand("wildcard").setExecutor(new Command_wildcard());
|
|
plugin.getCommand("wipeflatlands").setExecutor(new Command_wipeflatlands());
|
|
plugin.getCommand("wipeuserdata").setExecutor(new Command_wipeuserdata());
|
|
plugin.getCommand("whoami").setExecutor(new Command_whoami());
|
|
plugin.getCommand("resetplayer").setExecutor(new Command_resetplayer());
|
|
}
|
|
}
|