Search in sources :

Example 76 with CoreStateInitException

use of com.solinia.solinia.Exceptions.CoreStateInitException in project solinia3-core by mixxit.

the class CommandInspiration method onCommand.

@Override
public boolean onCommand(CommandSender sender, Command cmd, String label, String[] args) {
    try {
        if (args.length == 0) {
            sender.sendMessage(ChatColor.LIGHT_PURPLE + "Inspiration Shop");
            sender.sendMessage("-----------------");
            sender.sendMessage(ChatColor.LIGHT_PURPLE + "Buy 1 AA Point " + ChatColor.RESET + " - Cost: 5 inspiration : /inspiration buy aa");
            sender.sendMessage(ChatColor.LIGHT_PURPLE + "Buy Mana Regen Aug (Head) " + ChatColor.RESET + " - Cost: 2 inspiration : /inspiration buy manahead");
            sender.sendMessage(ChatColor.LIGHT_PURPLE + "Buy Mana Regen Aug (Chest) " + ChatColor.RESET + " - Cost: 2 inspiration : /inspiration buy manachest");
            sender.sendMessage(ChatColor.LIGHT_PURPLE + "Buy Mana Regen Aug (Legs) " + ChatColor.RESET + " - Cost: 2 inspiration : /inspiration buy manalegs");
            sender.sendMessage(ChatColor.LIGHT_PURPLE + "Buy Mana Regen Aug (Feet) " + ChatColor.RESET + " - Cost: 2 inspiration : /inspiration buy manafeet");
            sender.sendMessage(ChatColor.LIGHT_PURPLE + "Buy 1x 100% Experience Potion " + ChatColor.RESET + " - Cost: 2 inspiration : /inspiration buy xpbottle");
            sender.sendMessage(ChatColor.LIGHT_PURPLE + "Buy 1x next tier gear set" + ChatColor.RESET + " - Cost: 35 inspiration : /inspiration buy gear");
            sender.sendMessage("-----------------");
            sender.sendMessage("Sub Commands: " + ChatColor.LIGHT_PURPLE + "sites, buy, send");
            if (sender instanceof Player) {
                ISoliniaPlayer solPlayer = SoliniaPlayerAdapter.Adapt((Player) sender);
                sender.sendMessage("Points Available: " + ChatColor.LIGHT_PURPLE + solPlayer.getInspiration());
            }
            return true;
        }
        switch(args[0].toLowerCase()) {
            case "buy":
                if (args.length > 1) {
                    int cost = 0;
                    switch(args[1].toLowerCase()) {
                        case "gear":
                            if (sender instanceof Player) {
                                ISoliniaPlayer player = SoliniaPlayerAdapter.Adapt((Player) sender);
                                cost = 35;
                                if (player.getInspiration() >= cost) {
                                    String suffix = "of Inspiration";
                                    int playertier = 1;
                                    if (player.getLevel() >= 1 && player.getLevel() < 11)
                                        playertier = 1;
                                    if (player.getLevel() >= 11 && player.getLevel() < 21)
                                        playertier = 2;
                                    if (player.getLevel() >= 21 && player.getLevel() < 31)
                                        playertier = 3;
                                    if (player.getLevel() >= 31 && player.getLevel() < 41)
                                        playertier = 4;
                                    if (player.getLevel() >= 41 && player.getLevel() < 51)
                                        playertier = 5;
                                    if (player.getLevel() >= 51 && player.getLevel() < 61)
                                        playertier = 6;
                                    try {
                                        // always give the next tier up
                                        // this ability is for special seasonal rewards only
                                        playertier += 1;
                                        List<Integer> items = SoliniaItemFactory.CreateClassItemSet(player.getClassObj(), playertier, suffix, false, true);
                                        for (int itemid : items) {
                                            ISoliniaItem item = StateManager.getInstance().getConfigurationManager().getItem(itemid);
                                            final String playerName = player.getBukkitPlayer().getName();
                                            final int minLevel = player.getLevel();
                                            final int finalitemid = itemid;
                                            if (item != null) {
                                                Bukkit.getServer().getScheduler().scheduleSyncDelayedTask(Bukkit.getPluginManager().getPlugin("Solinia3Core"), new Runnable() {

                                                    public void run() {
                                                        try {
                                                            ISoliniaItem item = StateManager.getInstance().getConfigurationManager().getItem(finalitemid);
                                                            item.setMinLevel(minLevel);
                                                            SoliniaAccountClaim claim = new SoliniaAccountClaim();
                                                            claim.setId(StateManager.getInstance().getConfigurationManager().getNextAccountClaimId());
                                                            claim.setMcname(playerName);
                                                            claim.setItemid(finalitemid);
                                                            claim.setClaimed(false);
                                                            Player claimPlayer = Bukkit.getPlayer(playerName);
                                                            if (claimPlayer != null) {
                                                                claimPlayer.sendMessage(ChatColor.GOLD + "You have been awarded with a claim item! See /claim");
                                                            }
                                                            StateManager.getInstance().getConfigurationManager().addAccountClaim(claim);
                                                            System.out.println("Awarded Claim: " + item.getDisplayname() + " to " + playerName);
                                                        } catch (CoreStateInitException e) {
                                                        // skip
                                                        }
                                                    }
                                                });
                                            }
                                        }
                                        player.setInspiration(player.getInspiration() - cost);
                                        sender.sendMessage("You have purchased a full set of gear!");
                                    } catch (CoreStateInitException e) {
                                        sender.sendMessage("There was a problem generating your gear (Core), please report this to a developer");
                                    } catch (SoliniaItemException e) {
                                        sender.sendMessage("There was a problem generating your gear (Item), please report this to a developer");
                                    }
                                    return true;
                                } else {
                                    sender.sendMessage("You require more inspiration points to purchase this");
                                    return true;
                                }
                            } else {
                                sender.sendMessage("This is a player only subcommand");
                            }
                        case "aa":
                            if (sender instanceof Player) {
                                ISoliniaPlayer solPlayer = SoliniaPlayerAdapter.Adapt((Player) sender);
                                if (solPlayer.getLevel() < 20) {
                                    sender.sendMessage("Only players level 20 and above can have AA points any lower and it would be useless");
                                    return true;
                                } else {
                                    cost = 5;
                                    if (solPlayer.getInspiration() >= cost) {
                                        solPlayer.setInspiration(solPlayer.getInspiration() - cost);
                                        solPlayer.setAAPoints(solPlayer.getAAPoints() + 1);
                                        sender.sendMessage("You have purchased an AA point!");
                                        return true;
                                    } else {
                                        sender.sendMessage("You require more inspiration points to purchase this");
                                        return true;
                                    }
                                }
                            } else {
                                sender.sendMessage("This is a player only subcommand");
                            }
                        case "manahead":
                            if (sender instanceof Player) {
                                ISoliniaPlayer solPlayer = SoliniaPlayerAdapter.Adapt((Player) sender);
                                cost = 2;
                                if (solPlayer.getInspiration() >= cost) {
                                    solPlayer.setInspiration(solPlayer.getInspiration() - cost);
                                    ISoliniaItem item = StateManager.getInstance().getConfigurationManager().getItem(18019);
                                    ((Player) sender).getLocation().getWorld().dropItemNaturally(((Player) sender).getLocation(), item.asItemStack());
                                    sender.sendMessage("You have purchased an item!");
                                    return true;
                                } else {
                                    sender.sendMessage("You require more inspiration points to purchase this");
                                    return true;
                                }
                            } else {
                                sender.sendMessage("This is a player only subcommand");
                            }
                        case "manachest":
                            if (sender instanceof Player) {
                                ISoliniaPlayer solPlayer = SoliniaPlayerAdapter.Adapt((Player) sender);
                                cost = 2;
                                if (solPlayer.getInspiration() >= cost) {
                                    solPlayer.setInspiration(solPlayer.getInspiration() - cost);
                                    ISoliniaItem item = StateManager.getInstance().getConfigurationManager().getItem(18020);
                                    ((Player) sender).getLocation().getWorld().dropItemNaturally(((Player) sender).getLocation(), item.asItemStack());
                                    sender.sendMessage("You have purchased an item!");
                                    return true;
                                } else {
                                    sender.sendMessage("You require more inspiration points to purchase this");
                                    return true;
                                }
                            } else {
                                sender.sendMessage("This is a player only subcommand");
                            }
                        case "manalegs":
                            if (sender instanceof Player) {
                                ISoliniaPlayer solPlayer = SoliniaPlayerAdapter.Adapt((Player) sender);
                                cost = 2;
                                if (solPlayer.getInspiration() >= cost) {
                                    solPlayer.setInspiration(solPlayer.getInspiration() - cost);
                                    ISoliniaItem item = StateManager.getInstance().getConfigurationManager().getItem(18021);
                                    ((Player) sender).getLocation().getWorld().dropItemNaturally(((Player) sender).getLocation(), item.asItemStack());
                                    sender.sendMessage("You have purchased an item!");
                                    return true;
                                } else {
                                    sender.sendMessage("You require more inspiration points to purchase this");
                                    return true;
                                }
                            } else {
                                sender.sendMessage("This is a player only subcommand");
                            }
                        case "manafeet":
                            if (sender instanceof Player) {
                                ISoliniaPlayer solPlayer = SoliniaPlayerAdapter.Adapt((Player) sender);
                                cost = 2;
                                if (solPlayer.getInspiration() >= cost) {
                                    solPlayer.setInspiration(solPlayer.getInspiration() - cost);
                                    ISoliniaItem item = StateManager.getInstance().getConfigurationManager().getItem(18022);
                                    ((Player) sender).getLocation().getWorld().dropItemNaturally(((Player) sender).getLocation(), item.asItemStack());
                                    sender.sendMessage("You have purchased an item!");
                                    return true;
                                } else {
                                    sender.sendMessage("You require more inspiration points to purchase this");
                                    return true;
                                }
                            } else {
                                sender.sendMessage("This is a player only subcommand");
                            }
                        case "xpbottle":
                            if (sender instanceof Player) {
                                ISoliniaPlayer solPlayer = SoliniaPlayerAdapter.Adapt((Player) sender);
                                cost = 2;
                                if (solPlayer.getInspiration() >= cost) {
                                    solPlayer.setInspiration(solPlayer.getInspiration() - cost);
                                    ISoliniaItem item = StateManager.getInstance().getConfigurationManager().getItem(18024);
                                    ((Player) sender).getLocation().getWorld().dropItemNaturally(((Player) sender).getLocation(), item.asItemStack());
                                    sender.sendMessage("You have purchased an item!");
                                    return true;
                                } else {
                                    sender.sendMessage("You require more inspiration points to purchase this");
                                    return true;
                                }
                            } else {
                                sender.sendMessage("This is a player only subcommand");
                            }
                        default:
                            sender.sendMessage("This is not a known shop item to buy. See /inspiration for valid commands");
                            return true;
                    }
                } else {
                    sender.sendMessage("You must specify the shop item you want to buy. Ie: /inspiration buy aa");
                    return true;
                }
            case "sites":
                sender.sendMessage(ChatColor.YELLOW + "Sites you can vote on:");
                sender.sendMessage("https://www.planetminecraft.com/server/fall-of-an-empire-heavyrp/vote/");
                sender.sendMessage("http://www.minecraftforum.net/servers/6305-fall-of-an-empire-heavy-rp/vote:");
                sender.sendMessage("https://minecraftlist.org/vote/5962");
                sender.sendMessage("https://minecraft-server.net/vote/fallofanempire");
                sender.sendMessage("http://minecraft-server-list.com/server/345651/vote/");
                sender.sendMessage(ChatColor.YELLOW + "You will earn 1 inspiration point for each vote");
                break;
            case "send":
                if (args.length > 2) {
                    if (sender instanceof Player) {
                        ISoliniaPlayer solPlayer = SoliniaPlayerAdapter.Adapt((Player) sender);
                        String mcAccount = args[1];
                        int amount = Integer.parseInt(args[2]);
                        Player player = Bukkit.getPlayer(mcAccount);
                        if (player == null) {
                            sender.sendMessage("Cannot find that player to forward to. It must be their minecraft account name and they must be online (ie /inspiration send mixxit 1)");
                            return true;
                        }
                        if (solPlayer.getInspiration() >= amount) {
                            ISoliniaPlayer targetPlayer = SoliniaPlayerAdapter.Adapt(player);
                            solPlayer.setInspiration(solPlayer.getInspiration() - amount);
                            targetPlayer.setInspiration(targetPlayer.getInspiration() + amount);
                            sender.sendMessage("You have sent " + amount + " inspiration to " + player.getName());
                            player.sendMessage("You have received " + amount + " inspiration from " + sender.getName());
                            return true;
                        } else {
                            sender.sendMessage("You do not have that amount of inspiration to send");
                            return true;
                        }
                    } else {
                        sender.sendMessage("This is a player only subcommand");
                    }
                } else {
                    sender.sendMessage("You must specify how many you wish to transfer and the mc account name of the person you want to send it to (ie /inspiration send mixxit 1)");
                    return true;
                }
            case "grant":
                if (args.length > 2) {
                    String mcAccount = args[1];
                    int amount = Integer.parseInt(args[2]);
                    Player player = Bukkit.getPlayer(mcAccount);
                    if (player == null) {
                        sender.sendMessage("Cannot find that player to grant to. It must be their minecraft account name and they must be online (ie /inspiration grant mixxit 1)");
                        return true;
                    }
                    if (sender.isOp()) {
                        ISoliniaPlayer targetPlayer = SoliniaPlayerAdapter.Adapt(player);
                        targetPlayer.setInspiration(targetPlayer.getInspiration() + amount);
                        sender.sendMessage("You have granted " + amount + " inspiration to " + player.getName());
                        player.sendMessage("You have received " + amount + " inspiration from " + sender.getName());
                        return true;
                    } else {
                        sender.sendMessage("This is an operator only command");
                    }
                } else {
                    sender.sendMessage("You must specify how many you wish to grant and the mc account name of the person you want to send it to (ie /inspiration grant mixxit 1)");
                    return true;
                }
            default:
                sender.sendMessage("Unknown subcommand - Valid are: sites, buy, send");
                break;
        }
        return true;
    } catch (CoreStateInitException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
        sender.sendMessage(e.getMessage());
        return true;
    }
}
Also used : SoliniaAccountClaim(com.solinia.solinia.Models.SoliniaAccountClaim) Player(org.bukkit.entity.Player) ISoliniaPlayer(com.solinia.solinia.Interfaces.ISoliniaPlayer) ISoliniaItem(com.solinia.solinia.Interfaces.ISoliniaItem) CoreStateInitException(com.solinia.solinia.Exceptions.CoreStateInitException) ISoliniaPlayer(com.solinia.solinia.Interfaces.ISoliniaPlayer) SoliniaItemException(com.solinia.solinia.Exceptions.SoliniaItemException)

