Factions/src/com/massivecraft/factions/cmd/CmdClaim.java

54 lines
1.1 KiB
Java
Raw Normal View History

2011-10-09 21:57:43 +02:00
package com.massivecraft.factions.cmd;
2011-11-27 22:47:40 +01:00
import java.util.Set;
import org.bukkit.Location;
import com.massivecraft.factions.FLocation;
2011-10-22 16:00:24 +02:00
import com.massivecraft.factions.Faction;
import com.massivecraft.factions.struct.Permission;
2011-10-09 20:10:19 +02:00
public class CmdClaim extends FCommand
{
2011-10-09 20:10:19 +02:00
public CmdClaim()
{
super();
this.aliases.add("claim");
//this.requiredArgs.add("");
2011-10-22 16:00:24 +02:00
this.optionalArgs.put("faction", "your");
2011-11-27 22:47:40 +01:00
this.optionalArgs.put("radius", "1");
2011-10-09 21:57:43 +02:00
this.permission = Permission.CLAIM.node;
this.disableOnLock = true;
senderMustBePlayer = true;
senderMustBeMember = false;
2011-10-23 17:55:53 +02:00
senderMustBeOfficer = false;
senderMustBeLeader = false;
}
@Override
public void perform()
{
2011-11-27 22:47:40 +01:00
// Read and validate input
2011-10-22 16:00:24 +02:00
Faction forFaction = this.argAsFaction(0, myFaction);
2011-11-27 22:47:40 +01:00
double radius = this.argAsDouble(1, 1d);
radius -= 0.5;
if (radius <= 0)
{
msg("<b>That radius is to small.");
return;
}
// Get the FLocations
Set<FLocation> flocs = new FLocation(me).getCircle(radius);
for (FLocation floc : flocs)
{
fme.attemptClaim(forFaction, new Location(floc.getWorld(), floc.getX()*16, 1, floc.getZ()*16), true);
}
}
}