mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-12 20:29:20 +00:00
bbe0ca9302
List of supported commands: ``` /afk /balance /balancetop /ban /banip /bigtree /book /broadcastworld /burn /clearinventory /condense /delhome /deljail /delwarp /eco /enchant /enderchest /essentials /exp /ext /feed /fireball /firework /gamemode /getpos /give /hat /heal /help /helpop /home /ignore /invsee /item /itemdb /jump /kick /kill /kit /lightning /list /mail /me /msg /mute /near /nick /nuke /pay /potion /powertool /ptime /pweather /recipe /remove /repair /sell /showkit /skull /speed /tempban /thunder /time /togglejail /tp /tpa /tpaall /tpahere /tpall /tphere /tpo /tpohere /tppos /tree /warp /weather /world /worth```
24 lines
549 B
Java
24 lines
549 B
Java
package com.earth2me.essentials.api;
|
|
|
|
import com.earth2me.essentials.User;
|
|
import org.bukkit.inventory.ItemStack;
|
|
|
|
import java.util.Collection;
|
|
import java.util.List;
|
|
|
|
|
|
public interface IItemDb {
|
|
ItemStack get(final String name, final int quantity) throws Exception;
|
|
|
|
ItemStack get(final String name) throws Exception;
|
|
|
|
String names(ItemStack item);
|
|
|
|
String name(ItemStack item);
|
|
|
|
List<ItemStack> getMatching(User user, String[] args) throws Exception;
|
|
|
|
String serialize(ItemStack is);
|
|
|
|
Collection<String> listNames();
|
|
}
|