Example 77 with CoreStateInitException

use of com.solinia.solinia.Exceptions.CoreStateInitException in project solinia3-core by mixxit.

the class CommandEquip method showCurrentEquippedItems.

private void showCurrentEquippedItems(ISoliniaPlayer solPlayer) {
    try {
        if (solPlayer.getNeckItem() > 0) {
            ISoliniaItem item = StateManager.getInstance().getConfigurationManager().getItem(solPlayer.getNeckItem());
            solPlayer.getBukkitPlayer().sendMessage("Neck Item: " + item.getDisplayname());
        } else {
            solPlayer.getBukkitPlayer().sendMessage("Neck Item: EMPTY");
        }
        if (solPlayer.getFingersItem() > 0) {
            ISoliniaItem item = StateManager.getInstance().getConfigurationManager().getItem(solPlayer.getNeckItem());
            solPlayer.getBukkitPlayer().sendMessage("Fingers Item: " + item.getDisplayname());
        } else {
            solPlayer.getBukkitPlayer().sendMessage("Fingers Item: EMPTY");
        }
        if (solPlayer.getShouldersItem() > 0) {
            ISoliniaItem item = StateManager.getInstance().getConfigurationManager().getItem(solPlayer.getNeckItem());
            solPlayer.getBukkitPlayer().sendMessage("Shoulders Item: " + item.getDisplayname());
        } else {
            solPlayer.getBukkitPlayer().sendMessage("Shoulders Item: EMPTY");
        }
    } catch (CoreStateInitException e) {
    }
}
Also used : ISoliniaItem(com.solinia.solinia.Interfaces.ISoliniaItem) CoreStateInitException(com.solinia.solinia.Exceptions.CoreStateInitException)

