All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
xyz.upperlevel.spigot.gui.GuiUtils Maven / Gradle / Ivy
package xyz.upperlevel.spigot.gui;
import org.bukkit.DyeColor;
import org.bukkit.Material;
import org.bukkit.Sound;
import org.bukkit.TreeSpecies;
import org.bukkit.entity.Player;
import org.bukkit.inventory.ItemStack;
import org.bukkit.inventory.meta.ItemMeta;
import org.bukkit.inventory.meta.PotionMeta;
import org.bukkit.material.Wool;
import org.bukkit.potion.PotionData;
import org.bukkit.potion.PotionType;
import java.util.Arrays;
import static org.bukkit.ChatColor.RED;
public final class GuiUtils {
public static ItemStack wool(DyeColor color, String name, String... lores) {
return setNameAndLores(new Wool(color).toItemStack(1), name, lores);
}
@SuppressWarnings("deprecation")
public static ItemStack wood(TreeSpecies type, String name, String... lores) {
return setNameAndLores(new ItemStack(Material.WOOD, 1, type.getData()), name, lores);
}
public static ItemStack itemStack(Material display, String name, String... lores) {
return setNameAndLores(new ItemStack(display, 1), name, lores);
}
public static ItemStack potion(PotionType type, boolean extended, boolean upgraded, String name, String... lores) {
ItemStack potion = new ItemStack(Material.POTION, 1);
PotionMeta meta = (PotionMeta) potion.getItemMeta();
meta.setBasePotionData(new PotionData(type, extended, upgraded));
potion.setItemMeta(meta);
return potion;
}
public static ItemStack splashPotion(PotionType type, boolean extended, boolean upgraded, String name, String... lores) {
ItemStack potion = new ItemStack(Material.SPLASH_POTION, 1);
PotionMeta meta = (PotionMeta) potion.getItemMeta();
meta.setBasePotionData(new PotionData(type, extended, upgraded));
potion.setItemMeta(meta);
return potion;
}
public static ItemStack setNameAndLores(ItemStack item, String name, String... lores) {
ItemMeta meta = item.getItemMeta();
meta.setDisplayName(name);
meta.setLore(Arrays.asList(lores));
item.setItemMeta(meta);
return item;
}
public static void sendErrorMessage(Player player, String message) {
sendErrorMessage(player, message, Sound.BLOCK_ANVIL_USE);
}
public static void sendErrorMessage(Player player, String message, Sound sound) {
player.sendMessage(RED + message);
player.playSound(player.getLocation(), sound, 1, 1);
}
private GuiUtils() {}
}