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

import org.bukkit.Server;
import com.earth2me.essentials.Essentials;
import com.earth2me.essentials.User;


public class Commandtpa extends EssentialsCommand
{
	public Commandtpa()
	{
		super("tpa");
	}

	@Override
	public void run(Server server, Essentials parent, User player, String commandLabel, String[] args) throws Exception
	{
		if(args.length < 1)
		{
			player.sendMessage("§cUsage: /tpa [playername]");
			return;
		}

		User p = getPlayer(server, args, 0);
		if (!p.isTeleEnabled()) throw new Exception(p.getDisplayName() + " has teleportation disabled.");
		player.charge(this);
		parent.tpcRequests.put(p, player);
		parent.tpcHere.put(p, false);
		p.sendMessage("§c" + player.getDisplayName() + "§c has requested to teleport to you.");
		p.sendMessage("§7To teleport, type §c/tpaccept§7.");
		p.sendMessage("§7To deny this request, type §c/tpdeny§7.");
		player.sendMessage("§7Request sent to " + p.getDisplayName() + "§7.");
	}
}