2012-01-09 20:00:13 +01:00
|
|
|
package com.gmail.nossr50.commands.mc;
|
|
|
|
|
|
|
|
import org.bukkit.ChatColor;
|
|
|
|
import org.bukkit.command.Command;
|
|
|
|
import org.bukkit.command.CommandExecutor;
|
|
|
|
import org.bukkit.command.CommandSender;
|
|
|
|
import org.bukkit.entity.Player;
|
|
|
|
|
|
|
|
import com.gmail.nossr50.Users;
|
|
|
|
import com.gmail.nossr50.mcMMO;
|
|
|
|
import com.gmail.nossr50.mcPermissions;
|
|
|
|
import com.gmail.nossr50.datatypes.PlayerProfile;
|
|
|
|
import com.gmail.nossr50.locale.mcLocale;
|
|
|
|
|
|
|
|
public class McrefreshCommand implements CommandExecutor {
|
|
|
|
private final mcMMO plugin;
|
|
|
|
|
|
|
|
public McrefreshCommand(mcMMO instance) {
|
|
|
|
this.plugin = instance;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean onCommand(CommandSender sender, Command command, String label, String[] args) {
|
|
|
|
|
|
|
|
if (!(sender instanceof Player)) {
|
|
|
|
sender.sendMessage("This command does not support console useage.");
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
Player player = (Player) sender;
|
|
|
|
PlayerProfile PP = Users.getProfile(player);
|
|
|
|
|
|
|
|
if (!mcPermissions.getInstance().mcrefresh(player)) {
|
|
|
|
player.sendMessage(ChatColor.YELLOW + "[mcMMO] " + ChatColor.DARK_RED + mcLocale.getString("mcPlayerListener.NoPermission"));
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if (args.length >= 1 && (plugin.getServer().getPlayer(args[0]) != null)) {
|
|
|
|
player.sendMessage("You have refreshed " + args[0] + "'s cooldowns!");
|
|
|
|
player = plugin.getServer().getPlayer(args[0]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* PREP MODES
|
|
|
|
*/
|
|
|
|
PP = Users.getProfile(player);
|
|
|
|
PP.setRecentlyHurt((long) 0);
|
|
|
|
PP.setHoePreparationMode(false);
|
|
|
|
PP.setAxePreparationMode(false);
|
|
|
|
PP.setFistsPreparationMode(false);
|
|
|
|
PP.setSwordsPreparationMode(false);
|
|
|
|
PP.setPickaxePreparationMode(false);
|
|
|
|
|
2012-02-09 20:10:39 +01:00
|
|
|
|
|
|
|
//RESET COOLDOWNS
|
|
|
|
PP.resetCooldowns();
|
|
|
|
PP.setGreenTerraMode(false);
|
2012-01-09 20:00:13 +01:00
|
|
|
PP.setGigaDrillBreakerMode(false);
|
|
|
|
PP.setSerratedStrikesMode(false);
|
|
|
|
PP.setSuperBreakerMode(false);
|
|
|
|
PP.setTreeFellerMode(false);
|
|
|
|
PP.setBerserkMode(false);
|
|
|
|
|
|
|
|
player.sendMessage(mcLocale.getString("mcPlayerListener.AbilitiesRefreshed"));
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|