Example 78 with CoreStateInitException

use of com.solinia.solinia.Exceptions.CoreStateInitException in project solinia3-core by mixxit.

the class CommandEquip method onCommand.

@Override
public boolean onCommand(CommandSender sender, Command cmd, String label, String[] args) {
    if (!(sender instanceof Player) && !(sender instanceof CommandSender))
        return false;
    Player player = (Player) sender;
    try {
        ISoliniaPlayer solPlayer = SoliniaPlayerAdapter.Adapt(player);
        showCurrentEquippedItems(solPlayer);
        ItemStack primaryItem = player.getInventory().getItemInMainHand();
        if (primaryItem.getType().equals(Material.AIR)) {
            player.sendMessage(ChatColor.GRAY + "Empty item in primary hand. You must hold the item you want to equip in your main hand");
            return false;
        }
        if (!Utils.IsSoliniaItem(primaryItem)) {
            player.sendMessage("You can only equip solinia items this way");
            return true;
        }
        ISoliniaItem item = SoliniaItemAdapter.Adapt(primaryItem);
        if (item == null) {
            player.sendMessage("You cannot equip this item this way");
            return true;
        }
        if (item.getMinLevel() > solPlayer.getLevel()) {
            player.sendMessage("You cannot equip this item (minlevel: " + item.getMinLevel() + ")");
            return true;
        }
        if (solPlayer.getClassObj() == null) {
            player.sendMessage(ChatColor.GRAY + "Your class cannot wear this equipment");
            return true;
        }
        if (item.isSpellscroll()) {
            player.sendMessage("You cannot equip this item");
            return true;
        }
        if (!item.getAllowedClassNames().contains(solPlayer.getClassObj().getName().toUpperCase())) {
            player.sendMessage(ChatColor.GRAY + "Your class cannot wear this equipment");
            return true;
        }
        if (item.getMinLevel() > solPlayer.getLevel()) {
            player.sendMessage(ChatColor.GRAY + "Your are not sufficient level to wear this equipment");
            return true;
        }
        if (item.isFingersItem())
            if (solPlayer.getFingersItem() > 0) {
                player.sendMessage("You have already equipped an item in that slot");
                return true;
            } else {
                solPlayer.setFingersItem(item.getId());
                player.getInventory().setItemInMainHand(null);
                player.updateInventory();
                player.sendMessage("You have equipped this item");
                return true;
            }
        if (item.isShouldersItem())
            if (solPlayer.getShouldersItem() > 0) {
                player.sendMessage("You have already equipped an item in that slot");
                return true;
            } else {
                solPlayer.setShouldersItem(item.getId());
                player.getInventory().setItemInMainHand(null);
                player.updateInventory();
                player.sendMessage("You have equipped this item");
                return true;
            }
        if (item.isNeckItem())
            if (solPlayer.getNeckItem() > 0) {
                player.sendMessage("You have already equipped an item in that slot");
                return true;
            } else {
                solPlayer.setNeckItem(item.getId());
                player.getInventory().setItemInMainHand(null);
                player.updateInventory();
                player.sendMessage("You have equipped this item");
                return true;
            }
        return false;
    } catch (CoreStateInitException e) {
        return false;
    } catch (SoliniaItemException e) {
        player.sendMessage("You cannot equip this item");
        return true;
    }
}
Also used : Player(org.bukkit.entity.Player) ISoliniaPlayer(com.solinia.solinia.Interfaces.ISoliniaPlayer) ISoliniaItem(com.solinia.solinia.Interfaces.ISoliniaItem) CoreStateInitException(com.solinia.solinia.Exceptions.CoreStateInitException) CommandSender(org.bukkit.command.CommandSender) ISoliniaPlayer(com.solinia.solinia.Interfaces.ISoliniaPlayer) ItemStack(org.bukkit.inventory.ItemStack) SoliniaItemException(com.solinia.solinia.Exceptions.SoliniaItemException)

