summaryrefslogtreecommitdiffstats
path: root/Essentials/src/net/ess3/commands/Commandsetworth.java
blob: fca384aa6a3ba2d44f0416c71bf298ba3dfc68c5 (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 net.ess3.commands;

import static net.ess3.I18n._;
import net.ess3.api.IUser;
import org.bukkit.command.CommandSender;
import org.bukkit.inventory.ItemStack;



public class Commandsetworth extends EssentialsCommand
{
	@Override
	public void run(final IUser user, final String commandLabel, final String[] args) throws Exception
	{
		if (args.length < 2)
		{
			throw new NotEnoughArgumentsException();
		}

		ItemStack stack;
		String price;

		if (args.length == 1)
		{
			stack = user.getPlayer().getInventory().getItemInHand();
			price = args[0];
		}
		else
		{
			stack = ess.getItemDb().get(args[0]);
			price = args[1];
		}

		ess.getWorth().setPrice(stack, Double.parseDouble(price));
		user.sendMessage(_("worthSet"));
	}	

	@Override
	protected void run(final CommandSender sender, final String commandLabel, final String[] args) throws Exception
	{
		if (args.length < 2)
		{
			throw new NotEnoughArgumentsException();
		}

		final ItemStack stack = ess.getItemDb().get(args[0]);
		ess.getWorth().setPrice(stack, Double.parseDouble(args[1]));
		sender.sendMessage(_("worthSet"));
	}
}