summaryrefslogtreecommitdiffstats
path: root/Essentials/src/com/earth2me/essentials/commands/Commandlightning.java
blob: dc43878330a41569fea4b41dc996c99976aac31a (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
package com.earth2me.essentials.commands;

import com.earth2me.essentials.User;
import com.earth2me.essentials.Util;
import org.bukkit.Server;
import org.bukkit.command.CommandSender;
import org.bukkit.entity.Player;


public class Commandlightning extends EssentialsCommand
{
	public Commandlightning()
	{
		super("lightning");
	}

	@Override
	public void run(Server server, CommandSender sender, String commandLabel, String[] args) throws Exception
	{

		User user = null;
		if (sender instanceof Player)
		{
			user = ess.getUser(((Player)sender));
		}
		if (args.length < 1 & user != null)
		{
			user.getWorld().strikeLightning(user.getTargetBlock(null, 600).getLocation());
			return;
		}

		if (server.matchPlayer(args[0]).isEmpty())
		{
			throw new Exception(Util.i18n("playerNotFound"));
		}

		for (Player p : server.matchPlayer(args[0]))
		{
			sender.sendMessage(Util.format("lightningUse", p.getDisplayName()));
			p.getWorld().strikeLightning(p.getLocation());
			if (!ess.getUser(p).isGodModeEnabled()) {
				p.setHealth(p.getHealth() < 5 ? 0 : p.getHealth() - 5);
			}
			if (ess.getSettings().warnOnSmite())
			{
				p.sendMessage(Util.i18n("lightningSmited"));
			}
		}
	}
}