mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-12 20:29:20 +00:00
55 lines
1.4 KiB
Java
55 lines
1.4 KiB
Java
package com.earth2me.essentials.commands;
|
|
|
|
import static com.earth2me.essentials.I18n._;
|
|
import com.earth2me.essentials.Trade;
|
|
import com.earth2me.essentials.User;
|
|
import java.math.BigDecimal;
|
|
import java.util.List;
|
|
import org.bukkit.Server;
|
|
import org.bukkit.entity.Player;
|
|
|
|
|
|
public class Commandpay extends EssentialsCommand
|
|
{
|
|
public Commandpay()
|
|
{
|
|
super("pay");
|
|
}
|
|
|
|
@Override
|
|
public void run(Server server, User user, String commandLabel, String[] args) throws Exception
|
|
{
|
|
if (args.length < 2)
|
|
{
|
|
throw new NotEnoughArgumentsException();
|
|
}
|
|
|
|
//TODO: TL this.
|
|
if (args[0].trim().length() < 2)
|
|
{
|
|
throw new NotEnoughArgumentsException("You need to specify a player to pay.");
|
|
}
|
|
|
|
BigDecimal amount = new BigDecimal(args[1].replaceAll("[^0-9\\.]", ""));
|
|
|
|
boolean skipHidden = !user.isAuthorized("essentials.vanish.interact");
|
|
boolean foundUser = false;
|
|
final List<Player> matchedPlayers = server.matchPlayer(args[0]);
|
|
for (Player matchPlayer : matchedPlayers)
|
|
{
|
|
User player = ess.getUser(matchPlayer);
|
|
if (skipHidden && player.isHidden())
|
|
{
|
|
continue;
|
|
}
|
|
foundUser = true;
|
|
user.payUser(player, amount);
|
|
Trade.log("Command", "Pay", "Player", user.getName(), new Trade(amount, ess), player.getName(), new Trade(amount, ess), user.getLocation(), ess);
|
|
}
|
|
|
|
if (!foundUser)
|
|
{
|
|
throw new PlayerNotFoundException();
|
|
}
|
|
}
|
|
}
|