Added commands to plugin.yml
This commit is contained in:
parent
dd2dca0544
commit
c802d8db9b
4 changed files with 36 additions and 4 deletions
26
plugin.yml
26
plugin.yml
|
@ -3,10 +3,6 @@ name: AliPresents
|
|||
version: 2.0.1
|
||||
|
||||
commands:
|
||||
pressalilink:
|
||||
description: Presses an Ali Link pressalilink frequency
|
||||
setalilink:
|
||||
description: Creates an Ali Link setalilink frequency
|
||||
flairme:
|
||||
description: Activates the Flair Me Command. Ask Ali, she was fucking tired when writing this description
|
||||
gpower:
|
||||
|
@ -15,7 +11,29 @@ commands:
|
|||
description: Official g-power command that activates the ghostie powerups
|
||||
powerdown:
|
||||
description: Offical g-power command that deactivates the ghostie powerups
|
||||
pressalilink:
|
||||
description: Presses an Ali Link pressalilink frequency
|
||||
setalilink:
|
||||
description: Creates an Ali Link setalilink frequency
|
||||
cbgm0:
|
||||
description: Creative Boundaries Gamemode 0, allows players to return to survival
|
||||
cbgm1:
|
||||
description: Creative Boundaries Gamemode 1, allows players to access creative within their towns. Creative is removed outside of towns, so be careful
|
||||
setdickmode:
|
||||
description: Should players automatically return to creative when outside town borders? Dickmode says yes.
|
||||
joinminigame:
|
||||
description: Join a Button Minigame
|
||||
leaveminigame:
|
||||
description: Leave a button minigame
|
||||
listfighters:
|
||||
description: List all fighters currently in a button minigame
|
||||
setcolourspawn:
|
||||
description: sets the spawn points for each colour in a button minigame
|
||||
addtouhc:
|
||||
description: Adds a player to the UltraHardcore match
|
||||
configurematch:
|
||||
description: Configures an UltraHardcore match
|
||||
schedulematch:
|
||||
description: Schedules an UltraHardcore match
|
||||
startmatch:
|
||||
description: Starts an UltraHardcore match
|
|
@ -4,6 +4,8 @@ import org.bukkit.plugin.java.JavaPlugin;
|
|||
|
||||
import alisolarflare.Module;
|
||||
import alisolarflare.uhc.commands.AddToUHC;
|
||||
import alisolarflare.uhc.commands.ConfigureMatch;
|
||||
import alisolarflare.uhc.commands.ScheduleMatch;
|
||||
import alisolarflare.uhc.commands.StartMatch;
|
||||
import alisolarflare.uhc.memory.MatchState;
|
||||
import alisolarflare.uhc.memory.UHCMatch;
|
||||
|
@ -22,5 +24,7 @@ public class UHCModule extends Module {
|
|||
|
||||
registerCommand(plugin, new AddToUHC(match));
|
||||
registerCommand(plugin, new StartMatch(match));
|
||||
registerCommand(plugin, new ConfigureMatch(match));
|
||||
registerCommand(plugin, new ScheduleMatch(match));
|
||||
}
|
||||
}
|
||||
|
|
|
@ -2,10 +2,15 @@ package alisolarflare.uhc.commands;
|
|||
|
||||
import org.bukkit.command.CommandSender;
|
||||
|
||||
import alisolarflare.uhc.memory.UHCMatch;
|
||||
import buttondevteam.lib.chat.TBMCCommandBase;
|
||||
|
||||
public class ConfigureMatch extends TBMCCommandBase{
|
||||
|
||||
public ConfigureMatch(UHCMatch match) {
|
||||
// TODO Auto-generated constructor stub
|
||||
}
|
||||
|
||||
@Override
|
||||
public String[] GetHelpText(String alias) {
|
||||
// TODO Auto-generated method stub
|
||||
|
|
|
@ -2,10 +2,15 @@ package alisolarflare.uhc.commands;
|
|||
|
||||
import org.bukkit.command.CommandSender;
|
||||
|
||||
import alisolarflare.uhc.memory.UHCMatch;
|
||||
import buttondevteam.lib.chat.TBMCCommandBase;
|
||||
|
||||
public class ScheduleMatch extends TBMCCommandBase{
|
||||
|
||||
public ScheduleMatch(UHCMatch match) {
|
||||
// TODO Auto-generated constructor stub
|
||||
}
|
||||
|
||||
@Override
|
||||
public String[] GetHelpText(String alias) {
|
||||
// TODO Auto-generated method stub
|
||||
|
|
Loading…
Reference in a new issue