Example 79 with CoreStateInitException

use of com.solinia.solinia.Exceptions.CoreStateInitException in project solinia3-core by mixxit.

the class CommandForceLevel method onCommand.

@Override
public boolean onCommand(CommandSender sender, Command cmd, String label, String[] args) {
    if (!(sender instanceof Player) && !(sender instanceof CommandSender))
        return false;
    if (sender instanceof Player) {
        Player player = (Player) sender;
        if (!player.isOp()) {
            player.sendMessage("This is an operator only command");
            return false;
        }
    }
    if (args.length < 2) {
        sender.sendMessage("Insufficient arguments (<mcname> <level>)");
        return false;
    }
    String name = args[0];
    int level = Integer.parseInt(args[1]);
    if (level < 1) {
        sender.sendMessage("Level must be greater than 0");
    }
    boolean found = false;
    Double experience = Utils.getExperienceRequirementForLevel(level);
    for (Player currentplayer : Bukkit.getServer().getOnlinePlayers()) {
        if (!currentplayer.getName().toUpperCase().equals(name.toUpperCase()))
            continue;
        try {
            ISoliniaPlayer solplayer = SoliniaPlayerAdapter.Adapt(currentplayer);
            found = true;
            if (found) {
                solplayer.setExperience(experience);
                sender.sendMessage("* Player " + name + " set to " + level);
                solplayer.updateMaxHp();
                return true;
            } else {
                sender.sendMessage("Force level command failed. Is that a valid level and a valid online mcaccount?");
                return false;
            }
        } catch (CoreStateInitException e) {
            e.printStackTrace();
            sender.sendMessage(e.getMessage());
        }
    }
    if (found == false) {
        sender.sendMessage("Failed to find player by that minecraft username");
        return false;
    }
    return true;
}
Also used : ISoliniaPlayer(com.solinia.solinia.Interfaces.ISoliniaPlayer) Player(org.bukkit.entity.Player) CoreStateInitException(com.solinia.solinia.Exceptions.CoreStateInitException) CommandSender(org.bukkit.command.CommandSender) ConsoleCommandSender(org.bukkit.command.ConsoleCommandSender) ISoliniaPlayer(com.solinia.solinia.Interfaces.ISoliniaPlayer)

