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

77 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
import java.util.ArrayList;
2011-07-18 22:06:02 +02:00
import com.massivecraft.factions.Conf;
import com.massivecraft.factions.FPlayer;
import com.massivecraft.factions.FPlayers;
2011-07-18 22:06:02 +02:00
import com.massivecraft.factions.Faction;
import com.massivecraft.factions.Factions;
import com.massivecraft.factions.struct.Permission;
2011-07-18 22:06:02 +02:00
import com.massivecraft.factions.struct.Role;
2011-03-23 17:39:56 +01:00
2011-03-19 13:00:03 +01:00
2011-10-09 20:10:19 +02:00
public class CmdCreate extends FCommand
{
2011-10-09 20:10:19 +02:00
public CmdCreate()
{
super();
this.aliases.add("create");
this.requiredArgs.add("faction tag");
//this.optionalArgs.put("", "");
2011-10-09 21:57:43 +02:00
this.permission = Permission.CREATE.node;
this.disableOnLock = true;
senderMustBePlayer = true;
senderMustBeMember = false;
senderMustBeModerator = false;
senderMustBeAdmin = false;
2011-03-23 17:39:56 +01:00
}
@Override
public void perform()
{
String tag = this.argAsString(0);
2011-03-19 13:00:03 +01:00
if (fme.hasFaction())
{
2011-10-10 01:21:05 +02:00
sendMessageParsed("<b>You must leave your current faction first.");
2011-03-19 13:00:03 +01:00
return;
}
if (Factions.i.isTagTaken(tag))
{
2011-10-10 01:21:05 +02:00
sendMessageParsed("<b>That tag is already in use.");
2011-03-19 13:00:03 +01:00
return;
}
ArrayList<String> tagValidationErrors = Factions.validateTag(tag);
if (tagValidationErrors.size() > 0)
{
2011-03-19 13:00:03 +01:00
sendMessage(tagValidationErrors);
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.econCostCreate))
{
return;
}
Faction faction = Factions.i.create();
2011-03-19 13:00:03 +01:00
faction.setTag(tag);
fme.setRole(Role.ADMIN);
fme.setFaction(faction);
2011-08-20 02:41:28 +02:00
for (FPlayer follower : FPlayers.i.getOnline())
{
follower.sendMessageParsed("%s<i> created a new faction %s", fme.getNameAndRelevant(follower), faction.getTag(follower));
2011-03-19 13:00:03 +01:00
}
2011-10-10 01:21:05 +02:00
sendMessageParsed("<i>You should now: %s", p.cmdBase.cmdDescription.getUseageTemplate());
2011-03-19 13:00:03 +01:00
}
}