Saber-Factions/src/com/massivecraft/factions/cmd/CmdJoin.java

74 lines
1.8 KiB
Java
Raw Normal View History

2011-10-09 21:57:43 +02:00
package com.massivecraft.factions.cmd;
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("", "");
2011-10-09 21:57:43 +02:00
this.permission = Permission.JOIN.node;
this.disableOnLock = true;
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()
{
Faction faction = this.argAsFaction(0);
if (faction == null) return;
2011-03-19 13:00:03 +01:00
if ( ! faction.isNormal())
{
2011-10-10 13:40:24 +02:00
msg("<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)
{
2011-10-10 13:40:24 +02:00
msg("<b>You are already a member of %s", faction.getTag(fme));
2011-03-19 13:00:03 +01:00
return;
}
if (fme.hasFaction())
{
2011-10-10 13:40:24 +02:00
msg("<b>You must leave your current faction first.");
2011-03-19 13:00:03 +01:00
return;
}
if (!Conf.canLeaveWithNegativePower && fme.getPower() < 0)
{
2011-10-10 13:40:24 +02:00
msg("<b>You cannot join a faction until your power is positive.");
return;
}
if( ! (faction.getOpen() || faction.isInvited(fme) || fme.isAdminBypassing()))
{
2011-10-10 13:40:24 +02:00
msg("<i>This faction requires invitation.");
2011-10-21 19:20:33 +02:00
faction.msg("%s<i> tried to join your faction.", fme.describeTo(faction, true));
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
2011-10-12 18:48:47 +02:00
if ( ! payForCommand(Conf.econCostJoin, "to join a faction", "for joining a faction")) return;
2011-10-10 13:40:24 +02:00
fme.msg("<i>You successfully joined %s", faction.getTag(fme));
2011-10-21 19:20:33 +02:00
faction.msg("<i>%s joined your faction.", fme.describeTo(faction, true));
2011-03-19 13:00:03 +01:00
fme.resetFactionData();
fme.setFaction(faction);
faction.deinvite(fme);
2011-03-19 13:00:03 +01:00
}
}