Example 80 with CoreStateInitException

use of com.solinia.solinia.Exceptions.CoreStateInitException in project solinia3-core by mixxit.

the class CommandListSpells method onCommand.

@Override
public boolean onCommand(CommandSender sender, Command cmd, String label, String[] args) {
    if (!(sender instanceof Player) && !(sender instanceof CommandSender))
        return false;
    if (sender instanceof Player) {
        Player player = (Player) sender;
        if (!player.isOp()) {
            player.sendMessage("This is an operator only command");
            return false;
        }
    }
    if (args.length == 0) {
        sender.sendMessage("You must provide some text to filter the spells by");
        return true;
    }
    // Filter for name
    int found = 0;
    try {
        for (ISoliniaSpell spell : StateManager.getInstance().getConfigurationManager().getSpells()) {
            found++;
            if (spell.getName().toUpperCase().contains(args[0].toUpperCase())) {
                String spellmessage = spell.getId() + " - " + spell.getName();
                sender.sendMessage(spellmessage);
            }
        }
        if (found == 0) {
            sender.sendMessage("Spell could not be located by search string");
        }
    } catch (CoreStateInitException e) {
        // TODO Auto-generated catch block
        sender.sendMessage(e.getMessage());
        e.printStackTrace();
    }
    return true;
}
Also used : Player(org.bukkit.entity.Player) ISoliniaSpell(com.solinia.solinia.Interfaces.ISoliniaSpell) CoreStateInitException(com.solinia.solinia.Exceptions.CoreStateInitException) CommandSender(org.bukkit.command.CommandSender) ConsoleCommandSender(org.bukkit.command.ConsoleCommandSender)

