mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-15 13:36:31 +00:00
31 lines
843 B
Java
31 lines
843 B
Java
![]() |
package com.earth2me.essentials.commands;
|
||
|
|
||
|
import org.bukkit.Server;
|
||
|
import com.earth2me.essentials.Essentials;
|
||
|
import com.earth2me.essentials.ItemDb;
|
||
|
import com.earth2me.essentials.User;
|
||
|
import com.earth2me.essentials.commands.EssentialsCommand;
|
||
|
import org.bukkit.inventory.ItemStack;
|
||
|
|
||
|
|
||
|
public class Commandsetworth extends EssentialsCommand
|
||
|
{
|
||
|
public Commandsetworth()
|
||
|
{
|
||
|
super("setworth");
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public void run(Server server, Essentials parent, User user, String commandLabel, String[] args) throws Exception
|
||
|
{
|
||
|
if(args.length < 2)
|
||
|
{
|
||
|
user.sendMessage("§cUsage: /" + commandLabel + " [itemname|id] [price]");
|
||
|
}
|
||
|
ItemStack stack = ItemDb.get(args[0]);
|
||
|
Essentials.getWorth().setPrice(Integer.toString(stack.getTypeId()), Integer.parseInt(args[1]));
|
||
|
user.charge(this);
|
||
|
user.sendMessage("§7Worth value set");
|
||
|
}
|
||
|
}
|