bffa9df8f7
* added saveall command to save everything to disk * added reload command to reload everything from disk
60 lines
1.3 KiB
Java
60 lines
1.3 KiB
Java
package org.mcteam.factions.commands;
|
|
|
|
import org.mcteam.factions.Conf;
|
|
import org.mcteam.factions.Faction;
|
|
|
|
public class FCommandJoin extends FBaseCommand {
|
|
|
|
public FCommandJoin() {
|
|
aliases.add("join");
|
|
|
|
requiredParameters.add("faction name");
|
|
|
|
helpDescription = "Join a faction";
|
|
}
|
|
|
|
public void perform() {
|
|
|
|
if( isLocked() ) {
|
|
sendLockMessage();
|
|
return;
|
|
}
|
|
|
|
String factionName = parameters.get(0);
|
|
|
|
Faction faction = findFaction(factionName);
|
|
if (faction == null) {
|
|
return;
|
|
}
|
|
|
|
if ( ! faction.isNormal()) {
|
|
sendMessage("You may only join normal factions. This is a system faction.");
|
|
return;
|
|
}
|
|
|
|
if (faction == me.getFaction()) {
|
|
sendMessage("You are already a member of "+faction.getTag(me));
|
|
return;
|
|
}
|
|
|
|
if (me.hasFaction()) {
|
|
sendMessage("You must leave your current faction first.");
|
|
return;
|
|
}
|
|
|
|
if( ! faction.getOpen() && ! faction.isInvited(me)) {
|
|
sendMessage("This guild requires invitation.");
|
|
faction.sendMessage(me.getNameAndRelevant(faction)+Conf.colorSystem+" tried to join your faction.");
|
|
return;
|
|
}
|
|
|
|
me.sendMessage(Conf.colorSystem+"You successfully joined "+faction.getTag(me));
|
|
faction.sendMessage(me.getNameAndRelevant(faction)+Conf.colorSystem+" joined your faction.");
|
|
|
|
me.resetFactionData();
|
|
me.setFaction(faction);
|
|
faction.deinvite(me);
|
|
}
|
|
|
|
}
|