TFM-4.3-Reloaded/src/me/StevenLawson/TotalFreedomMod/Commands/Command_wildcard.java

49 lines
1.7 KiB
Java
Raw Normal View History

2011-10-19 00:37:00 +00:00
package me.StevenLawson.TotalFreedomMod.Commands;
2013-12-01 11:13:39 +00:00
import net.minecraft.util.org.apache.commons.lang3.StringUtils;
import org.bukkit.ChatColor;
2011-10-19 00:37:00 +00:00
import org.bukkit.command.Command;
import org.bukkit.command.CommandSender;
import org.bukkit.entity.Player;
@CommandPermissions(level = AdminLevel.SUPER, source = SourceType.BOTH)
@CommandParameters(description = "Run any command on all users, username placeholder = ?.", usage = "/<command> [fluff] ? [fluff] ?")
2011-10-19 00:37:00 +00:00
public class Command_wildcard extends TFM_Command
{
@Override
public boolean run(CommandSender sender, Player sender_p, Command cmd, String commandLabel, String[] args, boolean senderIsConsole)
{
if (args[0].equals("wildcard"))
2011-10-19 00:37:00 +00:00
{
playerMsg("What the hell are you trying to do, you stupid idiot...", ChatColor.RED);
return true;
}
if (args[0].equals("gtfo"))
{
playerMsg("Nice try", ChatColor.RED);
return true;
}
if (args[0].equals("doom"))
{
playerMsg("Look, we all hate people, but this is not the way to deal with it, doom is evil enough!", ChatColor.RED);
return true;
}
if (args[0].equals("saconfig"))
{
playerMsg("WOA, WTF are you trying to do???", ChatColor.RED);
return true;
}
2011-10-19 00:37:00 +00:00
String base_command = StringUtils.join(args, " ");
2011-10-19 00:37:00 +00:00
2013-08-14 14:01:42 +00:00
for (Player player : server.getOnlinePlayers())
2011-10-19 00:37:00 +00:00
{
2013-08-14 14:01:42 +00:00
String out_command = base_command.replaceAll("\\x3f", player.getName());
playerMsg("Running Command: " + out_command);
server.dispatchCommand(sender, out_command);
2011-10-19 00:37:00 +00:00
}
return true;
}
}