Development Assistance Plugin won't load

Discussion in 'Plugin Help/Development/Requests' started by stefvanschie, May 18, 2015.

Thread Status:
Not open for further replies.
  1. Offline

    stefvanschie

    As the title probably mentiones, the plugin won't load and I have no idea what's cuasing this.

    This is the main code:
    Code:
    package me.stefvanschie;
    import java.io.File;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.OutputStream;
    import java.util.ArrayList;
    import java.util.HashMap;
    import java.util.List;
    
    import org.bukkit.ChatColor;
    import org.bukkit.Location;
    import org.bukkit.World;
    import org.bukkit.command.Command;
    import org.bukkit.command.CommandSender;
    import org.bukkit.configuration.file.FileConfiguration;
    import org.bukkit.configuration.file.YamlConfiguration;
    import org.bukkit.entity.Player;
    import org.bukkit.permissions.Permission;
    import org.bukkit.plugin.PluginManager;
    import org.bukkit.plugin.java.JavaPlugin;
    public class BuildingGame extends JavaPlugin
    {
        int counter = 0;
        List<Player> players = new ArrayList<Player>();
        List<Player> playersdone = new ArrayList<Player>();
        List<Player> playervoted = new ArrayList<Player>();
        HashMap<Player, Integer> votes = new HashMap<Player, Integer>();
        //permissions
        public final Timer timer = new Timer(this);
        public Permission setmainspawn = new Permission("bg.setmainspawn");
        public Permission createarena = new Permission("bg.createarena");
        public Permission setspawn = new Permission("bg.setspawn");
        public Permission join = new Permission("bg.join");
        public Permission leave = new Permission("bg.leave");
        public Permission done = new Permission("bg.done");
        //files
        File arenasFile;
        File configFile;
        FileConfiguration arenas;
        FileConfiguration config;
        @Override
        public void onEnable()
        {
            //files
            arenas = new YamlConfiguration();
            config = new YamlConfiguration();
            arenasFile = new File(getDataFolder(), "arenas.yml");
            configFile = new File(getDataFolder(), "config.yml");
            if (!arenasFile.exists())
            {
                arenasFile.getParentFile().mkdirs();
                copy(getResource("arenas.yml"), arenasFile);
            }
            if (!configFile.exists())
            {
                configFile.getParentFile().mkdirs();
                copy(getResource("config.yml"), configFile);
            }
            loadYamls();
            //other things
            getLogger().info("Building Game has been enabled succesfully!");
            PluginManager pm = getServer().getPluginManager();
            pm.addPermission(setmainspawn);
            pm.addPermission(createarena);
            pm.addPermission(done);
            pm.addPermission(join);
            pm.addPermission(leave);
            pm.addPermission(done);
            saveYamls();
        }
        @Override
        public void onDisable()
        {
            getLogger().info("Building Game has been disabled succesfully!");
            saveYamls();
        }
        public boolean onCommand(CommandSender sender, Command cmd, String label, String[] args)
        {
            Player player = (Player) sender;
            if (cmd.getName().equalsIgnoreCase("bg"))
            {
                if (args[0].equalsIgnoreCase("setmainspawn"))
                {
                    if (player.hasPermission("setmainspawn"))
                    {
                        arenas.set("main-spawn.world", player.getLocation().getWorld().getName());
                        arenas.set("main-spawn.x", player.getLocation().getBlockX());
                        arenas.set("main-spawn.y", player.getLocation().getBlockY());
                        arenas.set("main-spawn.z", player.getLocation().getBlockZ());
                        saveYamls();
                        player.sendMessage(ChatColor.GREEN + "Buildinggame main spawn has been set!");
                    }
                    else if (!player.hasPermission("setmainspawn"))
                    {
                        player.sendMessage(ChatColor.RED + "You don't have the required permission for that!");
                    }
                    else
                    {
                        player.sendMessage(ChatColor.RED + "An unexpected error occured. Error: bg.setmainspawn.permission");
                    }
                }
                else if (args[0].equalsIgnoreCase("createarena"))
                {
                    if (player.hasPermission("createarena"))
                    {
                        if (args.length == 2)
                        {
                            arenas.set(args[1], null);
                            saveYamls();
                            player.sendMessage(ChatColor.GREEN + "Arena " + args[1] + " created!");
                        }
                        else if (args.length < 2)
                        {
                            player.sendMessage(ChatColor.RED + "Please specify the arena name!");
                        }
                        else if (args.length > 2)
                        {
                            player.sendMessage(ChatColor.RED + "Please only specify the arena name!");
                        }
                        else
                        {
                            player.sendMessage(ChatColor.RED + "An unexpected error occured! Error: bg.createarena.args.length");
                        }
                    }
                    else if (!player.hasPermission("createarena"))
                    {
                        player.sendMessage(ChatColor.RED + "You don't have the required permission for that!");
                    }
                    else
                    {
                        player.sendMessage(ChatColor.RED + "An unexpected error occurred. Error: bg.createarena.permission");
                    }
                }
                else if (args[0].equalsIgnoreCase("setspawn"))
                {
                    if (player.hasPermission("setspawn"))
                    {
                        if (args.length == 2)
                        {
                            counter++;
                            arenas.set(args[1] + "." + counter + ".world", player.getLocation().getWorld().getName());
                            arenas.set(args[1] + "." + counter + ".x", player.getLocation().getBlockX());
                            arenas.set(args[1] + "." + counter + ".y", player.getLocation().getBlockY());
                            arenas.set(args[1] + "." + counter + ".z", player.getLocation().getBlockZ());
                            arenas.set(args[1] + ".maxplayers", counter);
                            saveYamls();
                            player.sendMessage(ChatColor.GREEN + "Spawn " + counter + " set!");
                        }
                        else if (args.length > 2)
                        {
                            player.sendMessage(ChatColor.RED + "Please only specify the arenaname");
                        }
                        else if (args.length < 2)
                        {
                            player.sendMessage(ChatColor.RED + "Please specify the arenaname");
                        }
                        else
                        {
                            player.sendMessage(ChatColor.RED + "An unexpected error occured. Error: bg.setspawn.args.length");
                        }
                    }
                    else if (!player.hasPermission("setspawn"))
                    {
                        player.sendMessage(ChatColor.RED + "You don't have the permission for that");
                    }
                    else
                    {
                        player.sendMessage(ChatColor.RED + "An unexpected error occured. Error: bg.setspawn.permission");
                    }
                }
                else if (args[0].equalsIgnoreCase("join"))
                {
                    if (args.length == 2)
                    {
                        if (player.hasPermission("join"))
                        {
                            if (players.size() < getConfig().getInt(args[1] + ".maxplayers"))
                            {
                                player.sendMessage(ChatColor.GOLD + "You have joined the game");
                                for (Player p : players)
                                {
                                    p.sendMessage(ChatColor.GOLD + "" + player.getName() + " joined the game!");
                                }
                                players.add(player);
                                if (players.size() == getConfig().getInt(args[1] + ".maxplayers"))
                                {
                                    int places = 1;
                                    for (Player pl : players)
                                    {
                                        String worldstr = arenas.getString(args[1] + "." + places + ".world");
                                        World world = getServer().getWorld(worldstr);
                                        int x = arenas.getInt(args[1] + "." + places + ".x");
                                        int y = arenas.getInt(args[1] + "." + places + ".y");
                                        int z = arenas.getInt(args[1] + "." + places + ".z");
                                        Location location = new Location(world, x, y, z);
                                        pl.teleport(location);
                                        places++;
                                        pl.sendMessage(ChatColor.GOLD + "The game has started!");
                                    }
                                    new Timer(config.getInt("timer")).runTaskTimer(this, 0L, 20L);
                                }
                            }
                            else if (players.size() >= getConfig().getInt(args[1] + ".maxplayers"))
                            {
                                player.sendMessage(ChatColor.RED + "This arena is currently full");
                            }
                            else
                            {
                                player.sendMessage(ChatColor.RED + "An unexpected error occured: Error: bg.join.playersingame");
                            }
                        }
                        else if (!player.hasPermission("join"))
                        {
                            player.sendMessage(ChatColor.RED + "You don't have the required permission for that!");
                        }
                        else
                        {
                            player.sendMessage(ChatColor.RED + "An unexpected error occured: Error: bg.join.permission");
                        }
                    }
                    else if (args.length < 2)
                    {
                        player.sendMessage(ChatColor.RED + "Please specify the arena name!");
                    }
                    else if (args.length > 2)
                    {
                        player.sendMessage(ChatColor.RED + "Please only specify the arena name!");
                    }
                    else
                    {
                        player.sendMessage(ChatColor.RED + "An unexpected error occured. Error: bg.join.args.length");
                    }
                }
                else if (args[0].equalsIgnoreCase("leave"))
                {
                    if (player.hasPermission("leave"))
                    {
                        String worldstr = arenas.getString("main-spawn.world");
                        World world = getServer().getWorld(worldstr);
                        Location location = new Location(world, arenas.getInt("main-spawn.x"), arenas.getInt("main-spawn.y"), arenas.getInt("main-spawn.z"));
                        if (players.contains(player))
                        {
                            players.remove(player);
                            player.teleport(location);
                            player.sendMessage(ChatColor.GOLD + "You have left the game!");
                            for (Player pl : players)
                            {
                                pl.sendMessage(ChatColor.GOLD + "" + player.getName() + " has left the arena!");
                            }
                        }
                        else
                        {
                            player.sendMessage(ChatColor.GOLD + "You're not in a game!");
                        }
                    }
                    else if (!player.hasPermission("leave"))
                    {
                        player.sendMessage(ChatColor.RED + "You don't have the required permission for that!");
                    }
                    else
                    {
                        player.sendMessage(ChatColor.RED + "An unexpected error occured: Error: bg.leave.permission");
                    }
                }
                else if (args[0].equalsIgnoreCase("help"))
                {
                    player.sendMessage(ChatColor.DARK_GRAY + "---------------------" + ChatColor.GOLD + "BuildingGame" + ChatColor.DARK_GRAY + "---------------------");
                    player.sendMessage(ChatColor.GOLD + "/bg setmainspawn" + ChatColor.DARK_GRAY + " - Sets the main spawn location for the buildinggame");
                    player.sendMessage(ChatColor.GOLD + "/bg createarena <arenaname>" + ChatColor.DARK_GRAY + " - Create a new arena");
                    player.sendMessage(ChatColor.GOLD + "/bg setspawn <arenaname>" + ChatColor.DARK_GRAY + " - Set a new spawn location");
                    player.sendMessage(ChatColor.GOLD + "/bg join <arenaname>" + ChatColor.DARK_GRAY + " - Join an arena");
                    player.sendMessage(ChatColor.GOLD + "/bg leave" + ChatColor.DARK_GRAY + " - Leave your game");
                    player.sendMessage(ChatColor.GOLD + "/bg done" + ChatColor.DARK_GRAY + " - Mark your building as done");
                }
                else if (args[0].equalsIgnoreCase("setting"))
                {
                    if (args[1].equalsIgnoreCase("timer"))
                    {
                        if (isInt(args[2]))
                        {
                            getConfig().set("timer", args[2]);
                        }
                        else if (!isInt(args[2]))
                        {
                            player.sendMessage(ChatColor.RED + "This setting can only be an integer!");
                        }
                        else
                        {
                            player.sendMessage(ChatColor.RED + "An unexpected error occured. Error: bg.setting.timer.integer");
                        }
                    }
                    else
                    {
                        player.sendMessage(ChatColor.RED + "That setting does not exist");
                    }
                }
                else
                {
                    player.sendMessage(ChatColor.DARK_GRAY + "---------------------" + ChatColor.GOLD + "BuildingGame" + ChatColor.DARK_GRAY + "---------------------");
                    player.sendMessage(ChatColor.GOLD + "/bg setmainspawn" + ChatColor.DARK_GRAY + " - Sets the main spawn location for the buildinggame");
                    player.sendMessage(ChatColor.GOLD + "/bg createarena <arenaname>" + ChatColor.DARK_GRAY + " - Create a new arena");
                    player.sendMessage(ChatColor.GOLD + "/bg setspawn <arenaname>" + ChatColor.DARK_GRAY + " - Set a new spawn location");
                    player.sendMessage(ChatColor.GOLD + "/bg join <arenaname>" + ChatColor.DARK_GRAY + " - Join an arena");
                    player.sendMessage(ChatColor.GOLD + "/bg leave" + ChatColor.DARK_GRAY + " - Leave your game");
                    player.sendMessage(ChatColor.GOLD + "/bg done" + ChatColor.DARK_GRAY + " - Mark your building as done");
                }
            }
            return false;
        }
        // for the files
        private void copy(InputStream in, File file)
        {
            try
            {
                OutputStream out = new FileOutputStream (file);
                byte[] buf = new byte [1024];
                int len;
                while((len = in.read(buf)) > 0)
                {
                    out.write(buf, 0, len);
                }
                out.close();
                in.close();
            }
            catch (Exception e)
            {
                e.printStackTrace();
            }
        }
        public void saveYamls()
        {
            try
            {
                arenas.save(arenasFile);
                config.save(configFile);
            }
            catch (IOException e)
            {
                e.printStackTrace();
            }
        }
        public void loadYamls() {
            try
            {
                arenas.load(arenasFile);
                config.load(configFile);
            }
            catch (Exception e)
            {
                e.printStackTrace();
            }
        }
        public static boolean isInt(String s) {
            try
            {
                Integer.parseInt(s);
            }
            catch (NumberFormatException nfe)
            {
                return false;
            }
            return true;
        }
    }
    The Timer class:

    Code:
    package me.stefvanschie;
    
    import org.bukkit.ChatColor;
    import org.bukkit.Location;
    import org.bukkit.World;
    import org.bukkit.entity.Player;
    import org.bukkit.scheduler.BukkitRunnable;
    
    public class Timer extends BukkitRunnable
    {
        private int seconds = plugin.getConfig().getInt("timer");
        public static BuildingGame plugin;
       
        public Timer(BuildingGame instance)
        {
            plugin = instance;
        }
        public Timer(int seconds)
        {
            this.seconds = seconds;
        }
        @Override
        public void run()
        {
            seconds--;
            if (seconds % 60 == 0 || seconds == 30 || seconds == 15 || (seconds >= 1 && seconds <= 10))
            {
                for (Player player : plugin.players)
                {
                    player.sendMessage(ChatColor.GOLD + "You have " + seconds + " left!");
                }
            }
            else if (seconds == 0)
            {
                for (Player player : plugin.players)
                {
                    player.sendMessage(ChatColor.GOLD + "The time to build is over!");
                }
                String worldstr = plugin.arenas.getString("main-spawn.world");
                World world = plugin.getServer().getWorld(worldstr);
                int x = plugin.arenas.getInt("main-spawn.x");
                int y = plugin.arenas.getInt("main-spawn.y");
                int z = plugin.arenas.getInt("main-spawn.z");
                Location location = new Location(world, x, y, z);
                plugin.players.clear();
                for (Player pl : plugin.players)
                {
                    pl.teleport(location);
                    pl.sendMessage(ChatColor.GOLD + "Game done!");
                }
                plugin.players.clear();
                this.cancel();
            }
        }
    }
    The plugin.yml:
    Code:
    name: Building Game
    main: me.stefvanschie.BuildingGame
    version: 0.4.0
    commands:
      bg:
        description: BuildingGame command
    The config.yml and the arenas.yml are both empty.

    Thanks for helping!
     
    Last edited by a moderator: May 18, 2015
  2. Offline

    timtower Administrator Administrator Moderator

  3. Offline

    stefvanschie

    I don't get an error message :(
     
  4. Offline

    timtower Administrator Administrator Moderator

  5. Offline

    stefvanschie

    Here you are.
    Code:
    18.05 11:23:24 [Server] INFO Using resource pack: http://bit.ly/1bpPnRr
    18.05 11:23:24 [Server] INFO Resolved ResourcePack URL to: http://addons-origin.cursecdn.com/files/773/236/MarioKart-latest.zip
    18.05 11:23:23 [Server] INFO An update for iDisguise is available: iDisguise v4-test-028-1.8.3
    18.05 11:23:23 [Server] INFO Error: Could not check if plugin was up to date. Will try later 18.05 11:23:23 [Server] INFO No updates available.
    18.05 11:23:22 [Server] INFO Attempting to resolve resource pack URL... (This may take a while)
    18.05 11:23:22 [Server] INFO [HyperConomy]No updates available.
    18.05 11:23:21 [Server] INFO No new version available
    18.05 11:23:21 [Multicraft] Skipped 36 lines due to rate limit (30/s)
    18.05 11:23:20 [Server] INFO Max TNT Explosions: 100
    18.05 11:23:20 [Server] INFO Custom Map Seeds: Village: 10387312 Feature: 14357617 18.05 11:23:20 [Server] INFO Max Entity Collisions: 8
    18.05 11:23:20 [Server] INFO Sending up to 10 chunks per packet
    18.05 11:23:20 [Server] INFO Structure Info Saving: true
    18.05 11:23:20 [Server] INFO Random Lighting Updates: false
    18.05 11:23:20 [Server] INFO Hopper Transfer: 8 Hopper Check: 8 Hopper Amount: 1
    18.05 11:23:20 [Server] INFO Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
    18.05 11:23:20 [Server] INFO Entity Activation Range: An 32 / Mo 32 / Mi 16 18.05 11:23:20 [Server] INFO Wheat Growth Modifier: 100%
    18.05 11:23:20 [Server] INFO Sapling Growth Modifier: 100%
    18.05 11:23:20 [Server] INFO Pumpkin Growth Modifier: 100%
    18.05 11:23:20 [Server] INFO Mushroom Growth Modifier: 100%
    18.05 11:23:20 [Server] INFO Melon Growth Modifier: 100%
    18.05 11:23:20 [Server] INFO Cane Growth Modifier: 100%
    18.05 11:23:20 [Server] INFO Cactus Growth Modifier: 100%
    18.05 11:23:20 [Server] INFO Nerfing mobs spawned from spawners: false
    18.05 11:23:20 [Server] INFO Replace Blocks: [1, 5]
    18.05 11:23:20 [Server] INFO Hidden Blocks: [14, 15, 16, 21, 48, 49, 54, 56, 73, 74, 82, 129, 130]
    18.05 11:23:20 [Server] INFO Engine Mode: 1
    18.05 11:23:20 [Server] INFO Anti X-Ray: true
    18.05 11:23:20 [Server] INFO Mob Spawn Range: 4
    18.05 11:23:20 [Server] INFO -------- World Settings For [ASkyBlock] --------
    18.05 11:23:20 [Server] WARN No rcon password set in 'server.properties', rcon disabled! 18.05 11:23:20 [Server] INFO Query running on 5.255.70.70:26062
    18.05 11:23:20 [Server] INFO Starting remote control listener
    18.05 11:23:20 [Server] INFO Starting GS4 status listener
    18.05 11:23:20 [Server] Startup Done (18.893s)! For help, type "help" or "?"
    18.05 11:23:20 [Server] INFO Server permissions file permissions.yml is empty, ignoring it 18.05 11:23:20 [Server] INFO MarioKart v7 has been enabled!
    18.05 11:23:19 [Server] INFO Loading upgrades...
    18.05 11:23:19 [Server] WARN Disabling reward system...
    18.05 11:23:19 [Server] WARN Attempted to enable rewards but Vault/Economy NOT found. Please install vault to use this feature!
    18.05 11:23:19 [Server] INFO Loading information!
    18.05 11:23:19 [Server] INFO Loading tracks...
    18.05 11:23:19 [Server] INFO Loaded 3 songs!
    18.05 11:23:19 [Server] INFO Config loaded!
    18.05 11:23:19 [Server] INFO Successfully hooked into by: MarioKart
    18.05 11:23:19 [Server] INFO Reading config...
    18.05 11:23:19 [Server] INFO Enabling MarioKart v7
    18.05 11:23:18 [Server] INFO Enabling TouchscreenHolograms v1.3
    18.05 11:23:18 [Server] INFO uCars has been enabled!
    18.05 11:23:18 [Server] INFO Enabling uCars v19
    18.05 11:23:18 [Server] INFO v2.10.0 Enabled
    18.05 11:23:18 [Server] WARN Could not hook into Vault's Economy!
    18.05 11:23:18 [Multicraft] Skipped 13 lines due to rate limit (30/s)
    18.05 11:23:18 [Server] INFO at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:86) ~[spigot-os7.jar:git-Spigot-9284e9b-7722428]
    18.05 11:23:18 [Server] INFO at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:101) ~[spigot-os7.jar:git-Spigot-9284e9b-7722428]
    18.05 11:23:18 [Server] INFO at java.net.URLClassLoader.findClass(URLClassLoader.java:354) ~[?:1.7.0_75]
    18.05 11:23:18 [Server] INFO at java.security.AccessController.doPrivileged(Native Method) ~[?:1.7.0_75]
    18.05 11:23:18 [Server] INFO at java.net.URLClassLoader$1.run(URLClassLoader.java:355) ~[?:1.7.0_75]
    18.05 11:23:18 [Server] INFO at java.net.URLClassLoader$1.run(URLClassLoader.java:366) ~[?:1.7.0_75]
    18.05 11:23:18 [Server] INFO Caused by: java.lang.ClassNotFoundException: me.libraryaddict.disguise.disguisetypes.Disguise
    18.05 11:23:18 [Server] INFO at java.lang.Thread.run(Thread.java:745) [?:1.7.0_75]
    18.05 11:23:18 [Server] INFO at net.minecraft.server.v1_8_R2.MinecraftServer.run(MinecraftServer.java:522) [spigot-os7.jar:git-Spigot-9284e9b-7722428]
    18.05 11:23:18 [Server] INFO at net.minecraft.server.v1_8_R2.DedicatedServer.init(DedicatedServer.java:257) [spigot-os7.jar:git-Spigot-9284e9b-7722428]
    18.05 11:23:18 [Server] INFO at net.minecraft.server.v1_8_R2.MinecraftServer.a(MinecraftServer.java:337) [spigot-os7.jar:git-Spigot-9284e9b-7722428]
    18.05 11:23:18 [Server] INFO at net.minecraft.server.v1_8_R2.MinecraftServer.k(MinecraftServer.java:382) [spigot-os7.jar:git-Spigot-9284e9b-7722428]
    18.05 11:23:18 [Server] INFO at net.minecraft.server.v1_8_R2.MinecraftServer.r(MinecraftServer.java:416) [spigot-os7.jar:git-Spigot-9284e9b-7722428]
    18.05 11:23:18 [Server] INFO at org.bukkit.craftbukkit.v1_8_R2.CraftServer.enablePlugins(CraftServer.java:316) [spigot-os7.jar:git-Spigot-9284e9b-7722428]
    18.05 11:23:18 [Server] INFO at org.bukkit.craftbukkit.v1_8_R2.CraftServer.loadPlugin(CraftServer.java:356) [spigot-os7.jar:git-Spigot-9284e9b-7722428]
    18.05 11:23:18 [Server] INFO at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:405) [spigot-os7.jar:git-Spigot-9284e9b-7722428]
    18.05 11:23:18 [Server] INFO at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:335) [spigot-os7.jar:git-Spigot-9284e9b-7722428]
    18.05 11:23:18 [Server] INFO at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:321) ~[spigot-os7.jar:git-Spigot-9284e9b-7722428]
    18.05 11:23:18 [Server] INFO at nl.Steffion.BlockHunt.BlockHunt.onEnable(BlockHunt.java:324) ~[?:?]
    18.05 11:23:18 [Server] INFO java.lang.NoClassDefFoundError: me/libraryaddict/disguise/disguisetypes/Disguise
    18.05 11:23:18 [Server] ERROR Error occurred while enabling BlockHunt v0.2.0_BETA_B5 (Is it up to date?)
    18.05 11:23:18 [Server] INFO BlockHunt + 0.2.0_BETA_B5 is now Enabled. Made by Steffion.
    18.05 11:23:18 [Server] INFO Sending MCStats to the server...
    18.05 11:23:18 [Server] INFO Using Vault support
    18.05 11:23:18 [Server] INFO The plugin 'Lib's Disguises' is required to run this plugin! Intall it or it won't work!
    18.05 11:23:18 [Server] INFO Enabling BlockHunt v0.2.0_BETA_B5
    18.05 11:23:18 [Server] INFO [HyperConomy]Using internal economy plugin.
    18.05 11:23:17 [Server] INFO Enabling HyperConomy v0.975.5
    18.05 11:23:17 [Server] INFO v0.96.9 enabled.
    18.05 11:23:17 [Server] INFO Loaded arena 'mine'
    18.05 11:23:16 [Server] WARN Vault found, but no economy plugin detected. Economy rewards will not work!
    18.05 11:23:16 [Server] INFO No updates found!
    18.05 11:23:16 [Server] INFO Enabling MobArena v0.96.9
    18.05 11:23:16 [Server] INFO Found ProtocolLib, adding support for player relative variables.
    18.05 11:23:16 [Server] INFO Enabling HolographicDisplays v2.1.10
    18.05 11:23:16 [Server] INFO Checking for updates...
    18.05 11:23:16 [Server] INFO Clearlag is now enabled!
    18.05 11:23:16 [Server] INFO Modules have been loaded!
    18.05 11:23:16 [Server] WARN mob-range requires you to use bukkit v1_8_R1 (1.8 Spigot) 18.05 11:23:16 [Server] INFO Loading modules...
    18.05 11:23:16 [Server] INFO Enabling ClearLag v2.7.7
    18.05 11:23:16 [Server] INFO Timeismoney is now enabled
    18.05 11:23:16 [Server] INFO Enabling Timeismoney v1.5
    18.05 11:23:15 [Server] INFO Enabling ChestShop v3.8.7
    18.05 11:23:15 [Server] INFO iDisguise v4-test-003 enabled!
    18.05 11:23:15 [Server] INFO Enabling iDisguise v4-test-003
    18.05 11:23:15 [Server] INFO [Zombies] Get the latest version of COM:Z here: http://servermods.cursecdn.com/files/878/872/comz_1.8.3_.jar
    18.05 11:23:15 [Server] INFO [Zombies] You currently have version: 1.1.10 and the current version fro COM:Z is verion: 1.2.2
    18.05 11:23:14 [Server] INFO has been enabled!
    18.05 11:23:14 [Server] INFO Enabling COM_Zombies v1.1.10
    18.05 11:23:14 [Server] INFO Plugin is enabled!
    18.05 11:23:14 [Multicraft] Skipped 19 lines due to rate limit (30/s)
    18.05 11:23:13 [Server] INFO java.lang.IllegalArgumentException: The permission infinitekits.kit.* is already defined!
    18.05 11:23:13 [Server] WARN Plugin InfiniteKits v0.8 tried to register permission 'infinitekits.kit.*' but it's already registered
    18.05 11:23:13 [Server] INFO InfiniteKits version 0.8 is enabled!
    18.05 11:23:13 [Server] INFO Enabling InfiniteKits v0.8
    18.05 11:23:13 [Server] INFO Enabled
    18.05 11:23:13 [Server] INFO Enabling bChatManager v3.1.2
    18.05 11:23:13 [Server] INFO at java.lang.Thread.run(Thread.java:745) [?:1.7.0_75]
    18.05 11:23:13 [Server] INFO at net.minecraft.server.v1_8_R2.MinecraftServer.run(MinecraftServer.java:522) [spigot-os7.jar:git-Spigot-9284e9b-7722428]
    18.05 11:23:13 [Server] INFO at net.minecraft.server.v1_8_R2.DedicatedServer.init(DedicatedServer.java:257) [spigot-os7.jar:git-Spigot-9284e9b-7722428]
    18.05 11:23:13 [Server] INFO at net.minecraft.server.v1_8_R2.MinecraftServer.a(MinecraftServer.java:337) [spigot-os7.jar:git-Spigot-9284e9b-7722428]
    18.05 11:23:13 [Server] INFO at net.minecraft.server.v1_8_R2.MinecraftServer.k(MinecraftServer.java:382) [spigot-os7.jar:git-Spigot-9284e9b-7722428]
    18.05 11:23:13 [Server] INFO at net.minecraft.server.v1_8_R2.MinecraftServer.r(MinecraftServer.java:416) [spigot-os7.jar:git-Spigot-9284e9b-7722428]
    18.05 11:23:13 [Server] INFO at org.bukkit.craftbukkit.v1_8_R2.CraftServer.enablePlugins(CraftServer.java:316) [spigot-os7.jar:git-Spigot-9284e9b-7722428]
    18.05 11:23:12 [Server] INFO Checking valuability of the file...
    18.05 11:23:12 [Server] INFO Enabling BattleOfBlocks v2.2
    18.05 11:23:12 [Server] INFO Enabled
    18.05 11:23:12 [Server] INFO Enabling...
    18.05 11:23:12 [Server] INFO Enabling HeadBlocks v0.9
    18.05 11:23:12 [Server] ERROR [ColorMatch] - No iConomy dependency found! Disabling Economy.
    18.05 11:23:12 [Server] INFO Enabling ColorMatch v1.7.7
    18.05 11:23:12 [Server] INFO =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
    18.05 11:23:12 [Server] INFO = Status : Deactivated
    18.05 11:23:12 [Server] INFO = Author : MRI a.k.a Ivanpro
    18.05 11:23:12 [Server] INFO = Version : 5.1.6 18.05 11:23:12 [Server] INFO =-=-=-=-=-=-=-=-=-=-=-MyCommand-=-=-=-=-=-=-=-=-=-=-=-=
    18.05 11:23:12 [Server] INFO = Config : Outdated.
    18.05 11:23:12 [Server] INFO = |********************************************|
    18.05 11:23:12 [Server] INFO = | commands.yml . Remove It. |
    18.05 11:23:12 [Server] INFO = | Founded option.commandsnumber in |
    18.05 11:23:12 [Server] INFO = |********************************************|
    18.05 11:23:12 [Server] INFO = Spout : Not detected BarAPI : Not detected
    18.05 11:23:12 [Server] INFO = Vault : Ok. Hooked MyCommand Vault 1.5.3-b37
    18.05 11:23:12 [Server] INFO =-=-=-=-=-=-=-=-=-=-=-MyCommand-=-=-=-=-=-=-=-=-=-=-=-=
    18.05 11:23:12 [Server] INFO Enabling MyCommand v5.1.6
    18.05 11:23:11 [Server] INFO [Vault][Chat] PermissionsEx_Chat hooked.
    18.05 11:23:11 [Server] INFO [Vault][Permission] PermissionsEx hooked.
    18.05 11:23:11 [Server] INFO WEPIF: PermissionsEx detected! Using PermissionsEx for permissions.
    18.05 11:23:11 [Server] INFO Permissions file successfully reloaded
    18.05 11:23:11 [Server] INFO Initializing file backend
    18.05 11:23:11 [Server] INFO Enabling PermissionsEx v1.23.2
    18.05 11:23:11 [Multicraft] Skipped 55 lines due to rate limit (30/s)
    18.05 11:23:10 [Server] INFO Zombie Aggressive Towards Villager: true
    18.05 11:23:10 [Server] INFO View Distance: 10
    18.05 11:23:10 [Server] INFO Allow Zombie Pigmen to spawn from portal blocks: true
    18.05 11:23:10 [Server] INFO Arrow Despawn Rate: 1200
    18.05 11:23:10 [Server] INFO Item Merge Radius: 2.5
    18.05 11:23:10 [Server] INFO Item Despawn Rate: 6000
    18.05 11:23:10 [Server] INFO Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
    18.05 11:23:10 [Server] INFO Max TNT Explosions: 100
    18.05 11:23:10 [Server] INFO Custom Map Seeds: Village: 10387312 Feature: 14357617 18.05 11:23:10 [Server] INFO Max Entity Collisions: 8
    18.05 11:23:10 [Server] INFO Sending up to 10 chunks per packet
    18.05 11:23:10 [Server] INFO Structure Info Saving: true
    18.05 11:23:10 [Server] INFO Random Lighting Updates: false
    18.05 11:23:10 [Server] INFO Hopper Transfer: 8 Hopper Check: 8 Hopper Amount: 1
    18.05 11:23:10 [Server] INFO Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
    18.05 11:23:10 [Server] INFO Entity Activation Range: An 32 / Mo 32 / Mi 16
    18.05 11:23:10 [Server] INFO Wheat Growth Modifier: 100%
    18.05 11:23:10 [Server] INFO Sapling Growth Modifier: 100%
    18.05 11:23:10 [Server] INFO Pumpkin Growth Modifier: 100%
    18.05 11:23:10 [Server] INFO Mushroom Growth Modifier: 100%
    18.05 11:23:10 [Server] INFO Melon Growth Modifier: 100%
    18.05 11:23:10 [Server] INFO Cane Growth Modifier: 100%
    18.05 11:23:10 [Server] INFO Cactus Growth Modifier: 100%
    18.05 11:23:10 [Server] INFO Nerfing mobs spawned from spawners: false
    18.05 11:23:10 [Server] INFO Replace Blocks: [1, 5]
    18.05 11:23:10 [Server] INFO Hidden Blocks: [14, 15, 16, 21, 48, 49, 54, 56, 73, 74, 82, 129, 130] 18.05 11:23:10 [Server] INFO Engine Mode: 1
    18.05 11:23:10 [Server] INFO Anti X-Ray: true
    18.05 11:23:10 [Server] INFO Mob Spawn Range: 4
    18.05 11:23:10 [Server] INFO -------- World Settings For [world_the_end] --------
    18.05 11:23:10 [Multicraft] Skipped 13 lines due to rate limit (30/s)
    18.05 11:23:07 [Server] INFO Max Entity Collisions: 8
    18.05 11:23:07 [Server] INFO Sending up to 10 chunks per packet
    18.05 11:23:07 [Server] INFO Structure Info Saving: true
    18.05 11:23:07 [Server] INFO Random Lighting Updates: false
    18.05 11:23:07 [Server] INFO Hopper Transfer: 8 Hopper Check: 8 Hopper Amount: 1
    18.05 11:23:07 [Server] INFO Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
    18.05 11:23:07 [Server] INFO Entity Activation Range: An 32 / Mo 32 / Mi 16
    18.05 11:23:07 [Server] INFO Wheat Growth Modifier: 100%
    18.05 11:23:07 [Server] INFO Sapling Growth Modifier: 100%
    18.05 11:23:07 [Server] INFO Pumpkin Growth Modifier: 100%
    18.05 11:23:07 [Server] INFO Mushroom Growth Modifier: 100%
    18.05 11:23:07 [Server] INFO Melon Growth Modifier: 100%
    18.05 11:23:07 [Server] INFO Cane Growth Modifier: 100%
    18.05 11:23:07 [Server] INFO Cactus Growth Modifier: 100%
    18.05 11:23:07 [Server] INFO Nerfing mobs spawned from spawners: false
    18.05 11:23:07 [Server] INFO Replace Blocks: [1, 5]
    18.05 11:23:07 [Server] INFO Hidden Blocks: [14, 15, 16, 21, 48, 49, 54, 56, 73, 74, 82, 129, 130] 18.05 11:23:07 [Server] INFO Engine Mode: 1
    18.05 11:23:07 [Server] INFO Anti X-Ray: true
    18.05 11:23:07 [Server] INFO Mob Spawn Range: 4
    18.05 11:23:07 [Server] INFO -------- World Settings For [world_nether] --------
    18.05 11:23:07 [Server] INFO Preparing start region for level 10 (Seed: -3523696823138590795) 18.05 11:23:07 [Server] INFO - schematic: false
    18.05 11:23:07 [Server] INFO plugins/PlotSquared/schematics/GEN_ROAD_SCHEMATIC/plot/plot.schematic doesn't exist
    18.05 11:23:07 [Server] INFO plugins/PlotSquared/schematics/GEN_ROAD_SCHEMATIC/plot/intersection.schematic doesn't exist
    18.05 11:23:07 [Server] INFO plugins/PlotSquared/schematics/GEN_ROAD_SCHEMATIC/plot/sideroad.schematic doesn't exist
    18.05 11:23:07 [Server] INFO - manager: com.intellectualcrafters.plot.generator.HybridPlotManager
    18.05 11:23:07 [Server] INFO - plotworld: com.intellectualcrafters.plot.generator.HybridPlotWorld
    18.05 11:23:07 [Server] INFO - generator: com.intellectualcrafters.plot.generator.HybridGen
    18.05 11:23:07 [Server] INFO Detected world load for 'plot'
    18.05 11:23:07 [Multicraft] Skipped 105 lines due to rate limit (30/s)
    18.05 11:23:06 [Server] INFO Zombie Aggressive Towards Villager: true
    18.05 11:23:06 [Server] INFO View Distance: 10
    18.05 11:23:06 [Server] INFO Allow Zombie Pigmen to spawn from portal blocks: true
    18.05 11:23:06 [Server] INFO Arrow Despawn Rate: 1200
    18.05 11:23:06 [Server] INFO Item Merge Radius: 2.5
    18.05 11:23:06 [Server] INFO Item Despawn Rate: 6000
    18.05 11:23:06 [Server] INFO Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
    18.05 11:23:06 [Server] INFO Max TNT Explosions: 100
    18.05 11:23:06 [Server] INFO Custom Map Seeds: Village: 10387312 Feature: 14357617 18.05 11:23:06 [Server] INFO Max Entity Collisions: 8
    18.05 11:23:06 [Server] INFO Sending up to 10 chunks per packet
    18.05 11:23:06 [Server] INFO Structure Info Saving: true
    18.05 11:23:06 [Server] INFO Random Lighting Updates: false
    18.05 11:23:06 [Server] INFO Hopper Transfer: 8 Hopper Check: 8 Hopper Amount: 1
    18.05 11:23:06 [Server] INFO Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
    18.05 11:23:06 [Server] INFO Entity Activation Range: An 32 / Mo 32 / Mi 16
    18.05 11:23:06 [Server] INFO Wheat Growth Modifier: 100%
    18.05 11:23:06 [Server] INFO Sapling Growth Modifier: 100%
    18.05 11:23:06 [Server] INFO Pumpkin Growth Modifier: 100%
    18.05 11:23:06 [Server] INFO Mushroom Growth Modifier: 100%
    18.05 11:23:06 [Server] INFO Melon Growth Modifier: 100%
    18.05 11:23:06 [Server] INFO Cane Growth Modifier: 100%
    18.05 11:23:06 [Server] INFO Cactus Growth Modifier: 100%
    18.05 11:23:06 [Server] INFO Nerfing mobs spawned from spawners: false
    18.05 11:23:06 [Server] INFO Replace Blocks: [1, 5]
    18.05 11:23:06 [Server] INFO Hidden Blocks: [14, 15, 16, 21, 48, 49, 54, 56, 73, 74, 82, 129, 130]
    18.05 11:23:06 [Server] INFO Engine Mode: 1
    18.05 11:23:06 [Server] INFO Anti X-Ray: true
    18.05 11:23:06 [Server] INFO Mob Spawn Range: 4
    18.05 11:23:06 [Server] INFO -------- World Settings For [ZombieVsPlayer] --------
    18.05 11:22:59 [Server] INFO at org.bukkit.plugin.PluginDescriptionFile.<init>(PluginDescriptionFile.java:232) ~[spigot-os7.jar:git-Spigot-9284e9b-7722428]
    18.05 11:22:59 [Server] INFO at org.yaml.snakeyaml.Yaml.load(Yaml.java:412) ~[spigot-os7.jar:git-Spigot-9284e9b-7722428]
    18.05 11:22:59 [Server] INFO at org.yaml.snakeyaml.Yaml.loadFromReader(Yaml.java:481) ~[spigot-os7.jar:git-Spigot-9284e9b-7722428]
    18.05 11:22:59 [Server] INFO at org.yaml.snakeyaml.constructor.BaseConstructor.getSingleData(BaseConstructor.java:120) ~[spigot-os7.jar:git-Spigot-9284e9b-7722428]
    18.05 11:22:59 [Server] INFO at org.yaml.snakeyaml.composer.Composer.getSingleNode(Composer.java:105) ~[spigot-os7.jar:git-Spigot-9284e9b-7722428]
    18.05 11:22:59 [Server] INFO at org.yaml.snakeyaml.composer.Composer.composeDocument(Composer.java:122) ~[spigot-os7.jar:git-Spigot-9284e9b-7722428]
    18.05 11:22:59 [Server] INFO at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:155) ~[spigot-os7.jar:git-Spigot-9284e9b-7722428]
    18.05 11:22:59 [Server] INFO at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:231) ~[spigot-os7.jar:git-Spigot-9284e9b-7722428]
    18.05 11:22:59 [Server] INFO at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:132) ~[spigot-os7.jar:git-Spigot-9284e9b-7722428]
    18.05 11:22:59 [Server] INFO at org.yaml.snakeyaml.parser.ParserImpl.checkEvent(ParserImpl.java:143) ~[spigot-os7.jar:git-Spigot-9284e9b-7722428]
    18.05 11:22:59 [Server] INFO at org.yaml.snakeyaml.parser.ParserImpl.peekEvent(ParserImpl.java:158) ~[spigot-os7.jar:git-Spigot-9284e9b-7722428]
    18.05 11:22:59 [Server] INFO at org.yaml.snakeyaml.parser.ParserImpl$ParseBlockMappingValue.produce(ParserImpl.java:586) ~[spigot-os7.jar:git-Spigot-9284e9b-7722428]
    18.05 11:22:59 [Server] INFO at org.yaml.snakeyaml.scanner.ScannerImpl.checkToken(ScannerImpl.java:226) ~[spigot-os7.jar:git-Spigot-9284e9b-7722428]
    18.05 11:22:59 [Server] INFO at org.yaml.snakeyaml.scanner.ScannerImpl.fetchMoreTokens(ScannerImpl.java:420) ~[spigot-os7.jar:git-Spigot-9284e9b-7722428]
    18.05 11:22:59 [Server] INFO ^
    18.05 11:22:59 [Server] INFO ctf:
    18.05 11:22:59 [Server] INFO in 'reader', line 5, column 1:
    18.05 11:22:59 [Server] INFO found character '\t(TAB)' that cannot start any token. (Do not use \t(TAB) for indentation)
    18.05 11:22:59 [Server] INFO Caused by: org.yaml.snakeyaml.scanner.ScannerException: while scanning for the next token
    18.05 11:22:59 [Server] INFO at java.lang.Thread.run(Thread.java:745) [?:1.7.0_75]
    18.05 11:22:59 [Server] INFO at net.minecraft.server.v1_8_R2.MinecraftServer.run(MinecraftServer.java:522) [spigot-os7.jar:git-Spigot-9284e9b-7722428]
    18.05 11:22:59 [Server] INFO at net.minecraft.server.v1_8_R2.DedicatedServer.init(DedicatedServer.java:199) [spigot-os7.jar:git-Spigot-9284e9b-7722428]
    18.05 11:22:59 [Server] INFO at org.bukkit.craftbukkit.v1_8_R2.CraftServer.loadPlugins(CraftServer.java:291) [spigot-os7.jar:git-Spigot-9284e9b-7722428]
    18.05 11:22:59 [Server] INFO at org.bukkit.plugin.SimplePluginManager.loadPlugins(SimplePluginManager.java:133) [spigot-os7.jar:git-Spigot-9284e9b-7722428]
    18.05 11:22:59 [Server] INFO at org.bukkit.plugin.java.JavaPluginLoader.getPluginDescription(JavaPluginLoader.java:164) ~[spigot-os7.jar:git-Spigot-9284e9b-7722428]
    18.05 11:22:59 [Server] INFO org.bukkit.plugin.InvalidDescriptionException: Invalid plugin.yml
    18.05 11:22:59 [Server] ERROR Could not load 'plugins/capturetheflag.jar' in folder 'plugins' 18.05 11:22:58 [Server] INFO Using epoll channel type
    18.05 11:22:58 [Server] INFO Starting Minecraft server on 5.255.70.70:26062
    18.05 11:22:58 [Server] INFO Generating keypair
    18.05 11:22:58 [Server] INFO Debug logging is disabled
    18.05 11:22:58 [Server] INFO Using 4 threads for Netty based IO
    18.05 11:22:58 [Server] INFO Server Ping Player Sample Count: 12
    18.05 11:22:58 [Server] INFO This server is running CraftBukkit version git-Spigot-9284e9b-7722428 (MC: 1.8.3) (Implementing API version 1.8.3-R0.1-SNAPSHOT) 
    18.05 11:22:58 [Server] INFO Default game type: SURVIVAL 
    18.05 11:22:57 [Server] INFO Loading properties 
    18.05 11:22:57 [Server] INFO Starting minecraft server version 1.8.3 
    18.05 11:22:51 [Server] INFO Loading libraries, please wait... 
    18.05 11:22:51 [Server] INFO Please see http://www.spigotmc.org/wiki/changing-permgen-size/ for more details and more in-depth instructions. 
    18.05 11:22:51 [Server] INFO Warning, your max perm gen size is not set or less than 128mb. It is recommended you restart Java with the following argument: -XX:MaxPermSize=128M 
    18.05 11:22:50 [Multicraft] Updating eula.txt file 
    18.05 11:22:50 [Multicraft] Loaded config for "[1.8.4] *Nieuwe!* Spigot" 
    18.05 11:22:50 [Multicraft] Starting server! 
    18.05 11:22:50 [Multicraft] Loading server properties 
    18.05 11:22:47 [Multicraft] Server stopped 
    18.05 11:22:47 [Multicraft] Server shut down (stopping) 
    18.05 11:22:46 [Server] INFO Saving offline messages... 
    18.05 11:22:46 [Server] INFO Saving warps... 
    18.05 11:22:46 [Server] INFO Disabling ASkyBlock v2.9.3.3 
    18.05 11:22:46 [Server] INFO Plugin is disabled! 
    18.05 11:22:46 [Server] INFO Disabling ZombieVsPlayer v2.5.2 
    18.05 11:22:46 [Server] INFO has been disabled! 
    18.05 11:22:46 [Server] INFO Disabling COM_Zombies v1.1.10 
    18.05 11:22:46 [Server] INFO iDisguise v4-test-003 disabled! 
    18.05 11:22:46 [Server] INFO Disabling iDisguise v4-test-003 
    18.05 11:22:46 [Server] INFO Disabling ChestShop v3.8.7 
    18.05 11:22:46 [Server] INFO Timeismoney is now disabled 
    18.05 11:22:46 [Server] INFO Disabling Timeismoney v1.5 
    18.05 11:22:46 [Server] INFO Disabling ClearLag v2.7.7 
    18.05 11:22:46 [Server] INFO Disabling ProtocolLib v3.6.2-SNAPSHOT 
    18.05 11:22:46 [Server] INFO Disabling HolographicDisplays v2.1.10 
    18.05 11:22:46 [Server] INFO disabled. 
    18.05 11:22:46 [Server] INFO Disabling MobArena v0.96.9 
    18.05 11:22:46 [Server] INFO Disabling HyperConomy v0.975.5 
    18.05 11:22:46 [Server] INFO BlockHunt - 0.2.0_BETA_B5 is now Disabled. Made by Steffion. 
    18.05 11:22:46 [Server] INFO Disabling BlockHunt v0.2.0_BETA_B5 
    18.05 11:22:46 [Server] INFO 3.19.1 unloaded. 
    18.05 11:22:46 [Server] INFO Disabling VanishNoPacket v3.19.1 
    18.05 11:22:46 [Server] INFO Disabling GlobalGroupManager v1.2.0 
    18.05 11:22:46 [Server] INFO Disabled 
    18.05 11:22:46 [Server] INFO Successfully cancelled Async Storage task with ID: 48 
    18.05 11:22:46 [Server] INFO Disabling SignShop v2.10.0 
    18.05 11:22:46 [Server] INFO uCars has been disabled! 
    18.05 11:22:46 [Server] INFO Successfully unhooked all plugins! 
    18.05 11:22:46 [Server] INFO Disabling uCars v19 
    18.05 11:22:46 [Server] INFO Disabling TouchscreenHolograms v1.3 
    18.05 11:22:45 [Server] INFO MarioKart has been disabled! 
    18.05 11:22:45 [Server] INFO Successfully unhooked: MarioKart 
    18.05 11:22:45 [Server] INFO Disabling MarioKart v7 
    18.05 11:22:45 [Server] INFO Stopping server 
    18.05 11:22:45 [Server] INFO Saving... 
    18.05 11:22:45 [Multicraft] Stopping server! 
    18.05 11:22:45 [Multicraft] Received restart command
     
    Last edited: May 18, 2015
  6. Offline

    timtower Administrator Administrator Moderator

    Moved to Bukkit alternatives
     
  7. Offline

    stefvanschie

    I've found the error, it says it's getting a null pointer exception at the onEnable class.
    The full error:
    Code:
    [18:25:36] [Server thread/ERROR]: Could not load 'plugins\buildinggame.jar' in folder 'plugins'
    org.bukkit.plugin.InvalidPluginException: java.lang.NullPointerException
        at org.bukkit.plugin.java.JavaPluginLoader.loadPlugin(JavaPluginLoader.java:133) ~[craftbukkit-1.8.3.jar:git-Bukkit-0a645a2]
        at org.bukkit.plugin.SimplePluginManager.loadPlugin(SimplePluginManager.java:328) ~[craftbukkit-1.8.3.jar:git-Bukkit-0a645a2]
        at org.bukkit.plugin.SimplePluginManager.loadPlugins(SimplePluginManager.java:251) [craftbukkit-1.8.3.jar:git-Bukkit-0a645a2]
        at org.bukkit.craftbukkit.v1_8_R2.CraftServer.loadPlugins(CraftServer.java:288) [craftbukkit-1.8.3.jar:git-Bukkit-0a645a2]
        at org.bukkit.craftbukkit.v1_8_R2.CraftServer.<init>(CraftServer.java:250) [craftbukkit-1.8.3.jar:git-Bukkit-0a645a2]
        at net.minecraft.server.v1_8_R2.PlayerList.<init>(PlayerList.java:69) [craftbukkit-1.8.3.jar:git-Bukkit-0a645a2]
        at net.minecraft.server.v1_8_R2.DedicatedPlayerList.<init>(SourceFile:14) [craftbukkit-1.8.3.jar:git-Bukkit-0a645a2]
        at net.minecraft.server.v1_8_R2.DedicatedServer.init(DedicatedServer.java:180) [craftbukkit-1.8.3.jar:git-Bukkit-0a645a2]
        at net.minecraft.server.v1_8_R2.MinecraftServer.run(MinecraftServer.java:501) [craftbukkit-1.8.3.jar:git-Bukkit-0a645a2]
        at java.lang.Thread.run(Unknown Source) [?:1.8.0_45]
    Caused by: java.lang.NullPointerException
        at me.stefvanschie.Timer.<init>(Timer.java:11) ~[?:?]
        at me.stefvanschie.BuildingGame.<init>(BuildingGame.java:30) ~[?:?]
        at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:1.8.0_45]
        at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source) ~[?:1.8.0_45]
        at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source) ~[?:1.8.0_45]
        at java.lang.reflect.Constructor.newInstance(Unknown Source) ~[?:1.8.0_45]
        at java.lang.Class.newInstance(Unknown Source) ~[?:1.8.0_45]
        at org.bukkit.plugin.java.PluginClassLoader.<init>(PluginClassLoader.java:52) ~[craftbukkit-1.8.3.jar:git-Bukkit-0a645a2]
        at org.bukkit.plugin.java.JavaPluginLoader.loadPlugin(JavaPluginLoader.java:129) ~[craftbukkit-1.8.3.jar:git-Bukkit-0a645a2]
        ... 9 more
    
     
    Last edited: May 19, 2015
Thread Status:
Not open for further replies.

Share This Page