Skip to content

Instantly share code, notes, and snippets.

@DarkSeraphim
Created April 4, 2014 18:30
Show Gist options
  • Save DarkSeraphim/9980521 to your computer and use it in GitHub Desktop.
Save DarkSeraphim/9980521 to your computer and use it in GitHub Desktop.
Annotation commands for the addon manager @SensationCraft
@Command(name="ffa", description="Teleports you to the free for all arena")
@Aliases("freeforall")
public boolean freeForAll(CommandSender sender, org.bukkit.command.Command command, String label, String[] args)
{
if(sender instanceof Player)
{
((Player)sender).teleport(this.loc);
sender.sendMessage(ChatColor.YELLOW+"Have a good fight >:)!");
}
return true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment