2011-10-19 00:37:00 +00:00
|
|
|
package me.StevenLawson.TotalFreedomMod.Commands;
|
|
|
|
|
2014-07-17 21:28:32 +00:00
|
|
|
import me.StevenLawson.TotalFreedomMod.TFM_CommandBlocker;
|
2013-12-01 11:13:39 +00:00
|
|
|
import net.minecraft.util.org.apache.commons.lang3.StringUtils;
|
2013-01-07 14:56:53 +00:00
|
|
|
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;
|
|
|
|
|
2013-03-19 22:05:20 +00:00
|
|
|
@CommandPermissions(level = AdminLevel.SUPER, source = SourceType.BOTH)
|
2013-04-10 02:05:24 +00:00
|
|
|
@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)
|
|
|
|
{
|
2014-01-31 18:05:40 +00:00
|
|
|
if (args.length == 0)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-11-24 01:22:52 +00:00
|
|
|
if (args[0].equals("wildcard"))
|
2011-10-19 00:37:00 +00:00
|
|
|
{
|
2013-01-07 14:56:53 +00:00
|
|
|
playerMsg("What the hell are you trying to do, you stupid idiot...", ChatColor.RED);
|
2012-11-24 01:22:52 +00:00
|
|
|
return true;
|
|
|
|
}
|
2013-06-02 16:17:33 +00:00
|
|
|
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
|
|
|
|
2014-07-17 21:28:32 +00:00
|
|
|
String baseCommand = StringUtils.join(args, " ");
|
|
|
|
|
|
|
|
if (TFM_CommandBlocker.isCommandBlocked(baseCommand, sender))
|
|
|
|
{
|
|
|
|
// CommandBlocker handles messages and broadcasts
|
|
|
|
return true;
|
|
|
|
}
|
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
|
|
|
{
|
2014-07-17 21:28:32 +00:00
|
|
|
String out_command = baseCommand.replaceAll("\\x3f", player.getName());
|
2013-01-07 14:56:53 +00:00
|
|
|
playerMsg("Running Command: " + out_command);
|
2012-11-24 01:22:52 +00:00
|
|
|
server.dispatchCommand(sender, out_command);
|
2011-10-19 00:37:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|