44 lines
1.5 KiB
Java
44 lines
1.5 KiB
Java
|
package com.massivecraft.factions.cmd;
|
||
|
|
||
|
import com.massivecraft.factions.Faction;
|
||
|
import com.massivecraft.factions.struct.Permission;
|
||
|
import com.massivecraft.factions.zcore.util.TL;
|
||
|
import org.bukkit.ChatColor;
|
||
|
|
||
|
public class CmdStealth extends FCommand {
|
||
|
public CmdStealth() {
|
||
|
this.aliases.add("ninja");
|
||
|
this.aliases.add("stealth");
|
||
|
this.permission = Permission.STEALTH.node;
|
||
|
|
||
|
this.disableOnLock = true;
|
||
|
|
||
|
this.senderMustBePlayer = true;
|
||
|
this.senderMustBeMember = false;
|
||
|
this.senderMustBeModerator = false;
|
||
|
this.senderMustBeColeader = false;
|
||
|
this.senderMustBeAdmin = false;
|
||
|
}
|
||
|
|
||
|
public void perform() {
|
||
|
//Grabs Faction
|
||
|
Faction faction = fme.getFaction();
|
||
|
|
||
|
if (faction != null && !faction.getId().equalsIgnoreCase("0") && !faction.getId().equalsIgnoreCase("none") && !faction.getId().equalsIgnoreCase("safezone") && !faction.getId().equalsIgnoreCase("warzone")) {
|
||
|
//Grabs Boolean From FPlayer
|
||
|
fme.setStealth(!fme.isStealthEnabled());
|
||
|
//Sends Enable/Disable Message
|
||
|
fme.msg(fme.isStealthEnabled() ? TL.COMMAND_STEALTH_ENABLE : TL.COMMAND_STEALTH_DISABLE);
|
||
|
|
||
|
} else {
|
||
|
//Send "Needed Faction" Message
|
||
|
fme.sendMessage(ChatColor.RED + "You must be in a faction to use this command");
|
||
|
}
|
||
|
}
|
||
|
@Override
|
||
|
public TL getUsageTranslation() {
|
||
|
return TL.COMMAND_STEALTH_DESCRIPTION;
|
||
|
}
|
||
|
|
||
|
}
|