Aggregations

CoreStateInitException (com.solinia.solinia.Exceptions.CoreStateInitException)216 Player (org.bukkit.entity.Player)114 ISoliniaPlayer (com.solinia.solinia.Interfaces.ISoliniaPlayer)99 ISoliniaNPC (com.solinia.solinia.Interfaces.ISoliniaNPC)43 CommandSender (org.bukkit.command.CommandSender)42 ISoliniaLivingEntity (com.solinia.solinia.Interfaces.ISoliniaLivingEntity)41 ISoliniaItem (com.solinia.solinia.Interfaces.ISoliniaItem)36 ConsoleCommandSender (org.bukkit.command.ConsoleCommandSender)36 LivingEntity (org.bukkit.entity.LivingEntity)32 ArrayList (java.util.ArrayList)31 Entity (org.bukkit.entity.Entity)21 ItemStack (org.bukkit.inventory.ItemStack)20 SoliniaItemException (com.solinia.solinia.Exceptions.SoliniaItemException)17 ISoliniaSpell (com.solinia.solinia.Interfaces.ISoliniaSpell)16 EventHandler (org.bukkit.event.EventHandler)16 Timestamp (java.sql.Timestamp)13 TextComponent (net.md_5.bungee.api.chat.TextComponent)12 CraftEntity (org.bukkit.craftbukkit.v1_12_R1.entity.CraftEntity)11 CraftLivingEntity (org.bukkit.craftbukkit.v1_12_R1.entity.CraftLivingEntity)11 PathEntity (net.minecraft.server.v1_12_R1.PathEntity)10