2011-09-20 02:52:08 +00:00
|
|
|
package me.StevenLawson.TotalFreedomMod;
|
|
|
|
|
2011-09-21 03:31:59 +00:00
|
|
|
import java.util.ArrayList;
|
2011-09-22 22:56:17 +00:00
|
|
|
import java.util.Arrays;
|
2011-09-21 03:31:59 +00:00
|
|
|
import java.util.List;
|
2011-09-20 02:52:08 +00:00
|
|
|
import java.util.logging.Level;
|
|
|
|
import java.util.logging.Logger;
|
|
|
|
import org.bukkit.Bukkit;
|
|
|
|
import org.bukkit.ChatColor;
|
2011-09-22 22:56:17 +00:00
|
|
|
import org.bukkit.GameMode;
|
2011-09-20 02:52:08 +00:00
|
|
|
import org.bukkit.command.Command;
|
|
|
|
import org.bukkit.command.CommandSender;
|
|
|
|
import org.bukkit.entity.Player;
|
2011-09-23 03:22:10 +00:00
|
|
|
import org.bukkit.event.Event;
|
|
|
|
import org.bukkit.plugin.PluginManager;
|
2011-09-20 02:52:08 +00:00
|
|
|
import org.bukkit.plugin.java.JavaPlugin;
|
2011-09-21 03:31:59 +00:00
|
|
|
import org.bukkit.util.config.Configuration;
|
2011-09-20 02:52:08 +00:00
|
|
|
|
|
|
|
public class TotalFreedomMod extends JavaPlugin
|
|
|
|
{
|
2011-09-23 15:45:34 +00:00
|
|
|
private final TotalFreedomModEntityListener entityListener = new TotalFreedomModEntityListener(this);
|
|
|
|
private final TotalFreedomModBlockListener blockListener = new TotalFreedomModBlockListener(this);
|
|
|
|
//private final TotalFreedomModPlayerListener playerListener = new TotalFreedomModPlayerListener(this);
|
|
|
|
|
2011-09-21 03:31:59 +00:00
|
|
|
private static final Logger log = Logger.getLogger("Minecraft");
|
2011-09-23 15:45:34 +00:00
|
|
|
|
2011-09-21 03:31:59 +00:00
|
|
|
protected static Configuration CONFIG;
|
|
|
|
private List<String> superadmins = new ArrayList<String>();
|
2011-09-23 03:22:10 +00:00
|
|
|
public Boolean allowExplosions = false;
|
2011-09-23 15:45:34 +00:00
|
|
|
public Boolean allowLavaDamage = false;
|
|
|
|
public Boolean allowFireDamage = false;
|
2011-09-20 02:52:08 +00:00
|
|
|
|
|
|
|
public void onEnable()
|
|
|
|
{
|
2011-09-21 03:31:59 +00:00
|
|
|
CONFIG = getConfiguration();
|
|
|
|
CONFIG.load();
|
2011-09-23 15:45:34 +00:00
|
|
|
if (CONFIG.getString("superadmins", null) == null) //Generate config file:
|
2011-09-21 03:31:59 +00:00
|
|
|
{
|
|
|
|
log.log(Level.INFO, "[Total Freedom Mod] - Generating default config file (plugins/TotalFreedomMod/config.yml)...");
|
2011-09-21 15:49:12 +00:00
|
|
|
CONFIG.setProperty("superadmins", new String[] {"Madgeek1450", "markbyron"});
|
2011-09-23 03:22:10 +00:00
|
|
|
CONFIG.setProperty("allow_explosions", false);
|
2011-09-23 15:45:34 +00:00
|
|
|
CONFIG.setProperty("allow_lava_damage", false);
|
|
|
|
CONFIG.setProperty("allow_fire", false);
|
2011-09-21 03:31:59 +00:00
|
|
|
CONFIG.save();
|
|
|
|
CONFIG.load();
|
|
|
|
}
|
|
|
|
superadmins = CONFIG.getStringList("superadmins", null);
|
2011-09-23 03:22:10 +00:00
|
|
|
allowExplosions = CONFIG.getBoolean("allow_explosions", false);
|
2011-09-23 15:45:34 +00:00
|
|
|
allowLavaDamage = CONFIG.getBoolean("allow_lava_damage", false);
|
|
|
|
allowFireDamage = CONFIG.getBoolean("allow_fire", false);
|
2011-09-23 03:22:10 +00:00
|
|
|
|
|
|
|
PluginManager pm = this.getServer().getPluginManager();
|
|
|
|
pm.registerEvent(Event.Type.ENTITY_EXPLODE, entityListener, Event.Priority.High, this);
|
2011-09-23 15:45:34 +00:00
|
|
|
pm.registerEvent(Event.Type.ENTITY_COMBUST, entityListener, Event.Priority.High, this);
|
|
|
|
pm.registerEvent(Event.Type.ENTITY_DAMAGE, entityListener, Event.Priority.High, this);
|
|
|
|
pm.registerEvent(Event.Type.BLOCK_IGNITE, blockListener, Event.Priority.High, this);
|
|
|
|
pm.registerEvent(Event.Type.BLOCK_BURN, blockListener, Event.Priority.High, this);
|
2011-09-21 03:31:59 +00:00
|
|
|
|
2011-09-20 16:14:09 +00:00
|
|
|
log.log(Level.INFO, "[Total Freedom Mod] - Enabled! - Version: " + this.getDescription().getVersion() + " by Madgeek1450");
|
2011-09-22 22:56:17 +00:00
|
|
|
log.log(Level.INFO, "[Total Freedom Mod] - Loaded superadmins: " + implodeStringList(", ", superadmins));
|
2011-09-20 02:52:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public void onDisable()
|
|
|
|
{
|
2011-09-20 16:14:09 +00:00
|
|
|
log.log(Level.INFO, "[Total Freedom Mod] - Disabled.");
|
2011-09-20 02:52:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public boolean onCommand(CommandSender sender, Command cmd, String commandLabel, String[] args)
|
|
|
|
{
|
2011-09-20 14:03:03 +00:00
|
|
|
Player player = null;
|
|
|
|
if (sender instanceof Player)
|
2011-09-20 02:52:08 +00:00
|
|
|
{
|
|
|
|
player = (Player)sender;
|
2011-09-23 03:22:10 +00:00
|
|
|
log.log(Level.INFO, String.format("[PLAYER_COMMAND] %s(%s): /%s %s", player.getName(), player.getDisplayName().replaceAll("\\xA7.", ""), commandLabel, implodeStringList(" ", Arrays.asList(args))));
|
2011-09-22 22:56:17 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
log.log(Level.INFO, String.format("[CONSOLE_COMMAND] %s: /%s %s", sender.getName(), commandLabel, implodeStringList(" ", Arrays.asList(args))));
|
2011-09-20 14:03:03 +00:00
|
|
|
}
|
2011-09-20 02:52:08 +00:00
|
|
|
|
|
|
|
if(cmd.getName().equalsIgnoreCase("opme"))
|
|
|
|
{
|
|
|
|
if (player == null)
|
|
|
|
{
|
|
|
|
sender.sendMessage("This command only works in-game.");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-09-20 14:03:03 +00:00
|
|
|
if (isUserSuperadmin(sender.getName()))
|
2011-09-20 02:52:08 +00:00
|
|
|
{
|
|
|
|
sender.setOp(true);
|
|
|
|
sender.sendMessage(ChatColor.YELLOW + "You are now op!");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
sender.sendMessage(ChatColor.YELLOW + "You do not have permission to use this command.");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2011-09-22 22:56:17 +00:00
|
|
|
else if(cmd.getName().equalsIgnoreCase("listreal") || cmd.getName().equalsIgnoreCase("list"))
|
2011-09-20 02:52:08 +00:00
|
|
|
{
|
|
|
|
StringBuilder online = new StringBuilder();
|
|
|
|
online.append(ChatColor.BLUE).append("There are ").append(ChatColor.RED).append(Bukkit.getOnlinePlayers().length);
|
|
|
|
online.append(ChatColor.BLUE).append(" out of a maximum ").append(ChatColor.RED).append(Bukkit.getMaxPlayers());
|
|
|
|
online.append(ChatColor.BLUE).append(" players online.");
|
|
|
|
sender.sendMessage(online.toString());
|
|
|
|
|
|
|
|
StringBuilder onlineUsers = new StringBuilder();
|
|
|
|
onlineUsers.append("Connected players: ");
|
|
|
|
boolean first = true;
|
|
|
|
for (Player p : Bukkit.getOnlinePlayers())
|
|
|
|
{
|
2011-09-20 14:03:03 +00:00
|
|
|
if (first)
|
2011-09-20 02:52:08 +00:00
|
|
|
{
|
|
|
|
first = false;
|
|
|
|
}
|
2011-09-20 14:03:03 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
onlineUsers.append(", ");
|
|
|
|
}
|
2011-09-20 02:52:08 +00:00
|
|
|
if (p.isOp())
|
|
|
|
{
|
|
|
|
onlineUsers.append(ChatColor.RED).append(p.getName());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
onlineUsers.append(p.getName());
|
|
|
|
}
|
|
|
|
onlineUsers.append(ChatColor.WHITE);
|
|
|
|
}
|
|
|
|
sender.sendMessage(onlineUsers.toString());
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if(cmd.getName().equalsIgnoreCase("deopall"))
|
|
|
|
{
|
2011-09-20 14:03:03 +00:00
|
|
|
if (isUserSuperadmin(sender.getName()) || player == null)
|
|
|
|
{
|
|
|
|
for (Player p : Bukkit.getOnlinePlayers())
|
|
|
|
{
|
|
|
|
if (!isUserSuperadmin(p.getName()) && !p.getName().equals(sender.getName()))
|
|
|
|
{
|
|
|
|
p.setOp(false);
|
|
|
|
}
|
|
|
|
}
|
2011-09-22 22:56:17 +00:00
|
|
|
|
2011-09-20 14:03:03 +00:00
|
|
|
Bukkit.broadcastMessage(ChatColor.YELLOW + sender.getName() + " de-op'd everyone on the server.");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
sender.sendMessage(ChatColor.YELLOW + "You do not have permission to use this command.");
|
|
|
|
}
|
|
|
|
|
2011-09-20 02:52:08 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if(cmd.getName().equalsIgnoreCase("opall"))
|
|
|
|
{
|
2011-09-20 14:03:03 +00:00
|
|
|
if (isUserSuperadmin(sender.getName()) || player == null)
|
|
|
|
{
|
2011-09-22 22:56:17 +00:00
|
|
|
boolean doSetGamemode = false;
|
|
|
|
GameMode targetGamemode = GameMode.CREATIVE;
|
|
|
|
if (args.length != 0)
|
|
|
|
{
|
|
|
|
if (args[0].equals("-c"))
|
|
|
|
{
|
|
|
|
doSetGamemode = true;
|
|
|
|
targetGamemode = GameMode.CREATIVE;
|
|
|
|
}
|
|
|
|
else if (args[0].equals("-s"))
|
|
|
|
{
|
|
|
|
doSetGamemode = true;
|
|
|
|
targetGamemode = GameMode.SURVIVAL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-09-20 14:03:03 +00:00
|
|
|
for (Player p : Bukkit.getOnlinePlayers())
|
|
|
|
{
|
|
|
|
p.setOp(true);
|
2011-09-22 22:56:17 +00:00
|
|
|
if (doSetGamemode) p.setGameMode(targetGamemode);
|
2011-09-20 14:03:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Bukkit.broadcastMessage(ChatColor.YELLOW + sender.getName() + " op'd everyone on the server.");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
sender.sendMessage(ChatColor.YELLOW + "You do not have permission to use this command.");
|
|
|
|
}
|
|
|
|
|
2011-09-20 02:52:08 +00:00
|
|
|
return true;
|
|
|
|
}
|
2011-09-20 16:14:09 +00:00
|
|
|
else if(cmd.getName().equalsIgnoreCase("qop")) //Quick OP
|
|
|
|
{
|
|
|
|
if (args.length != 1)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (sender.isOp() || player == null || isUserSuperadmin(sender.getName()))
|
|
|
|
{
|
2011-09-20 21:10:13 +00:00
|
|
|
boolean matched_player = false;
|
2011-09-20 16:14:09 +00:00
|
|
|
for (Player p : Bukkit.matchPlayer(args[0]))
|
|
|
|
{
|
2011-09-20 21:10:13 +00:00
|
|
|
matched_player = true;
|
|
|
|
|
2011-09-20 16:14:09 +00:00
|
|
|
p.setOp(true);
|
2011-09-20 21:10:13 +00:00
|
|
|
|
2011-09-20 16:14:09 +00:00
|
|
|
Command.broadcastCommandMessage(sender, "Oping " + p.getName());
|
|
|
|
p.sendMessage(ChatColor.YELLOW + "You are now op!");
|
|
|
|
}
|
2011-09-20 21:10:13 +00:00
|
|
|
if (!matched_player)
|
|
|
|
{
|
|
|
|
sender.sendMessage("No targets matched.");
|
|
|
|
}
|
2011-09-20 16:14:09 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
sender.sendMessage(ChatColor.YELLOW + "You do not have permission to use this command.");
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if(cmd.getName().equalsIgnoreCase("qdeop")) //Quick De-op
|
|
|
|
{
|
|
|
|
if (args.length != 1)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (sender.isOp() || player == null || isUserSuperadmin(sender.getName()))
|
|
|
|
{
|
2011-09-20 21:10:13 +00:00
|
|
|
boolean matched_player = false;
|
2011-09-20 16:14:09 +00:00
|
|
|
for (Player p : Bukkit.matchPlayer(args[0]))
|
|
|
|
{
|
2011-09-20 21:10:13 +00:00
|
|
|
matched_player = true;
|
|
|
|
|
2011-09-20 16:14:09 +00:00
|
|
|
p.setOp(false);
|
2011-09-20 21:10:13 +00:00
|
|
|
|
2011-09-20 16:14:09 +00:00
|
|
|
Command.broadcastCommandMessage(sender, "De-opping " + p.getName());
|
2011-09-22 22:56:17 +00:00
|
|
|
p.sendMessage(ChatColor.YELLOW + "You have been de-op'd.");
|
2011-09-20 16:14:09 +00:00
|
|
|
}
|
2011-09-20 21:10:13 +00:00
|
|
|
if (!matched_player)
|
|
|
|
{
|
|
|
|
sender.sendMessage("No targets matched.");
|
|
|
|
}
|
2011-09-20 16:14:09 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
sender.sendMessage(ChatColor.YELLOW + "You do not have permission to use this command.");
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2011-09-22 22:56:17 +00:00
|
|
|
else if(cmd.getName().equalsIgnoreCase("survival"))
|
|
|
|
{
|
|
|
|
if (player == null)
|
|
|
|
{
|
|
|
|
if (args.length == 0)
|
|
|
|
{
|
|
|
|
sender.sendMessage("When used from the console, you must define a target user to change gamemode on.");
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (!sender.isOp())
|
|
|
|
{
|
|
|
|
sender.sendMessage(ChatColor.YELLOW + "You do not have permission to use this command.");
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Player p;
|
|
|
|
if (args.length == 0)
|
|
|
|
{
|
|
|
|
p = Bukkit.getPlayerExact(sender.getName());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
List<Player> matches = Bukkit.matchPlayer(args[0]);
|
|
|
|
if (matches.isEmpty())
|
|
|
|
{
|
|
|
|
sender.sendMessage("Can't find user " + args[0]);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
p = matches.get(0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sender.sendMessage("Setting " + p.getName() + " to game mode 'Survival'.");
|
|
|
|
p.sendMessage(sender.getName() + " set your game mode to 'Survival'.");
|
|
|
|
p.setGameMode(GameMode.SURVIVAL);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if(cmd.getName().equalsIgnoreCase("creative"))
|
|
|
|
{
|
|
|
|
if (player == null)
|
|
|
|
{
|
|
|
|
if (args.length == 0)
|
|
|
|
{
|
|
|
|
sender.sendMessage("When used from the console, you must define a target user to change gamemode on.");
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (!sender.isOp())
|
|
|
|
{
|
|
|
|
sender.sendMessage(ChatColor.YELLOW + "You do not have permission to use this command.");
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Player p;
|
|
|
|
if (args.length == 0)
|
|
|
|
{
|
|
|
|
p = Bukkit.getPlayerExact(sender.getName());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
List<Player> matches = Bukkit.matchPlayer(args[0]);
|
|
|
|
if (matches.isEmpty())
|
|
|
|
{
|
|
|
|
sender.sendMessage("Can't find user " + args[0]);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
p = matches.get(0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sender.sendMessage("Setting " + p.getName() + " to game mode 'Creative'.");
|
|
|
|
p.sendMessage(sender.getName() + " set your game mode to 'Creative'.");
|
|
|
|
p.setGameMode(GameMode.CREATIVE);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if(cmd.getName().equalsIgnoreCase("wildcard"))
|
|
|
|
{
|
|
|
|
if (player == null || isUserSuperadmin(sender.getName()))
|
|
|
|
{
|
|
|
|
if (args[0].equals("wildcard"))
|
|
|
|
{
|
|
|
|
sender.sendMessage("What the hell are you trying to do, you stupid idiot...");
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
String base_command = implodeStringList(" ", Arrays.asList(args));
|
|
|
|
|
|
|
|
for (Player p : Bukkit.getOnlinePlayers())
|
|
|
|
{
|
|
|
|
String out_command = base_command.replaceAll("\\x3f", p.getName());
|
|
|
|
sender.sendMessage("Running Command: " + out_command);
|
|
|
|
Bukkit.getServer().dispatchCommand(sender, out_command);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
sender.sendMessage(ChatColor.YELLOW + "You do not have permission to use this command.");
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if(cmd.getName().equalsIgnoreCase("say"))
|
|
|
|
{
|
|
|
|
if (player == null || sender.isOp())
|
|
|
|
{
|
|
|
|
String message = implodeStringList(" ", Arrays.asList(args));
|
|
|
|
Bukkit.broadcastMessage(ChatColor.LIGHT_PURPLE + "[Server:" + sender.getName() + "] " + message);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
sender.sendMessage(ChatColor.YELLOW + "You do not have permission to use this command.");
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if(cmd.getName().equalsIgnoreCase("gtfo"))
|
|
|
|
{
|
|
|
|
if (args.length != 1)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (player == null || isUserSuperadmin(sender.getName()))
|
|
|
|
{
|
|
|
|
Player p;
|
|
|
|
List<Player> matches = Bukkit.matchPlayer(args[0]);
|
|
|
|
if (matches.isEmpty())
|
|
|
|
{
|
|
|
|
sender.sendMessage("Can't find user " + args[0]);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
p = matches.get(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
Bukkit.getServer().dispatchCommand(sender, "smite " + p.getName());
|
|
|
|
|
|
|
|
p.setOp(false);
|
|
|
|
|
|
|
|
String user_ip = p.getAddress().getAddress().toString().replaceAll("/", "").trim();
|
|
|
|
|
|
|
|
Bukkit.broadcastMessage(ChatColor.RED + "Banning " + p.getName());
|
|
|
|
Bukkit.banIP(user_ip);
|
|
|
|
Bukkit.getOfflinePlayer(p.getName()).setBanned(true);
|
|
|
|
|
|
|
|
p.kickPlayer("GTFO");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
sender.sendMessage(ChatColor.YELLOW + "You do not have permission to use this command.");
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if(cmd.getName().equalsIgnoreCase("stop"))
|
|
|
|
{
|
|
|
|
if (player == null || isUserSuperadmin(sender.getName()))
|
|
|
|
{
|
|
|
|
for (Player p : Bukkit.getOnlinePlayers())
|
|
|
|
{
|
|
|
|
p.kickPlayer("Server is going offline, come back in a few minutes.");
|
|
|
|
}
|
|
|
|
|
|
|
|
Bukkit.shutdown();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
sender.sendMessage(ChatColor.YELLOW + "You do not have permission to use this command.");
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2011-09-23 03:22:10 +00:00
|
|
|
else if(cmd.getName().equalsIgnoreCase("explosives"))
|
|
|
|
{
|
|
|
|
if (player == null || isUserSuperadmin(sender.getName()))
|
|
|
|
{
|
|
|
|
if (args.length != 1)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (args[0].equalsIgnoreCase("on"))
|
|
|
|
{
|
|
|
|
this.allowExplosions = true;
|
|
|
|
sender.sendMessage("Explosives are now enabled. Don't blow your fingers off!");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
this.allowExplosions = false;
|
|
|
|
sender.sendMessage("Explosives are now disabled. Funtime is over...");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
sender.sendMessage(ChatColor.YELLOW + "You do not have permission to use this command.");
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2011-09-22 22:56:17 +00:00
|
|
|
|
2011-09-20 02:52:08 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-09-22 22:56:17 +00:00
|
|
|
private static String implodeStringList(String glue, List<String> pieces)
|
|
|
|
{
|
|
|
|
StringBuilder output = new StringBuilder();
|
|
|
|
for (int i = 0; i < pieces.size(); i++)
|
|
|
|
{
|
|
|
|
if (i != 0)
|
|
|
|
{
|
|
|
|
output.append(glue);
|
|
|
|
}
|
|
|
|
output.append(pieces.get(i));
|
|
|
|
}
|
|
|
|
return output.toString();
|
|
|
|
}
|
|
|
|
|
2011-09-20 14:03:03 +00:00
|
|
|
private boolean isUserSuperadmin(String userName)
|
2011-09-20 02:52:08 +00:00
|
|
|
{
|
2011-09-21 03:31:59 +00:00
|
|
|
return superadmins.contains(userName);
|
2011-09-20 02:52:08 +00:00
|
|
|
}
|
|
|
|
}
|