mirror of
https://e.coding.net/circlecloud/Soulbound.git
synced 2024-11-22 01:49:09 +00:00
补全部分汉化 移除无用代码...
Signed-off-by: 502647092 <jtb1@163.com>
This commit is contained in:
parent
220ca9e339
commit
6195f57d62
@ -18,7 +18,6 @@ import com.me.tft_02.soulbound.listeners.BlockListener;
|
|||||||
import com.me.tft_02.soulbound.listeners.EntityListener;
|
import com.me.tft_02.soulbound.listeners.EntityListener;
|
||||||
import com.me.tft_02.soulbound.listeners.InventoryListener;
|
import com.me.tft_02.soulbound.listeners.InventoryListener;
|
||||||
import com.me.tft_02.soulbound.listeners.PlayerListener;
|
import com.me.tft_02.soulbound.listeners.PlayerListener;
|
||||||
import com.me.tft_02.soulbound.util.LogFilter;
|
|
||||||
|
|
||||||
import cn.citycraft.PluginHelper.config.FileConfig;
|
import cn.citycraft.PluginHelper.config.FileConfig;
|
||||||
import cn.citycraft.PluginHelper.utils.VersionChecker;
|
import cn.citycraft.PluginHelper.utils.VersionChecker;
|
||||||
@ -75,7 +74,6 @@ public class Soulbound extends JavaPlugin {
|
|||||||
@Override
|
@Override
|
||||||
public void onEnable() {
|
public void onEnable() {
|
||||||
p = this;
|
p = this;
|
||||||
getLogger().setFilter(new LogFilter(this));
|
|
||||||
|
|
||||||
setupFilePaths();
|
setupFilePaths();
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
package com.me.tft_02.soulbound.config;
|
package com.me.tft_02.soulbound.config;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
import cn.citycraft.PluginHelper.config.FileConfig;
|
import cn.citycraft.PluginHelper.config.FileConfig;
|
||||||
@ -20,48 +19,10 @@ public class Config {
|
|||||||
return config.getStringList("Soulbound.Blocked_Commands");
|
return config.getStringList("Soulbound.Blocked_Commands");
|
||||||
}
|
}
|
||||||
|
|
||||||
public static boolean getConfigOverwriteEnabled() {
|
|
||||||
return config.getBoolean("General.Config_Update_Overwrite", true);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static boolean getDeleteOnDrop() {
|
public static boolean getDeleteOnDrop() {
|
||||||
return config.getBoolean("Soulbound.Delete_On_Drop", false);
|
return config.getBoolean("Soulbound.Delete_On_Drop", false);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static List<String> getDiabloDropsBindOnEquipTiers() {
|
|
||||||
return getDiabloDropsItemTiers("BindOnEquip");
|
|
||||||
}
|
|
||||||
|
|
||||||
public static List<String> getDiabloDropsBindOnPickupTiers() {
|
|
||||||
return getDiabloDropsItemTiers("BindOnPickup");
|
|
||||||
}
|
|
||||||
|
|
||||||
public static List<String> getDiabloDropsBindOnUseTiers() {
|
|
||||||
return getDiabloDropsItemTiers("BindOnUse");
|
|
||||||
}
|
|
||||||
|
|
||||||
public static List<String> getDiabloDropsItemTiers(final String bindType) {
|
|
||||||
final String[] tiersString = config.getString("Dependency_Plugins.DiabloDrops." + bindType).replaceAll(" ", "").split("[,]");
|
|
||||||
final List<String> tiers = new ArrayList<String>();
|
|
||||||
|
|
||||||
for (final String tier : tiersString) {
|
|
||||||
tiers.add(tier);
|
|
||||||
}
|
|
||||||
return tiers;
|
|
||||||
}
|
|
||||||
|
|
||||||
public static boolean getEBRBindOnEquip() {
|
|
||||||
return config.getBoolean("Dependency_Plugins.EpicBossRecoded.BindOnEquip");
|
|
||||||
}
|
|
||||||
|
|
||||||
public static boolean getEBRBindOnPickup() {
|
|
||||||
return config.getBoolean("Dependency_Plugins.EpicBossRecoded.BindOnPickup");
|
|
||||||
}
|
|
||||||
|
|
||||||
public static boolean getEBRBindOnUse() {
|
|
||||||
return config.getBoolean("Dependency_Plugins.EpicBossRecoded.BindOnUse");
|
|
||||||
}
|
|
||||||
|
|
||||||
public static boolean getFeedbackEnabled() {
|
public static boolean getFeedbackEnabled() {
|
||||||
return config.getBoolean("Soulbound.Feedback_Messages_Enabled", true);
|
return config.getBoolean("Soulbound.Feedback_Messages_Enabled", true);
|
||||||
}
|
}
|
||||||
@ -70,36 +31,6 @@ public class Config {
|
|||||||
return config.getBoolean("Soulbound.Infinite_Durability", false);
|
return config.getBoolean("Soulbound.Infinite_Durability", false);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static boolean getLoreLocksBindKeys() {
|
|
||||||
return config.getBoolean("Dependency_Plugins.LoreLocks.Bind_Keys");
|
|
||||||
}
|
|
||||||
|
|
||||||
public static List<String> getMythicDropsBindOnEquipTiers() {
|
|
||||||
return getMythicDropsItemTiers("BindOnEquip");
|
|
||||||
}
|
|
||||||
|
|
||||||
public static List<String> getMythicDropsBindOnPickupTiers() {
|
|
||||||
return getMythicDropsItemTiers("BindOnPickup");
|
|
||||||
}
|
|
||||||
|
|
||||||
public static List<String> getMythicDropsBindOnUseTiers() {
|
|
||||||
return getMythicDropsItemTiers("BindOnUse");
|
|
||||||
}
|
|
||||||
|
|
||||||
public static List<String> getMythicDropsItemTiers(final String bindType) {
|
|
||||||
final String[] tiersString = config.getString("Dependency_Plugins.MythicDrops." + bindType).replaceAll(" ", "").split("[,]");
|
|
||||||
final List<String> tiers = new ArrayList<String>();
|
|
||||||
|
|
||||||
for (final String tier : tiersString) {
|
|
||||||
tiers.add(tier);
|
|
||||||
}
|
|
||||||
return tiers;
|
|
||||||
}
|
|
||||||
|
|
||||||
public static boolean getPreferBeta() {
|
|
||||||
return config.getBoolean("General.Prefer_Beta", false);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static boolean getPreventItemDrop() {
|
public static boolean getPreventItemDrop() {
|
||||||
return config.getBoolean("Soulbound.Prevent_Item_Drop", false);
|
return config.getBoolean("Soulbound.Prevent_Item_Drop", false);
|
||||||
}
|
}
|
||||||
@ -108,18 +39,6 @@ public class Config {
|
|||||||
return config.getBoolean("Soulbound.Show_Name_In_Lore", true);
|
return config.getBoolean("Soulbound.Show_Name_In_Lore", true);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static boolean getStatsTrackingEnabled() {
|
|
||||||
return config.getBoolean("General.Stats_Tracking", true);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static boolean getUpdateCheckEnabled() {
|
|
||||||
return config.getBoolean("General.Update_Check", true);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static boolean getVerboseLoggingEnabled() {
|
|
||||||
return config.getBoolean("General.Verbose_Logging", false);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void load(final FileConfig config) {
|
public static void load(final FileConfig config) {
|
||||||
Config.config = config;
|
Config.config = config;
|
||||||
}
|
}
|
||||||
|
@ -43,7 +43,7 @@ public class InventoryListener implements Listener {
|
|||||||
if (itemType != ItemType.SOULBOUND) {
|
if (itemType != ItemType.SOULBOUND) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (!Config.getAllowItemStoring() && !(inventoryType == InventoryType.CRAFTING)) {
|
if (!Config.getAllowItemStoring() && inventoryType != InventoryType.CRAFTING) {
|
||||||
event.setCancelled(true);
|
event.setCancelled(true);
|
||||||
}
|
}
|
||||||
if (ItemUtils.isBindedPlayer(player, itemStack) || Permissions.pickupBypass(player)) {
|
if (ItemUtils.isBindedPlayer(player, itemStack) || Permissions.pickupBypass(player)) {
|
||||||
|
@ -50,7 +50,7 @@ public class PlayerListener implements Listener {
|
|||||||
final String command = event.getMessage();
|
final String command = event.getMessage();
|
||||||
|
|
||||||
if (ItemUtils.isSoulbound(itemStack) && Config.getBlockedCommands().contains(command)) {
|
if (ItemUtils.isSoulbound(itemStack) && Config.getBlockedCommands().contains(command)) {
|
||||||
player.sendMessage(ChatColor.RED + "You're not allowed to use " + ChatColor.GOLD + command + ChatColor.RED + " command while holding a Soulbound item.");
|
player.sendMessage(ChatColor.RED + "不允许使用命令 " + ChatColor.GOLD + command + ChatColor.RED + " 当拿着绑定物品的时候.");
|
||||||
event.setCancelled(true);
|
event.setCancelled(true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -29,7 +29,7 @@ public class SelfListener implements Listener {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (count >= maxAmount) {
|
if (count >= maxAmount) {
|
||||||
player.sendMessage(ChatColor.RED + "Cannot Soulbind any more items, maximum amount reached! " + ChatColor.GOLD + "(" + maxAmount + ")");
|
player.sendMessage(ChatColor.RED + "无法绑定更多的物品, 已到达最大上限! " + ChatColor.GOLD + "(" + maxAmount + ")");
|
||||||
event.setCancelled(true);
|
event.setCancelled(true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -9,26 +9,25 @@ import com.me.tft_02.soulbound.datatypes.ActionType;
|
|||||||
import com.me.tft_02.soulbound.util.ItemUtils;
|
import com.me.tft_02.soulbound.util.ItemUtils;
|
||||||
|
|
||||||
public class SoulbindInventoryTask extends BukkitRunnable {
|
public class SoulbindInventoryTask extends BukkitRunnable {
|
||||||
private Player player;
|
private final ActionType actionType;
|
||||||
private ActionType actionType;
|
private final Player player;
|
||||||
|
|
||||||
public SoulbindInventoryTask(Player player, ActionType actionType) {
|
public SoulbindInventoryTask(final Player player, final ActionType actionType) {
|
||||||
this.player = player;
|
this.player = player;
|
||||||
this.actionType = actionType;
|
this.actionType = actionType;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void run() {
|
public void run() {
|
||||||
for (ItemStack itemStack : player.getInventory().getContents()) {
|
for (final ItemStack itemStack : player.getInventory().getContents()) {
|
||||||
if (itemStack != null && ItemsConfig.isActionItem(itemStack, actionType)) {
|
if (itemStack != null && ItemsConfig.isActionItem(itemStack, actionType)) {
|
||||||
ItemUtils.soulbindItem(player, itemStack);
|
ItemUtils.soulbindItem(player, itemStack);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
for (final ItemStack itemStack : player.getInventory().getArmorContents()) {
|
||||||
for (ItemStack itemStack : player.getInventory().getArmorContents()) {
|
if (itemStack != null && ItemsConfig.isActionItem(itemStack, actionType)) {
|
||||||
if (itemStack != null && ItemsConfig.isActionItem(itemStack, actionType)) {
|
ItemUtils.soulbindItem(player, itemStack);
|
||||||
ItemUtils.soulbindItem(player, itemStack);
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -8,24 +8,23 @@ import com.me.tft_02.soulbound.util.ItemUtils;
|
|||||||
import com.me.tft_02.soulbound.util.ItemUtils.ItemType;
|
import com.me.tft_02.soulbound.util.ItemUtils.ItemType;
|
||||||
|
|
||||||
public class UpdateArmorTask extends BukkitRunnable {
|
public class UpdateArmorTask extends BukkitRunnable {
|
||||||
private Player player;
|
private final Player player;
|
||||||
|
|
||||||
public UpdateArmorTask(Player player) {
|
public UpdateArmorTask(final Player player) {
|
||||||
this.player = player;
|
this.player = player;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
public void handleBindOnEquip(final Player player) {
|
||||||
public void run() {
|
for (final ItemStack armor : player.getInventory().getArmorContents()) {
|
||||||
handleBindOnEquip(player);
|
if (armor != null && ItemUtils.getItemType(armor) == ItemType.BIND_ON_EQUIP) {
|
||||||
}
|
ItemUtils.soulbindItem(player, armor);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
player.getInventory().setArmorContents(player.getInventory().getArmorContents());
|
||||||
|
}
|
||||||
|
|
||||||
public void handleBindOnEquip(Player player) {
|
@Override
|
||||||
for (ItemStack armor : player.getInventory().getArmorContents()) {
|
public void run() {
|
||||||
if (armor != null && ItemUtils.getItemType(armor) == ItemType.BIND_ON_EQUIP) {
|
handleBindOnEquip(player);
|
||||||
ItemUtils.soulbindItem(player, armor);
|
}
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
player.getInventory().setArmorContents(player.getInventory().getArmorContents());
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -4,9 +4,9 @@ import org.bukkit.entity.Player;
|
|||||||
import org.bukkit.scheduler.BukkitRunnable;
|
import org.bukkit.scheduler.BukkitRunnable;
|
||||||
|
|
||||||
public class UpdateInventoryTask extends BukkitRunnable {
|
public class UpdateInventoryTask extends BukkitRunnable {
|
||||||
private Player player;
|
private final Player player;
|
||||||
|
|
||||||
public UpdateInventoryTask(Player player) {
|
public UpdateInventoryTask(final Player player) {
|
||||||
this.player = player;
|
this.player = player;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -7,32 +7,30 @@ import org.bukkit.entity.Player;
|
|||||||
|
|
||||||
public final class CommandUtils {
|
public final class CommandUtils {
|
||||||
|
|
||||||
public static String[] extractArgs(String command) {
|
public static String[] extractArgs(final String command) {
|
||||||
String[] args = {""};
|
String[] args = { "" };
|
||||||
String[] split = command.split(" ", 2);
|
final String[] split = command.split(" ", 2);
|
||||||
|
if (split.length > 1) {
|
||||||
|
args = split[1].split(" ");
|
||||||
|
}
|
||||||
|
return args;
|
||||||
|
}
|
||||||
|
|
||||||
if (split.length > 1) {
|
public static boolean isOffline(final CommandSender sender, final OfflinePlayer player) {
|
||||||
args = split[1].split(" ");
|
if (player != null && player.isOnline()) {
|
||||||
}
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
return args;
|
sender.sendMessage(ChatColor.RED + "当前命令不能作用于离线的玩家.");
|
||||||
}
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
public static boolean noConsoleUsage(CommandSender sender) {
|
public static boolean noConsoleUsage(final CommandSender sender) {
|
||||||
if (sender instanceof Player) {
|
if (sender instanceof Player) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
sender.sendMessage("This command does not support console usage.");
|
sender.sendMessage("当前命令不能再控制台执行!");
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static boolean isOffline(CommandSender sender, OfflinePlayer player) {
|
|
||||||
if (player != null && player.isOnline()) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
sender.sendMessage(ChatColor.RED + "This command does not work for offline players.");
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -6,10 +6,10 @@ import com.me.tft_02.soulbound.config.Config;
|
|||||||
|
|
||||||
public class DurabilityUtils {
|
public class DurabilityUtils {
|
||||||
|
|
||||||
public static void handleInfiniteDurability(ItemStack itemStack) {
|
public static void handleInfiniteDurability(final ItemStack itemStack) {
|
||||||
if (Config.getInfiniteDurability() && ItemUtils.isSoulbound(itemStack)) {
|
if (Config.getInfiniteDurability() && ItemUtils.isSoulbound(itemStack)) {
|
||||||
itemStack.setDurability((short) 0);
|
itemStack.setDurability((short) 0);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -13,363 +13,361 @@ import com.me.tft_02.soulbound.config.Config;
|
|||||||
import com.me.tft_02.soulbound.events.SoulbindItemEvent;
|
import com.me.tft_02.soulbound.events.SoulbindItemEvent;
|
||||||
|
|
||||||
public class ItemUtils {
|
public class ItemUtils {
|
||||||
public enum ItemType {
|
public static ItemStack boeItem(final ItemStack itemStack) {
|
||||||
NORMAL,
|
if (itemStack == null) {
|
||||||
SOULBOUND,
|
return itemStack;
|
||||||
BIND_ON_PICKUP,
|
}
|
||||||
BIND_ON_USE,
|
|
||||||
BIND_ON_EQUIP;
|
|
||||||
}
|
|
||||||
|
|
||||||
public static ItemStack soulbindItem(Player player, ItemStack itemStack) {
|
if (isBindOnEquip(itemStack)) {
|
||||||
if (itemStack == null) {
|
return itemStack;
|
||||||
return itemStack;
|
}
|
||||||
}
|
|
||||||
|
|
||||||
if (isSoulbound(itemStack)) {
|
final ItemMeta itemMeta = itemStack.getItemMeta();
|
||||||
return itemStack;
|
|
||||||
}
|
|
||||||
|
|
||||||
SoulbindItemEvent soulbindItemEvent = new SoulbindItemEvent(player, itemStack);
|
final List<String> itemLore = new ArrayList<String>();
|
||||||
Soulbound.p.getServer().getPluginManager().callEvent(soulbindItemEvent);
|
if (itemMeta.hasLore()) {
|
||||||
itemStack = soulbindItemEvent.getItemStack();
|
itemLore.addAll(itemMeta.getLore());
|
||||||
|
}
|
||||||
|
itemLore.add(Misc.EQUIPBIND_TAG);
|
||||||
|
itemMeta.setLore(itemLore);
|
||||||
|
itemStack.setItemMeta(itemMeta);
|
||||||
|
return itemStack;
|
||||||
|
}
|
||||||
|
|
||||||
if (soulbindItemEvent.isCancelled()) {
|
public static ItemStack bopItem(final ItemStack itemStack) {
|
||||||
return itemStack;
|
if (itemStack == null) {
|
||||||
}
|
return itemStack;
|
||||||
|
}
|
||||||
|
|
||||||
ItemMeta itemMeta = itemStack.getItemMeta();
|
if (isBindOnPickup(itemStack)) {
|
||||||
List<String> itemLore = new ArrayList<String>();
|
return itemStack;
|
||||||
|
}
|
||||||
|
|
||||||
if (itemMeta.hasLore()) {
|
final ItemMeta itemMeta = itemStack.getItemMeta();
|
||||||
List<String> oldLore = itemMeta.getLore();
|
|
||||||
oldLore.remove(Misc.EQUIPBIND_TAG);
|
|
||||||
oldLore.remove(Misc.PICKUPBIND_TAG);
|
|
||||||
oldLore.remove(Misc.USEBIND_TAG);
|
|
||||||
itemLore.addAll(oldLore);
|
|
||||||
}
|
|
||||||
|
|
||||||
itemLore.add(Misc.SOULBOUND_TAG);
|
final List<String> itemLore = new ArrayList<String>();
|
||||||
|
if (itemMeta.hasLore()) {
|
||||||
|
itemLore.addAll(itemMeta.getLore());
|
||||||
|
}
|
||||||
|
itemLore.add(Misc.PICKUPBIND_TAG);
|
||||||
|
itemMeta.setLore(itemLore);
|
||||||
|
itemStack.setItemMeta(itemMeta);
|
||||||
|
return itemStack;
|
||||||
|
}
|
||||||
|
|
||||||
if (Config.getShowNameInLore()) {
|
public static ItemStack bouItem(final ItemStack itemStack) {
|
||||||
itemLore.add(player.getName());
|
if (itemStack == null) {
|
||||||
}
|
return itemStack;
|
||||||
|
}
|
||||||
|
|
||||||
itemMeta.setLore(itemLore);
|
if (isBindOnUse(itemStack)) {
|
||||||
itemStack.setItemMeta(itemMeta);
|
return itemStack;
|
||||||
return itemStack;
|
}
|
||||||
}
|
|
||||||
|
|
||||||
public static ItemStack bopItem(ItemStack itemStack) {
|
final ItemMeta itemMeta = itemStack.getItemMeta();
|
||||||
if (itemStack == null) {
|
|
||||||
return itemStack;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (isBindOnPickup(itemStack)) {
|
final List<String> itemLore = new ArrayList<String>();
|
||||||
return itemStack;
|
if (itemMeta.hasLore()) {
|
||||||
}
|
itemLore.addAll(itemMeta.getLore());
|
||||||
|
}
|
||||||
|
itemLore.add(Misc.USEBIND_TAG);
|
||||||
|
itemMeta.setLore(itemLore);
|
||||||
|
itemStack.setItemMeta(itemMeta);
|
||||||
|
return itemStack;
|
||||||
|
}
|
||||||
|
|
||||||
ItemMeta itemMeta = itemStack.getItemMeta();
|
public static ItemType getItemType(final ItemStack itemStack) {
|
||||||
|
if (itemStack == null) {
|
||||||
|
return ItemType.NORMAL;
|
||||||
|
} else if (isSoulbound(itemStack)) {
|
||||||
|
return ItemType.SOULBOUND;
|
||||||
|
} else if (isBindOnPickup(itemStack)) {
|
||||||
|
return ItemType.BIND_ON_PICKUP;
|
||||||
|
} else if (isBindOnUse(itemStack)) {
|
||||||
|
return ItemType.BIND_ON_USE;
|
||||||
|
} else if (isBindOnEquip(itemStack)) {
|
||||||
|
return ItemType.BIND_ON_EQUIP;
|
||||||
|
} else {
|
||||||
|
return ItemType.NORMAL;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
List<String> itemLore = new ArrayList<String>();
|
public static boolean isBindedPlayer(final Player player, final ItemStack itemStack) {
|
||||||
if (itemMeta.hasLore()) {
|
final List<String> itemLore = itemStack.getItemMeta().getLore();
|
||||||
itemLore.addAll(itemMeta.getLore());
|
|
||||||
}
|
|
||||||
itemLore.add(Misc.PICKUPBIND_TAG);
|
|
||||||
itemMeta.setLore(itemLore);
|
|
||||||
itemStack.setItemMeta(itemMeta);
|
|
||||||
return itemStack;
|
|
||||||
}
|
|
||||||
|
|
||||||
public static ItemStack boeItem(ItemStack itemStack) {
|
return itemLore.contains(player.getName());
|
||||||
if (itemStack == null) {
|
}
|
||||||
return itemStack;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (isBindOnEquip(itemStack)) {
|
public static boolean isBindOnEquip(final ItemStack itemStack) {
|
||||||
return itemStack;
|
if (!itemStack.hasItemMeta()) {
|
||||||
}
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
ItemMeta itemMeta = itemStack.getItemMeta();
|
final ItemMeta itemMeta = itemStack.getItemMeta();
|
||||||
|
if (itemMeta.hasLore()) {
|
||||||
|
final List<String> itemLore = itemMeta.getLore();
|
||||||
|
if (itemLore.contains(Misc.EQUIPBIND_TAG)) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
List<String> itemLore = new ArrayList<String>();
|
public static boolean isBindOnPickup(final ItemStack itemStack) {
|
||||||
if (itemMeta.hasLore()) {
|
if (!itemStack.hasItemMeta()) {
|
||||||
itemLore.addAll(itemMeta.getLore());
|
return false;
|
||||||
}
|
}
|
||||||
itemLore.add(Misc.EQUIPBIND_TAG);
|
|
||||||
itemMeta.setLore(itemLore);
|
|
||||||
itemStack.setItemMeta(itemMeta);
|
|
||||||
return itemStack;
|
|
||||||
}
|
|
||||||
|
|
||||||
public static ItemStack bouItem(ItemStack itemStack) {
|
final ItemMeta itemMeta = itemStack.getItemMeta();
|
||||||
if (itemStack == null) {
|
if (itemMeta.hasLore()) {
|
||||||
return itemStack;
|
final List<String> itemLore = itemMeta.getLore();
|
||||||
}
|
if (itemLore.contains(Misc.PICKUPBIND_TAG)) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
if (isBindOnUse(itemStack)) {
|
public static boolean isBindOnUse(final ItemStack itemStack) {
|
||||||
return itemStack;
|
if (!itemStack.hasItemMeta()) {
|
||||||
}
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
ItemMeta itemMeta = itemStack.getItemMeta();
|
final ItemMeta itemMeta = itemStack.getItemMeta();
|
||||||
|
if (itemMeta.hasLore()) {
|
||||||
|
final List<String> itemLore = itemMeta.getLore();
|
||||||
|
if (itemLore.contains(Misc.USEBIND_TAG)) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
List<String> itemLore = new ArrayList<String>();
|
/**
|
||||||
if (itemMeta.hasLore()) {
|
* Checks to see if an item is a chainmail armor piece.
|
||||||
itemLore.addAll(itemMeta.getLore());
|
*
|
||||||
}
|
* @param is
|
||||||
itemLore.add(Misc.USEBIND_TAG);
|
* Item to check
|
||||||
itemMeta.setLore(itemLore);
|
*
|
||||||
itemStack.setItemMeta(itemMeta);
|
* @return true if the item is chainmail armor, false otherwise
|
||||||
return itemStack;
|
*/
|
||||||
}
|
public static boolean isChainmailArmor(final ItemStack is) {
|
||||||
|
switch (is.getType()) {
|
||||||
|
case CHAINMAIL_BOOTS:
|
||||||
|
case CHAINMAIL_CHESTPLATE:
|
||||||
|
case CHAINMAIL_HELMET:
|
||||||
|
case CHAINMAIL_LEGGINGS:
|
||||||
|
return true;
|
||||||
|
default:
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public static ItemStack unbindItem(ItemStack itemStack) {
|
/**
|
||||||
if (itemStack == null) {
|
* Checks to see if an item is a diamond armor piece.
|
||||||
return null;
|
*
|
||||||
}
|
* @param is
|
||||||
|
* Item to check
|
||||||
|
*
|
||||||
|
* @return true if the item is diamond armor, false otherwise
|
||||||
|
*/
|
||||||
|
public static boolean isDiamondArmor(final ItemStack is) {
|
||||||
|
switch (is.getType()) {
|
||||||
|
case DIAMOND_BOOTS:
|
||||||
|
case DIAMOND_CHESTPLATE:
|
||||||
|
case DIAMOND_HELMET:
|
||||||
|
case DIAMOND_LEGGINGS:
|
||||||
|
return true;
|
||||||
|
default:
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
ItemMeta itemMeta = itemStack.getItemMeta();
|
/**
|
||||||
if (itemMeta.hasLore() && isSoulbound(itemStack)) {
|
* Checks to see if an item is an equipable item.
|
||||||
List<String> oldLore = itemMeta.getLore();
|
*
|
||||||
int loreSize = oldLore.size();
|
* @param is
|
||||||
|
* Item to check
|
||||||
|
*
|
||||||
|
* @return true if the item is equipable, false otherwise
|
||||||
|
*/
|
||||||
|
public static boolean isEquipable(final ItemStack is) {
|
||||||
|
return isMinecraftArmor(is) || is.getType() == Material.SKULL_ITEM || is.getType() == Material.JACK_O_LANTERN;
|
||||||
|
}
|
||||||
|
|
||||||
if (loreSize <= 2) {
|
/**
|
||||||
itemMeta.setLore(null);
|
* Checks to see if an item is a gold armor piece.
|
||||||
itemStack.setItemMeta(itemMeta);
|
*
|
||||||
return itemStack;
|
* @param is
|
||||||
}
|
* Item to check
|
||||||
|
*
|
||||||
|
* @return true if the item is gold armor, false otherwise
|
||||||
|
*/
|
||||||
|
public static boolean isGoldArmor(final ItemStack is) {
|
||||||
|
switch (is.getType()) {
|
||||||
|
case GOLD_BOOTS:
|
||||||
|
case GOLD_CHESTPLATE:
|
||||||
|
case GOLD_HELMET:
|
||||||
|
case GOLD_LEGGINGS:
|
||||||
|
return true;
|
||||||
|
default:
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
List<String> itemLore = new ArrayList<String>();
|
/**
|
||||||
itemLore.addAll(oldLore);
|
* Checks to see if an item is an iron armor piece.
|
||||||
int index = StringUtils.getIndexOfSoulbound(itemLore);
|
*
|
||||||
|
* @param is
|
||||||
|
* Item to check
|
||||||
|
*
|
||||||
|
* @return true if the item is iron armor, false otherwise
|
||||||
|
*/
|
||||||
|
public static boolean isIronArmor(final ItemStack is) {
|
||||||
|
switch (is.getType()) {
|
||||||
|
case IRON_BOOTS:
|
||||||
|
case IRON_CHESTPLATE:
|
||||||
|
case IRON_HELMET:
|
||||||
|
case IRON_LEGGINGS:
|
||||||
|
return true;
|
||||||
|
default:
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (index == -1){
|
/**
|
||||||
return null;
|
* Checks to see if an item is a leather armor piece.
|
||||||
}
|
*
|
||||||
|
* @param is
|
||||||
|
* Item to check
|
||||||
|
*
|
||||||
|
* @return true if the item is leather armor, false otherwise
|
||||||
|
*/
|
||||||
|
public static boolean isLeatherArmor(final ItemStack is) {
|
||||||
|
switch (is.getType()) {
|
||||||
|
case LEATHER_BOOTS:
|
||||||
|
case LEATHER_CHESTPLATE:
|
||||||
|
case LEATHER_HELMET:
|
||||||
|
case LEATHER_LEGGINGS:
|
||||||
|
return true;
|
||||||
|
default:
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
itemLore.remove(index);
|
/**
|
||||||
if (index<itemLore.size())
|
* Checks to see if an item is a wearable armor piece.
|
||||||
itemLore.remove(index);
|
*
|
||||||
|
* @param is
|
||||||
|
* Item to check
|
||||||
|
*
|
||||||
|
* @return true if the item is armor, false otherwise
|
||||||
|
*/
|
||||||
|
public static boolean isMinecraftArmor(final ItemStack is) {
|
||||||
|
return isLeatherArmor(is) || isGoldArmor(is) || isIronArmor(is) || isDiamondArmor(is) || isChainmailArmor(is);
|
||||||
|
}
|
||||||
|
|
||||||
itemMeta.setLore(itemLore);
|
public static boolean isNormalItem(final ItemStack itemStack) {
|
||||||
}
|
return !itemStack.hasItemMeta() && !itemStack.getItemMeta().hasLore() || ItemUtils.getItemType(itemStack) == ItemType.NORMAL;
|
||||||
|
}
|
||||||
|
|
||||||
itemStack.setItemMeta(itemMeta);
|
public static boolean isSoulbound(final ItemStack itemStack) {
|
||||||
return itemStack;
|
if (!itemStack.hasItemMeta()) {
|
||||||
}
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
public static boolean isSoulbound(ItemStack itemStack) {
|
final ItemMeta itemMeta = itemStack.getItemMeta();
|
||||||
if (!itemStack.hasItemMeta()) {
|
if (itemMeta.hasLore()) {
|
||||||
return false;
|
final List<String> itemLore = itemMeta.getLore();
|
||||||
}
|
for (final String lore : itemLore) {
|
||||||
|
if (lore.contains(Misc.SOULBOUND_TAG)) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
ItemMeta itemMeta = itemStack.getItemMeta();
|
public static ItemStack soulbindItem(final Player player, ItemStack itemStack) {
|
||||||
if (itemMeta.hasLore()) {
|
if (itemStack == null) {
|
||||||
List<String> itemLore = itemMeta.getLore();
|
return itemStack;
|
||||||
for (String lore : itemLore) {
|
}
|
||||||
if (lore.contains(Misc.SOULBOUND_TAG)) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
public static boolean isBindOnPickup(ItemStack itemStack) {
|
if (isSoulbound(itemStack)) {
|
||||||
if (!itemStack.hasItemMeta()) {
|
return itemStack;
|
||||||
return false;
|
}
|
||||||
}
|
|
||||||
|
|
||||||
ItemMeta itemMeta = itemStack.getItemMeta();
|
final SoulbindItemEvent soulbindItemEvent = new SoulbindItemEvent(player, itemStack);
|
||||||
if (itemMeta.hasLore()) {
|
Soulbound.p.getServer().getPluginManager().callEvent(soulbindItemEvent);
|
||||||
List<String> itemLore = itemMeta.getLore();
|
itemStack = soulbindItemEvent.getItemStack();
|
||||||
if (itemLore.contains(Misc.PICKUPBIND_TAG)) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
public static boolean isBindOnUse(ItemStack itemStack) {
|
if (soulbindItemEvent.isCancelled()) {
|
||||||
if (!itemStack.hasItemMeta()) {
|
return itemStack;
|
||||||
return false;
|
}
|
||||||
}
|
|
||||||
|
|
||||||
ItemMeta itemMeta = itemStack.getItemMeta();
|
final ItemMeta itemMeta = itemStack.getItemMeta();
|
||||||
if (itemMeta.hasLore()) {
|
final List<String> itemLore = new ArrayList<String>();
|
||||||
List<String> itemLore = itemMeta.getLore();
|
|
||||||
if (itemLore.contains(Misc.USEBIND_TAG)) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
public static boolean isBindOnEquip(ItemStack itemStack) {
|
if (itemMeta.hasLore()) {
|
||||||
if (!itemStack.hasItemMeta()) {
|
final List<String> oldLore = itemMeta.getLore();
|
||||||
return false;
|
oldLore.remove(Misc.EQUIPBIND_TAG);
|
||||||
}
|
oldLore.remove(Misc.PICKUPBIND_TAG);
|
||||||
|
oldLore.remove(Misc.USEBIND_TAG);
|
||||||
|
itemLore.addAll(oldLore);
|
||||||
|
}
|
||||||
|
|
||||||
ItemMeta itemMeta = itemStack.getItemMeta();
|
itemLore.add(Misc.SOULBOUND_TAG);
|
||||||
if (itemMeta.hasLore()) {
|
|
||||||
List<String> itemLore = itemMeta.getLore();
|
|
||||||
if (itemLore.contains(Misc.EQUIPBIND_TAG)) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
public static boolean isBindedPlayer(Player player, ItemStack itemStack) {
|
if (Config.getShowNameInLore()) {
|
||||||
List<String> itemLore = itemStack.getItemMeta().getLore();
|
itemLore.add(player.getName());
|
||||||
|
}
|
||||||
|
|
||||||
return itemLore.contains(player.getName());
|
itemMeta.setLore(itemLore);
|
||||||
}
|
itemStack.setItemMeta(itemMeta);
|
||||||
|
return itemStack;
|
||||||
|
}
|
||||||
|
|
||||||
public static boolean isNormalItem(ItemStack itemStack) {
|
public static ItemStack unbindItem(final ItemStack itemStack) {
|
||||||
return !itemStack.hasItemMeta() && !itemStack.getItemMeta().hasLore() || ItemUtils.getItemType(itemStack) == ItemType.NORMAL;
|
if (itemStack == null) {
|
||||||
}
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
public static ItemType getItemType(ItemStack itemStack) {
|
final ItemMeta itemMeta = itemStack.getItemMeta();
|
||||||
if (itemStack == null) {
|
if (itemMeta.hasLore() && isSoulbound(itemStack)) {
|
||||||
return ItemType.NORMAL;
|
final List<String> oldLore = itemMeta.getLore();
|
||||||
}
|
final int loreSize = oldLore.size();
|
||||||
else if (isSoulbound(itemStack)) {
|
|
||||||
return ItemType.SOULBOUND;
|
|
||||||
}
|
|
||||||
else if (isBindOnPickup(itemStack)) {
|
|
||||||
return ItemType.BIND_ON_PICKUP;
|
|
||||||
}
|
|
||||||
else if (isBindOnUse(itemStack)) {
|
|
||||||
return ItemType.BIND_ON_USE;
|
|
||||||
}
|
|
||||||
else if (isBindOnEquip(itemStack)) {
|
|
||||||
return ItemType.BIND_ON_EQUIP;
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
return ItemType.NORMAL;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
if (loreSize <= 2) {
|
||||||
* Checks to see if an item is an equipable item.
|
itemMeta.setLore(null);
|
||||||
*
|
itemStack.setItemMeta(itemMeta);
|
||||||
* @param is Item to check
|
return itemStack;
|
||||||
*
|
}
|
||||||
* @return true if the item is equipable, false otherwise
|
|
||||||
*/
|
|
||||||
public static boolean isEquipable(ItemStack is) {
|
|
||||||
return isMinecraftArmor(is) || is.getType() == Material.SKULL_ITEM || is.getType() == Material.JACK_O_LANTERN;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
final List<String> itemLore = new ArrayList<String>();
|
||||||
* Checks to see if an item is a wearable armor piece.
|
itemLore.addAll(oldLore);
|
||||||
*
|
final int index = StringUtils.getIndexOfSoulbound(itemLore);
|
||||||
* @param is Item to check
|
|
||||||
*
|
|
||||||
* @return true if the item is armor, false otherwise
|
|
||||||
*/
|
|
||||||
public static boolean isMinecraftArmor(ItemStack is) {
|
|
||||||
return isLeatherArmor(is) || isGoldArmor(is) || isIronArmor(is) || isDiamondArmor(is) || isChainmailArmor(is);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
if (index == -1) {
|
||||||
* Checks to see if an item is a leather armor piece.
|
return null;
|
||||||
*
|
}
|
||||||
* @param is Item to check
|
|
||||||
*
|
|
||||||
* @return true if the item is leather armor, false otherwise
|
|
||||||
*/
|
|
||||||
public static boolean isLeatherArmor(ItemStack is) {
|
|
||||||
switch (is.getType()) {
|
|
||||||
case LEATHER_BOOTS:
|
|
||||||
case LEATHER_CHESTPLATE:
|
|
||||||
case LEATHER_HELMET:
|
|
||||||
case LEATHER_LEGGINGS:
|
|
||||||
return true;
|
|
||||||
|
|
||||||
default:
|
itemLore.remove(index);
|
||||||
return false;
|
if (index < itemLore.size()) {
|
||||||
}
|
itemLore.remove(index);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
itemMeta.setLore(itemLore);
|
||||||
* Checks to see if an item is a gold armor piece.
|
}
|
||||||
*
|
|
||||||
* @param is Item to check
|
|
||||||
*
|
|
||||||
* @return true if the item is gold armor, false otherwise
|
|
||||||
*/
|
|
||||||
public static boolean isGoldArmor(ItemStack is) {
|
|
||||||
switch (is.getType()) {
|
|
||||||
case GOLD_BOOTS:
|
|
||||||
case GOLD_CHESTPLATE:
|
|
||||||
case GOLD_HELMET:
|
|
||||||
case GOLD_LEGGINGS:
|
|
||||||
return true;
|
|
||||||
|
|
||||||
default:
|
itemStack.setItemMeta(itemMeta);
|
||||||
return false;
|
return itemStack;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
public enum ItemType {
|
||||||
* Checks to see if an item is an iron armor piece.
|
BIND_ON_EQUIP,
|
||||||
*
|
BIND_ON_PICKUP,
|
||||||
* @param is Item to check
|
BIND_ON_USE,
|
||||||
*
|
NORMAL,
|
||||||
* @return true if the item is iron armor, false otherwise
|
SOULBOUND;
|
||||||
*/
|
}
|
||||||
public static boolean isIronArmor(ItemStack is) {
|
|
||||||
switch (is.getType()) {
|
|
||||||
case IRON_BOOTS:
|
|
||||||
case IRON_CHESTPLATE:
|
|
||||||
case IRON_HELMET:
|
|
||||||
case IRON_LEGGINGS:
|
|
||||||
return true;
|
|
||||||
|
|
||||||
default:
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Checks to see if an item is a diamond armor piece.
|
|
||||||
*
|
|
||||||
* @param is Item to check
|
|
||||||
*
|
|
||||||
* @return true if the item is diamond armor, false otherwise
|
|
||||||
*/
|
|
||||||
public static boolean isDiamondArmor(ItemStack is) {
|
|
||||||
switch (is.getType()) {
|
|
||||||
case DIAMOND_BOOTS:
|
|
||||||
case DIAMOND_CHESTPLATE:
|
|
||||||
case DIAMOND_HELMET:
|
|
||||||
case DIAMOND_LEGGINGS:
|
|
||||||
return true;
|
|
||||||
|
|
||||||
default:
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Checks to see if an item is a chainmail armor piece.
|
|
||||||
*
|
|
||||||
* @param is Item to check
|
|
||||||
*
|
|
||||||
* @return true if the item is chainmail armor, false otherwise
|
|
||||||
*/
|
|
||||||
public static boolean isChainmailArmor(ItemStack is) {
|
|
||||||
switch (is.getType()) {
|
|
||||||
case CHAINMAIL_BOOTS:
|
|
||||||
case CHAINMAIL_CHESTPLATE:
|
|
||||||
case CHAINMAIL_HELMET:
|
|
||||||
case CHAINMAIL_LEGGINGS:
|
|
||||||
return true;
|
|
||||||
|
|
||||||
default:
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -1,23 +0,0 @@
|
|||||||
package com.me.tft_02.soulbound.util;
|
|
||||||
|
|
||||||
import java.util.logging.Filter;
|
|
||||||
import java.util.logging.LogRecord;
|
|
||||||
|
|
||||||
import com.me.tft_02.soulbound.Soulbound;
|
|
||||||
|
|
||||||
public class LogFilter implements Filter {
|
|
||||||
private final boolean debug;
|
|
||||||
|
|
||||||
public LogFilter(final Soulbound plugin) {
|
|
||||||
// Doing a config loading lite here, because we can't depend on the config loader to have loaded before any debug messages are sent
|
|
||||||
debug = plugin.getConfig().getBoolean("General.Verbose_Logging");
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean isLoggable(final LogRecord record) {
|
|
||||||
if (record.getMessage().contains("[Debug]") && !debug) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
|
@ -6,35 +6,26 @@ import org.bukkit.permissions.PermissionAttachmentInfo;
|
|||||||
|
|
||||||
public class Permissions {
|
public class Permissions {
|
||||||
|
|
||||||
public static boolean keepOnDeath(Permissible permissible) {
|
public static boolean deleteOnDeath(final Permissible permissible) {
|
||||||
return permissible.hasPermission("soulbound.items.keep_on_death");
|
|
||||||
}
|
|
||||||
|
|
||||||
public static boolean deleteOnDeath(Permissible permissible) {
|
|
||||||
return permissible.hasPermission("soulbound.items.delete_on_death");
|
return permissible.hasPermission("soulbound.items.delete_on_death");
|
||||||
}
|
}
|
||||||
|
|
||||||
public static boolean pickupBypass(Permissible permissible) {
|
public static int getSoulbindMaximum(final Player player) {
|
||||||
return permissible.hasPermission("soulbound.pickup.bypass");
|
final String match = "soulbound.maximum_allowed.";
|
||||||
}
|
|
||||||
|
|
||||||
public static boolean updateCheck(Permissible permissible) {
|
|
||||||
return permissible.hasPermission("soulbound.updatecheck");
|
|
||||||
}
|
|
||||||
|
|
||||||
public static int getSoulbindMaximum(Player player) {
|
|
||||||
String match = "soulbound.maximum_allowed.";
|
|
||||||
int amount = -1;
|
int amount = -1;
|
||||||
|
for (final PermissionAttachmentInfo permission : player.getEffectivePermissions()) {
|
||||||
for (PermissionAttachmentInfo permission : player
|
if (permission.getPermission().startsWith(match) && permission.getValue()) {
|
||||||
.getEffectivePermissions()) {
|
amount = Integer.parseInt(permission.getPermission().split("[.]")[2]);
|
||||||
if (permission.getPermission().startsWith(match)
|
|
||||||
&& permission.getValue()) {
|
|
||||||
amount = Integer.parseInt(permission.getPermission().split(
|
|
||||||
"[.]")[2]);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return amount;
|
return amount;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static boolean keepOnDeath(final Permissible permissible) {
|
||||||
|
return permissible.hasPermission("soulbound.items.keep_on_death");
|
||||||
|
}
|
||||||
|
|
||||||
|
public static boolean pickupBypass(final Permissible permissible) {
|
||||||
|
return permissible.hasPermission("soulbound.pickup.bypass");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -4,14 +4,14 @@ import java.util.List;
|
|||||||
|
|
||||||
public class StringUtils {
|
public class StringUtils {
|
||||||
|
|
||||||
public static int getIndexOfSoulbound(List<String> itemLore) {
|
public static int getIndexOfSoulbound(final List<String> itemLore) {
|
||||||
int index = -1;
|
final int index = -1;
|
||||||
|
|
||||||
for (String line : itemLore) {
|
for (final String line : itemLore) {
|
||||||
if (line.contains(Misc.SOULBOUND_TAG)) {
|
if (line.contains(Misc.SOULBOUND_TAG)) {
|
||||||
return itemLore.indexOf(line);
|
return itemLore.indexOf(line);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return index;
|
return index;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,40 +1,12 @@
|
|||||||
#
|
|
||||||
# Soulbound configuration
|
|
||||||
# Last updated on ${project.version}-b${BUILD_NUMBER}
|
|
||||||
#
|
|
||||||
#####
|
|
||||||
|
|
||||||
#
|
|
||||||
# Settings for Soulbound in general
|
|
||||||
###
|
|
||||||
General:
|
General:
|
||||||
# Allow Soulbound to report on basic anonymous usage
|
Stats_Tracking: true
|
||||||
Stats_Tracking: true
|
Config_Update_Overwrite: true
|
||||||
|
|
||||||
# Allow Soulbound to check if a new version is available
|
|
||||||
Update_Check: true
|
|
||||||
Prefer_Beta: false
|
|
||||||
|
|
||||||
# Should Soulbound print out debug messages?
|
|
||||||
Verbose_Logging: false
|
|
||||||
|
|
||||||
# Should Soulbound over-write configs to update, or make new ones ending in .new?
|
|
||||||
Config_Update_Overwrite: true
|
|
||||||
|
|
||||||
Soulbound:
|
Soulbound:
|
||||||
Show_Name_In_Lore: true
|
Show_Name_In_Lore: true
|
||||||
Feedback_Messages_Enabled: true
|
Feedback_Messages_Enabled: true
|
||||||
Prevent_Item_Drop: false
|
Prevent_Item_Drop: false
|
||||||
Delete_On_Drop: false
|
Delete_On_Drop: false
|
||||||
Allow_Item_Storing: true
|
Allow_Item_Storing: true
|
||||||
Infinite_Durability: false
|
Infinite_Durability: false
|
||||||
Blocked_Commands:
|
Blocked_Commands: /blockedcommand
|
||||||
/blockedcommand
|
Commands_Bind_When_Used: /enchant
|
||||||
Commands_Bind_When_Used:
|
|
||||||
/enchant
|
|
||||||
|
|
||||||
Dependency_Plugins:
|
|
||||||
EpicBossRecoded:
|
|
||||||
BindOnPickup: true
|
|
||||||
BindOnUse: false
|
|
||||||
BindOnEquip: false
|
|
Loading…
Reference in New Issue
Block a user