Factions/src/com/massivecraft/factions/commands/CmdJoin.java

82 lines
1.9 KiB
Java
Raw Normal View History

2011-07-18 22:06:02 +02:00
package com.massivecraft.factions.commands;
2011-03-19 13:00:03 +01:00
2011-07-18 22:06:02 +02:00
import com.massivecraft.factions.Conf;
import com.massivecraft.factions.Faction;
import com.massivecraft.factions.struct.Permission;
2011-03-19 13:00:03 +01:00
2011-10-09 20:10:19 +02:00
public class CmdJoin extends FCommand
{
2011-10-09 20:10:19 +02:00
public CmdJoin()
{
super();
this.aliases.add("join");
this.requiredArgs.add("faction name");
//this.optionalArgs.put("", "");
this.permission = Permission.COMMAND_JOIN.node;
2011-03-19 13:00:03 +01:00
senderMustBePlayer = true;
senderMustBeMember = false;
senderMustBeModerator = false;
senderMustBeAdmin = false;
2011-03-19 13:00:03 +01:00
}
@Override
public void perform()
{
if( isLocked() )
{
sendLockMessage();
return;
}
Faction faction = this.argAsFaction(0);
if (faction == null) return;
2011-03-19 13:00:03 +01:00
if ( ! faction.isNormal())
{
sendMessageParsed("<b>You may only join normal factions. This is a system faction.");
2011-03-23 17:39:56 +01:00
return;
}
2011-10-09 18:35:39 +02:00
if (faction == myFaction)
{
sendMessageParsed("<b>You are already a member of %s", faction.getTag(fme));
2011-03-19 13:00:03 +01:00
return;
}
if (fme.hasFaction())
{
sendMessageParsed("<b>You must leave your current faction first.");
2011-03-19 13:00:03 +01:00
return;
}
if (!Conf.CanLeaveWithNegativePower && fme.getPower() < 0)
{
sendMessageParsed("<b>You cannot join a faction until your power is positive.");
return;
}
if( ! faction.getOpen() && ! faction.isInvited(fme))
{
sendMessageParsed("<i>This guild requires invitation.");
faction.sendMessageParsed("%s<i> tried to join your faction.", fme.getNameAndRelevant(faction));
2011-03-19 13:00:03 +01:00
return;
}
// if economy is enabled, they're not on the bypass list, and this command has a cost set, make 'em pay
if (!payForCommand(Conf.econCostJoin))
{
return;
}
fme.sendMessageParsed("<i>You successfully joined %s", faction.getTag(fme));
faction.sendMessageParsed("<i>%s joined your faction.", fme.getNameAndRelevant(faction));
2011-03-19 13:00:03 +01:00
fme.resetFactionData();
fme.setFaction(faction);
faction.deinvite(fme);
2011-03-19 13:00:03 +01:00
}
}