RemoteEntities not working for IntelliJ

Discussion in 'Plugin Help/Development/Requests' started by TheCoderGuy, Jan 12, 2015.

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

    TheCoderGuy

    Hi everyone,

    So I am trying to get the player to be able to move on an EnderDragon, but whenever I try to join the server, it kicks me. Every time I try to reload the server, an error pops up. Here's the error:
    Here's my code for the join listener:
    Code:
    package com.thebyte.dragons.events;
    
    import com.thebyte.dragons.objects.GadgetItems;
    
    import de.kumpelblase2.remoteentities.EntityManager;
    import de.kumpelblase2.remoteentities.RemoteEntities;
    import de.kumpelblase2.remoteentities.api.RemoteEntity;
    import de.kumpelblase2.remoteentities.api.RemoteEntityType;
    import de.kumpelblase2.remoteentities.api.thinking.goals.DesireLookAtNearest;
    import org.bukkit.*;
    import org.bukkit.entity.*;
    import org.bukkit.event.EventHandler;
    import org.bukkit.event.Listener;
    import org.bukkit.event.player.PlayerJoinEvent;
    import org.bukkit.plugin.Plugin;
    import org.bukkit.potion.PotionEffect;
    import org.bukkit.potion.PotionEffectType;
    
    
    public class JoinListener implements Listener{
    
        Plugin plugin;
    
        @EventHandler
        public void onJoin(final PlayerJoinEvent event) {
            event.getPlayer().getInventory().clear();
            Player p = event.getPlayer();
            p.getInventory().setItem(8, GadgetItems.hubControl);
            if(Bukkit.getWorld("mainLobby") == null){
                Bukkit.createWorld(new WorldCreator("mainLobby"));
            }
            p.teleport(new Location(Bukkit.getWorld("mainLobby"), 0, 100, 0));
    
            p.setFlying(true);
    
            for(Entity en : p.getWorld().getEntities()){
                if(!(en instanceof Player)){
                    en.remove();
                }
            }
    
            p.sendMessage(ChatColor.RED + "[DEBUG 1] " + ChatColor.WHITE + "Spawning ender dragons for departure...");
            p.addPotionEffect(new PotionEffect(PotionEffectType.INVISIBILITY, 9999, 3));
            /*EnderDragon dragon = (EnderDragon) Bukkit.getWorld("world").spawnEntity(p.getLocation(), EntityType.ENDER_DRAGON);
            dragon.setHealth(200);
            dragon.setCustomName(null);
            dragon.setCustomNameVisible(false);
            dragon.setPassenger(p);*/
    
            EntityManager manager = RemoteEntities.createManager(this.plugin);
            //Using the manager we create a new Zombie npc at the spawn location, but we won't setup the standard desires/goals
            RemoteEntity entity = manager.createEntity(RemoteEntityType.EnderDragon, p.getLocation(), false);
            //We don't want him to move so we make him stationary
    
            entity.setStationary(true);
            entity.getMind().addMovementDesire(new DesireLookAtNearest(entity, Player.class, 8F), 1);
    
            p.teleport(new Location(Bukkit.getWorld("mainLobby"), 0, 100, 0));
    
            p.sendMessage(ChatColor.RED + "[DEBUG 2] " + ChatColor.WHITE + "Allowing player to move on ender dragon...");
        }
    
    
    }
    Also, here is my plugin.yml:
    Code:
    name: Dragons
    main: com.thebyte.dragons.DragonsCore
    version: 0.0.2
    
    depend: [RemoteEntities]
    Any help would be awesome :D
     
  2. Offline

    XgXXSnipz

    @TheCoderGuy make sure you have the plugin Remote Entites in your plugin folder
     
  3. Offline

    TheCoderGuy

    @XgXXSnipz Hmm, I tried that, but I got another error.
     
  4. Offline

    XgXXSnipz

    @TheCoderGuy post the log pls
    Code:
    depend: [RemoteEntites]
    @TheCoderGuy Also make sure your using 1.6.2

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: Jun 13, 2016
  5. Offline

    TheCoderGuy

    @XgXXSnipz
    Code:
    C:\Users\Chris\Desktop\CraftBukkit\BukkitTesting>#!/bin/bash
    '#!' is not recognized as an internal or external command,
    operable program or batch file.
    
    C:\Users\Chris\Desktop\CraftBukkit\BukkitTesting>cd "$( dirname "$0" )"
    The system cannot find the path specified.
    
    C:\Users\Chris\Desktop\CraftBukkit\BukkitTesting>java -Xmx1G -Xms1G -jar spigot.
    jar
    This Spigot build supports Minecraft clients both of versions 1.7.x and of 1.8.x
    .
    *** It is imperative that backups be taken before running this build on your ser
    ver! ***
    Please report any such issues to http://www.spigotmc.org/, stating your client,
    server, and if applicable BungeeCord versions.
    *** Any bug reports not running the very latest versions of these softwares will
    be ignored ***
    
    
    WARNING: This build is more than 2 days old and there are likely updates availab
    le!
    You will get no support with this build unless you update from http://ci.md-5.ne
    t/job/Spigot/
    The server will start in 10 seconds!
    [18:11:37 INFO]: Starting minecraft server version 1.7.10
    [18:11:37 INFO]: Loading properties
    [18:11:37 INFO]: Default game type: SURVIVAL
    [18:11:37 INFO]: This server is running CraftBukkit version git-Spigot-1649 (MC:
    1.7.10) (Implementing API version 1.7.10-R0.1-SNAPSHOT)
    [18:11:37 INFO]: Debug logging is disabled
    [18:11:37 INFO]: Using 4 threads for Netty based IO
    [18:11:37 INFO]: Server Ping Player Sample Count: 12
    [18:11:37 INFO]: Generating keypair
    [18:11:37 INFO]: Starting Minecraft server on *:25565
    [18:11:37 INFO]: Set PluginClassLoader as parallel capable
    [18:11:37 INFO]: [RemoteEntities] Loading RemoteEntities v1.7
    [18:11:37 INFO]: [Dragons] Loading Dragons v0.0.2
    [18:11:37 INFO]: **** Beginning UUID conversion, this may take A LONG time ****
    [18:11:37 INFO]: Preparing level "mainLobby"
    [18:11:37 INFO]: -------- World Settings For [mainLobby] --------
    [18:11:37 INFO]: View Distance: 10
    [18:11:37 INFO]: Chunks to Grow per Tick: 650
    [18:11:37 INFO]: Clear tick list: false
    [18:11:37 INFO]: Experience Merge Radius: 3.0
    [18:11:37 INFO]: Arrow Despawn Rate: 1200
    [18:11:37 INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
    [18:11:37 INFO]: Item Despawn Rate: 6000
    [18:11:37 INFO]: Item Merge Radius: 2.5
    [18:11:37 INFO]: Zombie Aggressive Towards Villager: true
    [18:11:37 INFO]: Max TNT Explosions: 100
    [18:11:37 INFO]: Sending up to 5 chunks per packet
    [18:11:37 INFO]: Entity Activation Range: An 32 / Mo 32 / Mi 16
    [18:11:37 INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
    
    [18:11:37 INFO]: Alternative Hopper Ticking: false
    [18:11:37 INFO]: Hopper Transfer: 8 Hopper Check: 8 Hopper Amount: 1
    [18:11:37 INFO]: Nerfing mobs spawned from spawners: false
    [18:11:37 INFO]: Structure Info Saving: true
    [18:11:37 INFO]: Cactus Growth Modifier: 100%
    [18:11:37 INFO]: Cane Growth Modifier: 100%
    [18:11:37 INFO]: Melon Growth Modifier: 100%
    [18:11:37 INFO]: Mushroom Growth Modifier: 100%
    [18:11:37 INFO]: Pumpkin Growth Modifier: 100%
    [18:11:37 INFO]: Sapling Growth Modifier: 100%
    [18:11:37 INFO]: Wheat Growth Modifier: 100%
    [18:11:37 INFO]: Random Lighting Updates: false
    [18:11:37 INFO]: Custom Map Seeds:  Village: 10387312 Feature: 14357617
    [18:11:37 INFO]: Max Entity Collisions: 8
    [18:11:37 INFO]: Mob Spawn Range: 4
    [18:11:37 INFO]: Anti X-Ray: true
    [18:11:37 INFO]:        Engine Mode: 1
    [18:11:37 INFO]:        Hidden Blocks: [14, 15, 16, 21, 48, 49, 54, 56, 73, 74,
    82, 129, 130]
    [18:11:37 INFO]:        Replace Blocks: [1, 5]
    [18:11:37 INFO]: -------- World Settings For [mainLobby_nether] --------
    [18:11:37 INFO]: View Distance: 10
    [18:11:37 INFO]: Chunks to Grow per Tick: 650
    [18:11:37 INFO]: Clear tick list: false
    [18:11:37 INFO]: Experience Merge Radius: 3.0
    [18:11:37 INFO]: Arrow Despawn Rate: 1200
    [18:11:37 INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
    [18:11:37 INFO]: Item Despawn Rate: 6000
    [18:11:37 INFO]: Item Merge Radius: 2.5
    [18:11:37 INFO]: Zombie Aggressive Towards Villager: true
    [18:11:37 INFO]: Max TNT Explosions: 100
    [18:11:37 INFO]: Sending up to 5 chunks per packet
    [18:11:37 INFO]: Entity Activation Range: An 32 / Mo 32 / Mi 16
    [18:11:37 INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
    
    [18:11:37 INFO]: Alternative Hopper Ticking: false
    [18:11:37 INFO]: Hopper Transfer: 8 Hopper Check: 8 Hopper Amount: 1
    [18:11:37 INFO]: Nerfing mobs spawned from spawners: false
    [18:11:37 INFO]: Structure Info Saving: true
    [18:11:37 INFO]: Cactus Growth Modifier: 100%
    [18:11:37 INFO]: Cane Growth Modifier: 100%
    [18:11:37 INFO]: Melon Growth Modifier: 100%
    [18:11:37 INFO]: Mushroom Growth Modifier: 100%
    [18:11:37 INFO]: Pumpkin Growth Modifier: 100%
    [18:11:37 INFO]: Sapling Growth Modifier: 100%
    [18:11:37 INFO]: Wheat Growth Modifier: 100%
    [18:11:37 INFO]: Random Lighting Updates: false
    [18:11:37 INFO]: Custom Map Seeds:  Village: 10387312 Feature: 14357617
    [18:11:37 INFO]: Max Entity Collisions: 8
    [18:11:37 INFO]: Mob Spawn Range: 4
    [18:11:37 INFO]: Anti X-Ray: true
    [18:11:37 INFO]:        Engine Mode: 1
    [18:11:37 INFO]:        Hidden Blocks: [14, 15, 16, 21, 48, 49, 54, 56, 73, 74,
    82, 129, 130]
    [18:11:37 INFO]:        Replace Blocks: [1, 5]
    [18:11:37 INFO]: -------- World Settings For [mainLobby_the_end] --------
    [18:11:37 INFO]: View Distance: 10
    [18:11:37 INFO]: Chunks to Grow per Tick: 650
    [18:11:37 INFO]: Clear tick list: false
    [18:11:37 INFO]: Experience Merge Radius: 3.0
    [18:11:37 INFO]: Arrow Despawn Rate: 1200
    [18:11:37 INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
    [18:11:37 INFO]: Item Despawn Rate: 6000
    [18:11:37 INFO]: Item Merge Radius: 2.5
    [18:11:37 INFO]: Zombie Aggressive Towards Villager: true
    [18:11:37 INFO]: Max TNT Explosions: 100
    [18:11:37 INFO]: Sending up to 5 chunks per packet
    [18:11:37 INFO]: Entity Activation Range: An 32 / Mo 32 / Mi 16
    [18:11:37 INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
    
    [18:11:37 INFO]: Alternative Hopper Ticking: false
    [18:11:37 INFO]: Hopper Transfer: 8 Hopper Check: 8 Hopper Amount: 1
    [18:11:37 INFO]: Nerfing mobs spawned from spawners: false
    [18:11:37 INFO]: Structure Info Saving: true
    [18:11:37 INFO]: Cactus Growth Modifier: 100%
    [18:11:37 INFO]: Cane Growth Modifier: 100%
    [18:11:37 INFO]: Melon Growth Modifier: 100%
    [18:11:37 INFO]: Mushroom Growth Modifier: 100%
    [18:11:37 INFO]: Pumpkin Growth Modifier: 100%
    [18:11:37 INFO]: Sapling Growth Modifier: 100%
    [18:11:37 INFO]: Wheat Growth Modifier: 100%
    [18:11:37 INFO]: Random Lighting Updates: false
    [18:11:37 INFO]: Custom Map Seeds:  Village: 10387312 Feature: 14357617
    [18:11:37 INFO]: Max Entity Collisions: 8
    [18:11:37 INFO]: Mob Spawn Range: 4
    [18:11:37 INFO]: Anti X-Ray: true
    [18:11:37 INFO]:        Engine Mode: 1
    [18:11:37 INFO]:        Hidden Blocks: [14, 15, 16, 21, 48, 49, 54, 56, 73, 74,
    82, 129, 130]
    [18:11:37 INFO]:        Replace Blocks: [1, 5]
    [18:11:37 INFO]: Preparing start region for level 0 (Seed: -1877632212159391377)
    
    [18:11:38 INFO]: Preparing start region for level 1 (Seed: -1877632212159391377)
    
    [18:11:38 INFO]: Preparing start region for level 2 (Seed: -1877632212159391377)
    
    [18:11:38 INFO]: [RemoteEntities] Enabling RemoteEntities v1.7
    [18:11:38 ERROR]: [RemoteEntities] Invalid minecraft version for remote entities
    (Required: 1.6.2 ; Present: 1.7.10).
    [18:11:38 ERROR]: [RemoteEntities] Disabling plugin to prevent issues.
    [18:11:38 INFO]: [RemoteEntities] Disabling RemoteEntities v1.7
    [18:11:38 INFO]: [Dragons] Enabling Dragons v0.0.2
    [18:11:38 ERROR]: Error occurred while enabling Dragons v0.0.2 (Is it up to date
    ?)
    java.lang.NoClassDefFoundError: de/kumpelblase2/remoteentities/api/thinking/Desi
    re
            at com.thebyte.dragons.DragonsCore.onEnable(DragonsCore.java:19) ~[?:?]
            at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:316) ~[s
    pigot.jar:git-Spigot-1649]
            at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader
    .java:332) [spigot.jar:git-Spigot-1649]
            at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManage
    r.java:417) [spigot.jar:git-Spigot-1649]
            at org.bukkit.craftbukkit.v1_7_R4.CraftServer.loadPlugin(CraftServer.jav
    a:476) [spigot.jar:git-Spigot-1649]
            at org.bukkit.craftbukkit.v1_7_R4.CraftServer.enablePlugins(CraftServer.
    java:394) [spigot.jar:git-Spigot-1649]
            at net.minecraft.server.v1_7_R4.MinecraftServer.n(MinecraftServer.java:3
    60) [spigot.jar:git-Spigot-1649]
            at net.minecraft.server.v1_7_R4.MinecraftServer.g(MinecraftServer.java:3
    34) [spigot.jar:git-Spigot-1649]
            at net.minecraft.server.v1_7_R4.MinecraftServer.a(MinecraftServer.java:2
    90) [spigot.jar:git-Spigot-1649]
            at net.minecraft.server.v1_7_R4.DedicatedServer.init(DedicatedServer.jav
    a:210) [spigot.jar:git-Spigot-1649]
            at net.minecraft.server.v1_7_R4.MinecraftServer.run(MinecraftServer.java
    :458) [spigot.jar:git-Spigot-1649]
            at net.minecraft.server.v1_7_R4.ThreadServerApplication.run(SourceFile:6
    28) [spigot.jar:git-Spigot-1649]
    Caused by: java.lang.ClassNotFoundException: de.kumpelblase2.remoteentities.api.
    thinking.Desire
            at java.net.URLClassLoader$1.run(Unknown Source) ~[?:1.8.0_25]
            at java.net.URLClassLoader$1.run(Unknown Source) ~[?:1.8.0_25]
            at java.security.AccessController.doPrivileged(Native Method) ~[?:1.8.0_
    25]
            at java.net.URLClassLoader.findClass(Unknown Source) ~[?:1.8.0_25]
            at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.
    java:101) ~[spigot.jar:git-Spigot-1649]
            at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.
    java:86) ~[spigot.jar:git-Spigot-1649]
            at java.lang.ClassLoader.loadClass(Unknown Source) ~[?:1.8.0_25]
            at java.lang.ClassLoader.loadClass(Unknown Source) ~[?:1.8.0_25]
            ... 12 more
    [18:11:38 INFO]: Server permissions file permissions.yml is empty, ignoring it
    [18:11:38 INFO]: Done (1.012s)! For help, type "help" or "?"
    >
    C:\Users\Chris\Desktop\CraftBukkit\BukkitTesting>#!/bin/bash
    '#!' is not recognized as an internal or external command,
    operable program or batch file.
    
    C:\Users\Chris\Desktop\CraftBukkit\BukkitTesting>cd "$( dirname "$0" )"
    The system cannot find the path specified.
    
    C:\Users\Chris\Desktop\CraftBukkit\BukkitTesting>java -Xmx1G -Xms1G -jar spigot.
    jar
    This Spigot build supports Minecraft clients both of versions 1.7.x and of 1.8.x
    .
    *** It is imperative that backups be taken before running this build on your ser
    ver! ***
    Please report any such issues to http://www.spigotmc.org/, stating your client,
    server, and if applicable BungeeCord versions.
    *** Any bug reports not running the very latest versions of these softwares will
    be ignored ***
    
    
    WARNING: This build is more than 2 days old and there are likely updates availab
    le!
    You will get no support with this build unless you update from http://ci.md-5.ne
    t/job/Spigot/
    The server will start in 10 seconds!
    [18:11:37 INFO]: Starting minecraft server version 1.7.10
    [18:11:37 INFO]: Loading properties
    [18:11:37 INFO]: Default game type: SURVIVAL
    [18:11:37 INFO]: This server is running CraftBukkit version git-Spigot-1649 (MC:
    1.7.10) (Implementing API version 1.7.10-R0.1-SNAPSHOT)
    [18:11:37 INFO]: Debug logging is disabled
    [18:11:37 INFO]: Using 4 threads for Netty based IO
    [18:11:37 INFO]: Server Ping Player Sample Count: 12
    [18:11:37 INFO]: Generating keypair
    [18:11:37 INFO]: Starting Minecraft server on *:25565
    [18:11:37 INFO]: Set PluginClassLoader as parallel capable
    [18:11:37 INFO]: [RemoteEntities] Loading RemoteEntities v1.7
    [18:11:37 INFO]: [Dragons] Loading Dragons v0.0.2
    [18:11:37 INFO]: **** Beginning UUID conversion, this may take A LONG time ****
    [18:11:37 INFO]: Preparing level "mainLobby"
    [18:11:37 INFO]: -------- World Settings For [mainLobby] --------
    [18:11:37 INFO]: View Distance: 10
    [18:11:37 INFO]: Chunks to Grow per Tick: 650
    [18:11:37 INFO]: Clear tick list: false
    [18:11:37 INFO]: Experience Merge Radius: 3.0
    [18:11:37 INFO]: Arrow Despawn Rate: 1200
    [18:11:37 INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
    [18:11:37 INFO]: Item Despawn Rate: 6000
    [18:11:37 INFO]: Item Merge Radius: 2.5
    [18:11:37 INFO]: Zombie Aggressive Towards Villager: true
    [18:11:37 INFO]: Max TNT Explosions: 100
    [18:11:37 INFO]: Sending up to 5 chunks per packet
    [18:11:37 INFO]: Entity Activation Range: An 32 / Mo 32 / Mi 16
    [18:11:37 INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
    
    [18:11:37 INFO]: Alternative Hopper Ticking: false
    [18:11:37 INFO]: Hopper Transfer: 8 Hopper Check: 8 Hopper Amount: 1
    [18:11:37 INFO]: Nerfing mobs spawned from spawners: false
    [18:11:37 INFO]: Structure Info Saving: true
    [18:11:37 INFO]: Cactus Growth Modifier: 100%
    [18:11:37 INFO]: Cane Growth Modifier: 100%
    [18:11:37 INFO]: Melon Growth Modifier: 100%
    [18:11:37 INFO]: Mushroom Growth Modifier: 100%
    [18:11:37 INFO]: Pumpkin Growth Modifier: 100%
    [18:11:37 INFO]: Sapling Growth Modifier: 100%
    [18:11:37 INFO]: Wheat Growth Modifier: 100%
    [18:11:37 INFO]: Random Lighting Updates: false
    [18:11:37 INFO]: Custom Map Seeds:  Village: 10387312 Feature: 14357617
    [18:11:37 INFO]: Max Entity Collisions: 8
    [18:11:37 INFO]: Mob Spawn Range: 4
    [18:11:37 INFO]: Anti X-Ray: true
    [18:11:37 INFO]:        Engine Mode: 1
    [18:11:37 INFO]:        Hidden Blocks: [14, 15, 16, 21, 48, 49, 54, 56, 73, 74,
    82, 129, 130]
    [18:11:37 INFO]:        Replace Blocks: [1, 5]
    [18:11:37 INFO]: -------- World Settings For [mainLobby_nether] --------
    [18:11:37 INFO]: View Distance: 10
    [18:11:37 INFO]: Chunks to Grow per Tick: 650
    [18:11:37 INFO]: Clear tick list: false
    [18:11:37 INFO]: Experience Merge Radius: 3.0
    [18:11:37 INFO]: Arrow Despawn Rate: 1200
    [18:11:37 INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
    [18:11:37 INFO]: Item Despawn Rate: 6000
    [18:11:37 INFO]: Item Merge Radius: 2.5
    [18:11:37 INFO]: Zombie Aggressive Towards Villager: true
    [18:11:37 INFO]: Max TNT Explosions: 100
    [18:11:37 INFO]: Sending up to 5 chunks per packet
    [18:11:37 INFO]: Entity Activation Range: An 32 / Mo 32 / Mi 16
    [18:11:37 INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
    
    [18:11:37 INFO]: Alternative Hopper Ticking: false
    [18:11:37 INFO]: Hopper Transfer: 8 Hopper Check: 8 Hopper Amount: 1
    [18:11:37 INFO]: Nerfing mobs spawned from spawners: false
    [18:11:37 INFO]: Structure Info Saving: true
    [18:11:37 INFO]: Cactus Growth Modifier: 100%
    [18:11:37 INFO]: Cane Growth Modifier: 100%
    [18:11:37 INFO]: Melon Growth Modifier: 100%
    [18:11:37 INFO]: Mushroom Growth Modifier: 100%
    [18:11:37 INFO]: Pumpkin Growth Modifier: 100%
    [18:11:37 INFO]: Sapling Growth Modifier: 100%
    [18:11:37 INFO]: Wheat Growth Modifier: 100%
    [18:11:37 INFO]: Random Lighting Updates: false
    [18:11:37 INFO]: Custom Map Seeds:  Village: 10387312 Feature: 14357617
    [18:11:37 INFO]: Max Entity Collisions: 8
    [18:11:37 INFO]: Mob Spawn Range: 4
    [18:11:37 INFO]: Anti X-Ray: true
    [18:11:37 INFO]:        Engine Mode: 1
    [18:11:37 INFO]:        Hidden Blocks: [14, 15, 16, 21, 48, 49, 54, 56, 73, 74,
    82, 129, 130]
    [18:11:37 INFO]:        Replace Blocks: [1, 5]
    [18:11:37 INFO]: -------- World Settings For [mainLobby_the_end] --------
    [18:11:37 INFO]: View Distance: 10
    [18:11:37 INFO]: Chunks to Grow per Tick: 650
    [18:11:37 INFO]: Clear tick list: false
    [18:11:37 INFO]: Experience Merge Radius: 3.0
    [18:11:37 INFO]: Arrow Despawn Rate: 1200
    [18:11:37 INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
    [18:11:37 INFO]: Item Despawn Rate: 6000
    [18:11:37 INFO]: Item Merge Radius: 2.5
    [18:11:37 INFO]: Zombie Aggressive Towards Villager: true
    [18:11:37 INFO]: Max TNT Explosions: 100
    [18:11:37 INFO]: Sending up to 5 chunks per packet
    [18:11:37 INFO]: Entity Activation Range: An 32 / Mo 32 / Mi 16
    [18:11:37 INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
    
    [18:11:37 INFO]: Alternative Hopper Ticking: false
    [18:11:37 INFO]: Hopper Transfer: 8 Hopper Check: 8 Hopper Amount: 1
    [18:11:37 INFO]: Nerfing mobs spawned from spawners: false
    [18:11:37 INFO]: Structure Info Saving: true
    [18:11:37 INFO]: Cactus Growth Modifier: 100%
    [18:11:37 INFO]: Cane Growth Modifier: 100%
    [18:11:37 INFO]: Melon Growth Modifier: 100%
    [18:11:37 INFO]: Mushroom Growth Modifier: 100%
    [18:11:37 INFO]: Pumpkin Growth Modifier: 100%
    [18:11:37 INFO]: Sapling Growth Modifier: 100%
    [18:11:37 INFO]: Wheat Growth Modifier: 100%
    [18:11:37 INFO]: Random Lighting Updates: false
    [18:11:37 INFO]: Custom Map Seeds:  Village: 10387312 Feature: 14357617
    [18:11:37 INFO]: Max Entity Collisions: 8
    [18:11:37 INFO]: Mob Spawn Range: 4
    [18:11:37 INFO]: Anti X-Ray: true
    [18:11:37 INFO]:        Engine Mode: 1
    [18:11:37 INFO]:        Hidden Blocks: [14, 15, 16, 21, 48, 49, 54, 56, 73, 74,
    82, 129, 130]
    [18:11:37 INFO]:        Replace Blocks: [1, 5]
    [18:11:37 INFO]: Preparing start region for level 0 (Seed: -1877632212159391377)
    
    [18:11:38 INFO]: Preparing start region for level 1 (Seed: -1877632212159391377)
    
    [18:11:38 INFO]: Preparing start region for level 2 (Seed: -1877632212159391377)
    
    [18:11:38 INFO]: [RemoteEntities] Enabling RemoteEntities v1.7
    [18:11:38 ERROR]: [RemoteEntities] Invalid minecraft version for remote entities
    (Required: 1.6.2 ; Present: 1.7.10).
    [18:11:38 ERROR]: [RemoteEntities] Disabling plugin to prevent issues.
    [18:11:38 INFO]: [RemoteEntities] Disabling RemoteEntities v1.7
    [18:11:38 INFO]: [Dragons] Enabling Dragons v0.0.2
    [18:11:38 ERROR]: Error occurred while enabling Dragons v0.0.2 (Is it up to date
    ?)
    java.lang.NoClassDefFoundError: de/kumpelblase2/remoteentities/api/thinking/Desi
    re
            at com.thebyte.dragons.DragonsCore.onEnable(DragonsCore.java:19) ~[?:?]
            at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:316) ~[s
    pigot.jar:git-Spigot-1649]
            at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader
    .java:332) [spigot.jar:git-Spigot-1649]
            at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManage
    r.java:417) [spigot.jar:git-Spigot-1649]
            at org.bukkit.craftbukkit.v1_7_R4.CraftServer.loadPlugin(CraftServer.jav
    a:476) [spigot.jar:git-Spigot-1649]
            at org.bukkit.craftbukkit.v1_7_R4.CraftServer.enablePlugins(CraftServer.
    java:394) [spigot.jar:git-Spigot-1649]
            at net.minecraft.server.v1_7_R4.MinecraftServer.n(MinecraftServer.java:3
    60) [spigot.jar:git-Spigot-1649]
            at net.minecraft.server.v1_7_R4.MinecraftServer.g(MinecraftServer.java:3
    34) [spigot.jar:git-Spigot-1649]
            at net.minecraft.server.v1_7_R4.MinecraftServer.a(MinecraftServer.java:2
    90) [spigot.jar:git-Spigot-1649]
            at net.minecraft.server.v1_7_R4.DedicatedServer.init(DedicatedServer.jav
    a:210) [spigot.jar:git-Spigot-1649]
            at net.minecraft.server.v1_7_R4.MinecraftServer.run(MinecraftServer.java
    :458) [spigot.jar:git-Spigot-1649]
            at net.minecraft.server.v1_7_R4.ThreadServerApplication.run(SourceFile:6
    28) [spigot.jar:git-Spigot-1649]
    Caused by: java.lang.ClassNotFoundException: de.kumpelblase2.remoteentities.api.
    thinking.Desire
            at java.net.URLClassLoader$1.run(Unknown Source) ~[?:1.8.0_25]
            at java.net.URLClassLoader$1.run(Unknown Source) ~[?:1.8.0_25]
            at java.security.AccessController.doPrivileged(Native Method) ~[?:1.8.0_
    25]
            at java.net.URLClassLoader.findClass(Unknown Source) ~[?:1.8.0_25]
            at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.
    java:101) ~[spigot.jar:git-Spigot-1649]
            at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.
    java:86) ~[spigot.jar:git-Spigot-1649]
            at java.lang.ClassLoader.loadClass(Unknown Source) ~[?:1.8.0_25]
            at java.lang.ClassLoader.loadClass(Unknown Source) ~[?:1.8.0_25]
            ... 12 more
    [18:11:38 INFO]: Server permissions file permissions.yml is empty, ignoring it
    [18:11:38 INFO]: Done (1.012s)! For help, type "help" or "?"
    >
     
  6. Offline

    XgXXSnipz

    @TheCoderGuy ah, your onEnable() method at line:19 look at that; make sure you post the main class as well :p
     
  7. Offline

    TheCoderGuy

    @XgXXSnipz Lol its this one, which directs to the join listener.

    getServer().getPluginManager().registerEvents(new JoinListener(), this);
     
  8. Offline

    XgXXSnipz

  9. Offline

    TheCoderGuy

    @XgXXSnipz Er, no I am not. If I use 1.6.2 spigot will it work for all versions? Do I also have to update the craftbukkit in intelliJ?
     
  10. Offline

    XgXXSnipz

    @TheCoderGuy thats the problem, it says you need to you craftbukkit 1.6.2
     
  11. Offline

    TheCoderGuy

    @XgXXSnipz Do you happen to have the 1.6.2, I deleted the download, and now I can't download it. I might have it on my old computer though.
     
  12. Offline

    XgXXSnipz

  13. Offline

    TheCoderGuy

    @XgXXSnipz Ok, I am now able to join the server, and the first debug works, but it stops there. Here's the error:
    Code:
    
    
    WARNING: This build is more than 2 days old and there are likely updates availab
    le!
    You will get no support with this build unless you update from http://ci.md-5.ne
    t/job/Spigot/
    The server will start in 10 seconds!
    [18:55:58 INFO]: Starting minecraft server version 1.7.10
    [18:55:58 INFO]: Loading properties
    [18:55:58 INFO]: Default game type: SURVIVAL
    [18:55:58 INFO]: This server is running CraftBukkit version git-Spigot-1649 (MC:
    1.7.10) (Implementing API version 1.7.10-R0.1-SNAPSHOT)
    [18:55:58 INFO]: Debug logging is disabled
    [18:55:58 INFO]: Using 4 threads for Netty based IO
    [18:55:58 INFO]: Server Ping Player Sample Count: 12
    [18:55:58 INFO]: Generating keypair
    [18:55:58 INFO]: Starting Minecraft server on *:25565
    [18:55:59 INFO]: Set PluginClassLoader as parallel capable
    [18:55:59 INFO]: [RemoteEntities] Loading RemoteEntities v1.7
    [18:55:59 INFO]: [Dragons] Loading Dragons v0.0.2
    [18:55:59 INFO]: **** Beginning UUID conversion, this may take A LONG time ****
    [18:55:59 INFO]: Preparing level "mainLobby"
    
    //worlds and stuff
    
    [18:56:00 INFO]: [RemoteEntities] Enabling RemoteEntities v1.7
    [18:56:00 ERROR]: [RemoteEntities] Invalid minecraft version for remote entities
    (Required: 1.6.2 ; Present: 1.7.10).
    [18:56:00 ERROR]: [RemoteEntities] Disabling plugin to prevent issues.
    [18:56:00 INFO]: [RemoteEntities] Disabling RemoteEntities v1.7
    [18:56:00 INFO]: [Dragons] Enabling Dragons v0.0.2
    [18:56:00 INFO]: Server permissions file permissions.yml is empty, ignoring it
    [18:56:00 INFO]: Done (1.069s)! For help, type "help" or "?"
    [18:56:15 INFO]: UUID of player MrChrisdamonster is a34435b6-a4ef-499d-b8bf-19a4
    a9bf9e38
    [18:56:15 ERROR]: Could not pass event PlayerJoinEvent to Dragons v0.0.2
    org.bukkit.event.EventException
            at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.ja
    va:302) ~[spigot.jar:git-Spigot-1649]
            at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.jav
    a:62) ~[spigot.jar:git-Spigot-1649]
            at org.bukkit.plugin.SimplePluginManager.fireEvent(SimplePluginManager.j
    ava:514) [spigot.jar:git-Spigot-1649]
            at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.j
    ava:499) [spigot.jar:git-Spigot-1649]
            at net.minecraft.server.v1_7_R4.PlayerList.c(PlayerList.java:265) [spigo
    t.jar:git-Spigot-1649]
            at net.minecraft.server.v1_7_R4.PlayerList.a(PlayerList.java:152) [spigo
    t.jar:git-Spigot-1649]
            at net.minecraft.server.v1_7_R4.LoginListener.c(LoginListener.java:119)
    [spigot.jar:git-Spigot-1649]
            at net.minecraft.server.v1_7_R4.LoginListener.a(LoginListener.java:44) [
    spigot.jar:git-Spigot-1649]
            at net.minecraft.server.v1_7_R4.NetworkManager.a(NetworkManager.java:189
    ) [spigot.jar:git-Spigot-1649]
            at net.minecraft.server.v1_7_R4.ServerConnection.c(ServerConnection.java
    :81) [spigot.jar:git-Spigot-1649]
            at net.minecraft.server.v1_7_R4.MinecraftServer.v(MinecraftServer.java:7
    34) [spigot.jar:git-Spigot-1649]
            at net.minecraft.server.v1_7_R4.DedicatedServer.v(DedicatedServer.java:2
    89) [spigot.jar:git-Spigot-1649]
            at net.minecraft.server.v1_7_R4.MinecraftServer.u(MinecraftServer.java:5
    84) [spigot.jar:git-Spigot-1649]
            at net.minecraft.server.v1_7_R4.MinecraftServer.run(MinecraftServer.java
    :490) [spigot.jar:git-Spigot-1649]
            at net.minecraft.server.v1_7_R4.ThreadServerApplication.run(SourceFile:6
    28) [spigot.jar:git-Spigot-1649]
    Caused by: java.lang.NoClassDefFoundError: de/kumpelblase2/remoteentities/Remote
    Entities
            at com.thebyte.dragons.events.JoinListener.onJoin(JoinListener.java:50)
    ~[?:?]
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0
    _25]
            at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0
    _25]
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1
    .8.0_25]
            at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_25]
            at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.ja
    va:298) ~[spigot.jar:git-Spigot-1649]
            ... 14 more
    Caused by: java.lang.ClassNotFoundException: de.kumpelblase2.remoteentities.Remo
    teEntities
            at java.net.URLClassLoader$1.run(Unknown Source) ~[?:1.8.0_25]
            at java.net.URLClassLoader$1.run(Unknown Source) ~[?:1.8.0_25]
            at java.security.AccessController.doPrivileged(Native Method) ~[?:1.8.0_
    25]
            at java.net.URLClassLoader.findClass(Unknown Source) ~[?:1.8.0_25]
            at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.
    java:101) ~[spigot.jar:git-Spigot-1649]
            at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.
    java:86) ~[spigot.jar:git-Spigot-1649]
            at java.lang.ClassLoader.loadClass(Unknown Source) ~[?:1.8.0_25]
            at java.lang.ClassLoader.loadClass(Unknown Source) ~[?:1.8.0_25]
            at com.thebyte.dragons.events.JoinListener.onJoin(JoinListener.java:50)
    ~[?:?]
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0
    _25]
            at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0
    _25]
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1
    .8.0_25]
            at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_25]
            at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.ja
    va:298) ~[spigot.jar:git-Spigot-1649]
            ... 14 more
    [18:56:15 INFO]: MrChrisdamonster[/127.0.0.1:52425] logged in with entity id 30
    at ([mainLobby] 0.0, 100.0, 0.0)
    >
     
  14. Offline

    XgXXSnipz

    @TheCoderGuy
    Code:
    EntityManager manager = RemoteEntities.createManager(this.plugin);
    the error is coming from here.. maybe its
    Code:
    this.plugin
    that's throwing the error, maybe you dont need the "plugin" part
     
Thread Status:
Not open for further replies.

Share This Page