blob: 74be65774b2268d8b0726d7ecb79f4ef85173c60 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
package net.ess3.commands;
import java.util.Locale;
import static net.ess3.I18n._;
import net.ess3.api.IUser;
import net.ess3.bukkit.LivingEntities;
import net.ess3.economy.Trade;
import net.ess3.permissions.Permissions;
import net.ess3.utils.LocationUtil;
import net.ess3.utils.Util;
import org.bukkit.Location;
import org.bukkit.Material;
import org.bukkit.block.CreatureSpawner;
import org.bukkit.entity.EntityType;
public class Commandspawner extends EssentialsCommand
{
@Override
protected void run(final IUser user, final String commandLabel, final String[] args) throws Exception
{
if (args.length < 1 || args[0].length() < 2)
{
throw new NotEnoughArgumentsException(_("mobsAvailable", Util.joinList(LivingEntities.getLivingEntityList())));
}
final Location target = LocationUtil.getTarget(user.getPlayer());
if (target == null || target.getBlock().getType() != Material.MOB_SPAWNER)
{
throw new Exception(_("mobSpawnTarget"));
}
try
{
String name = args[0];
EntityType mob = null;
mob = LivingEntities.fromName(name);
if (mob == null)
{
user.sendMessage(_("invalidMob"));
return;
}
if (!Permissions.SPAWNER.isAuthorized(user, mob.getName()))
{
throw new Exception(_("unableToSpawnMob"));
}
int delay = 0;
if(args.length > 1 && Util.isInt(args[1]))
{
delay = Integer.parseInt(args[1]);
}
final Trade charge = new Trade("spawner-" + mob.getName().toLowerCase(Locale.ENGLISH), ess);
charge.isAffordableFor(user);
CreatureSpawner spawner = ((CreatureSpawner)target.getBlock().getState());
spawner.setSpawnedType(mob);
spawner.setDelay(delay);
charge.charge(user);
user.sendMessage(_("setSpawner", mob.getName()));
}
catch (Throwable ex)
{
throw new Exception(_("mobSpawnError"), ex);
}
}
}
|