2011-10-09 21:57:43 +02:00
|
|
|
package com.massivecraft.factions.cmd;
|
2011-03-22 15:45:41 +01:00
|
|
|
|
2011-09-10 06:26:15 +02:00
|
|
|
import com.massivecraft.factions.Conf;
|
2011-09-24 12:04:49 +02:00
|
|
|
import com.massivecraft.factions.struct.ChatMode;
|
2011-10-09 14:53:38 +02:00
|
|
|
import com.massivecraft.factions.struct.Permission;
|
2011-09-10 06:26:15 +02:00
|
|
|
|
2014-04-04 20:55:21 +02:00
|
|
|
public class CmdChat extends FCommand {
|
|
|
|
|
|
|
|
public CmdChat() {
|
2014-07-01 22:10:18 +02:00
|
|
|
super();
|
|
|
|
this.aliases.add("c");
|
|
|
|
this.aliases.add("chat");
|
2014-04-04 20:55:21 +02:00
|
|
|
|
|
|
|
//this.requiredArgs.add("");
|
|
|
|
this.optionalArgs.put("mode", "next");
|
|
|
|
|
2014-07-01 22:10:18 +02:00
|
|
|
this.permission = Permission.CHAT.node;
|
|
|
|
this.disableOnLock = false;
|
2014-04-04 20:55:21 +02:00
|
|
|
|
2014-07-01 22:10:18 +02:00
|
|
|
senderMustBePlayer = true;
|
|
|
|
senderMustBeMember = true;
|
|
|
|
senderMustBeModerator = false;
|
|
|
|
senderMustBeAdmin = false;
|
2014-04-04 20:55:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void perform() {
|
|
|
|
if (!Conf.factionOnlyChat) {
|
2014-07-01 22:10:18 +02:00
|
|
|
msg("<b>The built in chat chat channels are disabled on this server.");
|
|
|
|
return;
|
2014-04-04 20:55:21 +02:00
|
|
|
}
|
|
|
|
|
2014-07-01 22:10:18 +02:00
|
|
|
String modeString = this.argAsString(0);
|
|
|
|
ChatMode modeTarget = fme.getChatMode().getNext();
|
2014-04-04 20:55:21 +02:00
|
|
|
|
|
|
|
if (modeString != null) {
|
2014-07-01 22:10:18 +02:00
|
|
|
modeString.toLowerCase();
|
|
|
|
if (modeString.startsWith("p")) {
|
2014-04-04 20:55:21 +02:00
|
|
|
modeTarget = ChatMode.PUBLIC;
|
2014-07-01 21:52:40 +02:00
|
|
|
} else if (modeString.startsWith("a")) {
|
2014-04-04 20:55:21 +02:00
|
|
|
modeTarget = ChatMode.ALLIANCE;
|
2014-07-01 21:52:40 +02:00
|
|
|
} else if (modeString.startsWith("f")) {
|
2014-04-04 20:55:21 +02:00
|
|
|
modeTarget = ChatMode.FACTION;
|
2014-07-01 21:52:40 +02:00
|
|
|
} else {
|
2014-07-01 22:10:18 +02:00
|
|
|
msg("<b>Unrecognised chat mode. <i>Please enter either 'a','f' or 'p'");
|
|
|
|
return;
|
2014-04-04 20:55:21 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fme.setChatMode(modeTarget);
|
|
|
|
|
|
|
|
if (fme.getChatMode() == ChatMode.PUBLIC) {
|
|
|
|
msg("<i>Public chat mode.");
|
2014-07-01 21:52:40 +02:00
|
|
|
} else if (fme.getChatMode() == ChatMode.ALLIANCE) {
|
2014-04-04 20:55:21 +02:00
|
|
|
msg("<i>Alliance only chat mode.");
|
2014-07-01 21:52:40 +02:00
|
|
|
} else {
|
2014-04-04 20:55:21 +02:00
|
|
|
msg("<i>Faction only chat mode.");
|
|
|
|
}
|
|
|
|
}
|
2011-03-22 15:45:41 +01:00
|
|
|
}
|