Development Assistance Block Break Event

Discussion in 'Plugin Help/Development/Requests' started by KrypticIce, Jan 24, 2015.

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

    KrypticIce

    I need help im making a plugin for a friend but with a Block place event what code goes with it ive tried but it dont work? I need it to detect a specific block that has been broken by that player and for it to send a message to the player when broken
     
  2. Offline

    SuperOriginal

  3. Offline

    KrypticIce

    I mean like the actual code for it to detect a block break? but only for specific blocks that i choose?
     
  4. Offline

    SuperOriginal

    Use the BlockBreakEvent, then with the links I showed you above you can get the block that broke and the player who broke it, then you can check if it was a specific block from there..
     
  5. Offline

    KrypticIce

    Still dont under stand that xD its weird i dont know what to put can u just show me when i went on there it showed me nothing xD
     
  6. Offline

    SuchSwegMuchWow

    @KrypticIce

    Code:
    if(block.getType() == Material.SOMETHING){
    //Do whatever
     
  7. Offline

    KrypticIce

  8. Offline

    SuchSwegMuchWow

    @KrypticIce

    That checks if a certain type of block was mined.
     
  9. Offline

    KrypticIce

    Ok do i change if(change.getType() == Material.DIAMOND_BLOCK? or do i leave it as if(block.getType() as block returns a error? @SuchSwegMuchWow
     
  10. Offline

    SuchSwegMuchWow

    @KrypticIce

    You do know you have to get the block first right?

    Code:
    Block block = event.getBlock();
    
    if(block.getType() == Material.WHATEVER){
    
    //Something
    
    }
    else{
    
    //The block does not equal WHATEVER
    
    }
    
     
  11. Offline

    KrypticIce

    @SuchSwegMuchWow So i would have to put each block from the bukkit list below?
     
  12. Offline

    timtower Administrator Administrator Moderator

    @KrypticIce That would be a bad idea. Try to find what is causing the error first
     
  13. Offline

    KrypticIce

    @timtower Ive tried tim nothing works you got any idea how to do it without adding each block i see your the best sort of person to ask xD
     
  14. @KrypticIce So what exactly are you trying to do? Check if a certain block is broken and send a message? Make a list in config and check if the block broken is in the list, if so send a message.
     
  15. @KrypticIce
    Why don`t create a config, on that config list the items you want and then iterate thru that config and check if the broken block is contained or not.
     
  16. Offline

    KrypticIce

    All i want to do is make a plugin that when 1 block is broken it sends a message to the player saying you have broken this block?

    Would this work?

    Code:
    package me.CoreDestory.Package;
    
    import org.bukkit.Bukkit;
    import org.bukkit.ChatColor;
    import org.bukkit.Material;
    import org.bukkit.entity.Player;
    import org.bukkit.event.EventHandler;
    import org.bukkit.event.Listener;
    import org.bukkit.event.block.BlockEvent;
    import org.bukkit.plugin.java.JavaPlugin;
    
    public class DiamondBreak extends JavaPlugin implements Listener {
       
         public void onEnable() {
             Bukkit.getServer().getPluginManager().registerEvents(this, this);
         }
        
         @EventHandler
         public void BlockDetectEvent(BlockEvent event) {
             Player player = ((Player) event).getPlayer();
             org.bukkit.block.Block block = event.getBlock();
             if(player.hasPermission("Corebreak.Hope"))
             if(block.getType() == Material.DIAMOND_BLOCK){
                 getServer().broadcastMessage(player.getName() + " has broken Hopes core! All Shadow players will recive a loot kit");
                 getServer().broadcastMessage(player.getName() + "when a owner or tech is online.");
             }else{
                 player.sendMessage(ChatColor.DARK_RED + "You do not have permission to mine your own base!");
            
               
             }
           }
    }
    
    EDIT by Timtower: merged posts
     
    Last edited by a moderator: Jan 24, 2015
  17. Offline

    timtower Administrator Administrator Moderator

  18. Offline

    KrypticIce

  19. Offline

    timtower Administrator Administrator Moderator

    @KrypticIce "Won't work" isn't really helpful. What isn't working, do you get errors?
     
  20. Offline

    KrypticIce

    @timtower It wont work asin like it wont do whats its meant to when i break it the plugin does not broadcast the message
    Code:
    24.01 18:47:36 [Server] INFO at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:417) [spigot-1.7.10.jar:git-Spigot-1649]
    24.01 18:47:36 [Server] INFO at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:332) [spigot-1.7.10.jar:git-Spigot-1649]
    24.01 18:47:36 [Server] INFO at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:316) ~[spigot-1.7.10.jar:git-Spigot-1649]
    24.01 18:47:36 [Server] INFO at me.CoreDestory.Package.Main.onEnable(Main.java:13) ~[?:?]
    24.01 18:47:36 [Server] INFO at me.CoreDestory.Package.DiamondBreak.<init>(DiamondBreak.java:12) ~[?:?]
    24.01 18:47:36 [Server] INFO at org.bukkit.plugin.java.JavaPlugin.<init>(JavaPlugin.java:66) ~[spigot-1.7.10.jar:git-Spigot-1649]
    24.01 18:47:36 [Server] INFO at org.bukkit.plugin.java.PluginClassLoader.initialize(PluginClassLoader.java:122) ~[spigot-1.7.10.jar:git-Spigot-1649]
    24.01 18:47:36 [Server] INFO java.lang.IllegalArgumentException: Plugin already initialized!
    24.01 18:47:36 [Server] ERROR Error occurred while enabling IllumiCoreDestory v1.0 (Is it up to date?)
    24.01 18:47:36 [Server] INFO Enabling IllumiCoreDestory v1.0
    24.01 18:47:36 [Server] INFO Voting Enabled
    24.01 18:47:36 [Server] INFO Enabling Vote v1.0
    24.01 18:47:36 [Server] INFO at net.minecraft.server.v1_7_R4.ThreadServerApplication.run(SourceFile:628) [spigot-1.7.10.jar:git-Spigot-1649]
    24.01 18:47:36 [Server] INFO at net.minecraft.server.v1_7_R4.MinecraftServer.run(MinecraftServer.java:490) [spigot-1.7.10.jar:git-Spigot-1649]
    24.01 18:47:36 [Server] INFO at net.minecraft.server.v1_7_R4.MinecraftServer.u(MinecraftServer.java:584) [spigot-1.7.10.jar:git-Spigot-1649]
    24.01 18:47:36 [Server] INFO at net.minecraft.server.v1_7_R4.DedicatedServer.v(DedicatedServer.java:289) [spigot-1.7.10.jar:git-Spigot-1649]
    24.01 18:47:36 [Server] INFO at net.minecraft.server.v1_7_R4.MinecraftServer.v(MinecraftServer.java:734) [spigot-1.7.10.jar:git-Spigot-1649]
     
  21. Offline

    timtower Administrator Administrator Moderator

    @KrypticIce Full server log. And full code please.
    Moved to Bukkit alternatives
     
  22. Offline

    KrypticIce

    Full code for all 3 files

    File 1:
    Code:
    package me.CoreDestory.Package;
    
    import org.bukkit.Bukkit;
    import org.bukkit.ChatColor;
    import org.bukkit.Material;
    import org.bukkit.entity.Player;
    import org.bukkit.event.EventHandler;
    import org.bukkit.event.Listener;
    import org.bukkit.event.block.BlockBreakEvent;
    import org.bukkit.plugin.java.JavaPlugin;
    
    public class IronBreak extends JavaPlugin implements Listener {
       
         public void onEnable() {
             Bukkit.getServer().getPluginManager().registerEvents(this, this);
         }
        
         @EventHandler
         public void BlockDetectEvent(BlockBreakEvent event) {
             Player player = ((Player) event).getPlayer();
             org.bukkit.block.Block block = event.getBlock();
             if(player.hasPermission("Corebreak.Shadow"))
             if(block.getType() == Material.IRON_BLOCK){
                 getServer().broadcastMessage(player.getName() + " has broken Shadows core! All Hope players will recive a loot kit");
                 getServer().broadcastMessage(player.getName() + "when a owner or tech is online.");
             }else{
                 player.sendMessage(ChatColor.DARK_RED + "You do not have permission to mine your own base!");
            
               
             }
           }
    }
    
    File 2:
    Code:
    package me.CoreDestory.Package;
    
    import org.bukkit.Bukkit;
    import org.bukkit.ChatColor;
    import org.bukkit.Material;
    import org.bukkit.entity.Player;
    import org.bukkit.event.EventHandler;
    import org.bukkit.event.Listener;
    import org.bukkit.event.block.BlockBreakEvent;
    import org.bukkit.plugin.java.JavaPlugin;
    
    public class DiamondBreak extends JavaPlugin implements Listener {
       
         public void onEnable() {
             Bukkit.getServer().getPluginManager().registerEvents(this, this);
         }
        
         @EventHandler
         public void BlockDetectEvent(BlockBreakEvent event) {
             Player player = ((Player) event).getPlayer();
             org.bukkit.block.Block block = event.getBlock();
             if(player.hasPermission("Corebreak.Hope"))
             if(block.getType() == Material.DIAMOND_BLOCK){
                 getServer().broadcastMessage(player.getName() + " has broken Hopes core! All Shadow players will recive a loot kit");
                 getServer().broadcastMessage(player.getName() + "when a owner or tech is online.");
             }else{
                 player.sendMessage(ChatColor.DARK_RED + "You do not have permission to mine your own base!");
            
               
             }
           }
    }
    
    Main:
    Code:
    package me.CoreDestory.Package;
    import org.bukkit.Bukkit;
    import org.bukkit.plugin.PluginManager;
    import org.bukkit.plugin.java.JavaPlugin;
    public class Main extends JavaPlugin {
        private static PluginManager pm = Bukkit.getPluginManager();
    public void onEnable() {
    pm.registerEvents(new DiamondBreak(), this);
    pm.registerEvents(new IronBreak(), this);
    }
    public void onDisable() {
    pm = null;
    }
    }
    
    Console log:
    Coming in a new message.
     
  23. Offline

    timtower Administrator Administrator Moderator

    @KrypticIce 1. Pastebin
    2. Only 1 class should extend JavaPlugin. You have 3.....
     
  24. Offline

    KrypticIce

    @timtower This is the code now same error as console btw just new code into one file:
    Code:
    package me.CoreDestory.Package;
    
    import org.bukkit.Bukkit;
    import org.bukkit.ChatColor;
    import org.bukkit.Material;
    import org.bukkit.entity.Player;
    import org.bukkit.event.EventHandler;
    import org.bukkit.event.Listener;
    import org.bukkit.event.block.BlockBreakEvent;
    import org.bukkit.plugin.java.JavaPlugin;
    
    public class Main extends JavaPlugin implements Listener {
       
         public void onEnable() {
             Bukkit.getServer().getLogger().info("Illumi CoreDestory Enabled");
             Bukkit.getServer().getPluginManager().registerEvents(this, this);
    }
    
    public void onDisable() {
             Bukkit.getServer().getLogger().info("Illumi CoreDestory Disabled!");
    }
        
         @EventHandler
         public void BlockDetectEvent(BlockBreakEvent event) {
             Player player = ((Player) event).getPlayer();
             org.bukkit.block.Block block = event.getBlock();
             if(player.hasPermission("Corebreak.Shadow"))
             if(block.getType() == Material.IRON_BLOCK){
                 getServer().broadcastMessage(player.getName() + " §3has broken Shadows core! All Hope players will recive a loot kit");
                 getServer().broadcastMessage(player.getName() + "§3when a owner or tech is online.");
             }else{
                 player.sendMessage(ChatColor.DARK_RED + "You do not have permission to mine your own base!");
             }
            
                }
             @EventHandler
             public void BlockDetectEvent1(BlockBreakEvent event) {
                 Player player = ((Player) event).getPlayer();
                 org.bukkit.block.Block block = event.getBlock();
                 if(player.hasPermission("Corebreak.Hope"))
                 if(block.getType() == Material.DIAMOND_BLOCK){
                     getServer().broadcastMessage(ChatColor.DARK_GREEN + player.getName() + " has broken Hopes core! All Shadow players will recive a loot kit");
                     getServer().broadcastMessage(ChatColor.DARK_GREEN + player.getName() + "§3when a owner or tech is online.");
                 }else{
                     player.sendMessage(ChatColor.DARK_RED + "You do not have permission to mine your own base!");
                
                   
                 }
    
           }
    }
    
    @timtower
    Code:
    24.01 19:12:19 [Server] INFO GroupManager - INFO - Bukkit Permissions Updated!
    24.01 19:12:19 [Server] INFO CONSOLE: Reload complete.
    24.01 19:12:19 [Server] INFO BitchSlap Enabled
    24.01 19:12:19 [Server] INFO Enabling Bitchslap v1.0
    24.01 19:12:19 [Server] INFO Enabling EssentialsChat v2.13.1
    24.01 19:12:19 [Server] INFO Enabling EssentialsSpawn v2.13.1
    24.01 19:12:19 [Server] INFO Enabling EssentialsProtect v2.13.1
    24.01 19:12:19 [Server] INFO Essentials: Using GroupManager based permissions.
    24.01 19:12:19 [Server] INFO 1.7.10-R0.1-SNAPSHOT
    24.01 19:12:19 [Server] INFO git-Spigot-1649 (MC: 1.7.10)
    24.01 19:12:19 [Server] INFO Bukkit version format changed. Version not checked.
    24.01 19:12:19 [Server] INFO Enabling Essentials v2.13.1
    24.01 19:12:19 [Server] INFO PooSlap Enabled
    24.01 19:12:19 [Server] INFO Enabling ServerVersion v1.0
    24.01 19:12:19 [Server] INFO Listening Events for Players Registered and Enabled Successfully.
    24.01 19:12:19 [Server] INFO Faceharm by GDION has been enabled successfully!
    24.01 19:12:19 [Server] INFO Enabling Faceharm v1.4
    24.01 19:12:19 [Server] INFO at net.minecraft.server.v1_7_R4.ThreadServerApplication.run(SourceFile:628) [spigot-1.7.10.jar:git-Spigot-1649]
    24.01 19:12:19 [Server] INFO at net.minecraft.server.v1_7_R4.MinecraftServer.run(MinecraftServer.java:490) [spigot-1.7.10.jar:git-Spigot-1649]
    24.01 19:12:19 [Server] INFO at net.minecraft.server.v1_7_R4.MinecraftServer.u(MinecraftServer.java:584) [spigot-1.7.10.jar:git-Spigot-1649]
    24.01 19:12:19 [Server] INFO at net.minecraft.server.v1_7_R4.DedicatedServer.v(DedicatedServer.java:290) [spigot-1.7.10.jar:git-Spigot-1649]
    24.01 19:12:19 [Server] INFO at net.minecraft.server.v1_7_R4.DedicatedServer.aB(DedicatedServer.java:326) [spigot-1.7.10.jar:git-Spigot-1649]
    24.01 19:12:19 [Server] INFO at org.bukkit.craftbukkit.v1_7_R4.CraftServer.dispatchServerCommand(CraftServer.java:753) [spigot-1.7.10.jar:git-Spigot-1649]
    24.01 19:12:19 [Server] INFO at org.bukkit.craftbukkit.v1_7_R4.CraftServer.dispatchCommand(CraftServer.java:767) [spigot-1.7.10.jar:git-Spigot-1649]
    24.01 19:12:19 [Server] INFO at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:181) [spigot-1.7.10.jar:git-Spigot-1649]
    24.01 19:12:19 [Server] INFO at org.bukkit.command.defaults.ReloadCommand.execute(ReloadCommand.java:23) [spigot-1.7.10.jar:git-Spigot-1649]
    24.01 19:12:19 [Server] INFO at org.bukkit.Bukkit.reload(Bukkit.java:301) [spigot-1.7.10.jar:git-Spigot-1649]
    24.01 19:12:19 [Server] INFO at org.bukkit.craftbukkit.v1_7_R4.CraftServer.reload(CraftServer.java:866) [spigot-1.7.10.jar:git-Spigot-1649]
    24.01 19:12:19 [Server] INFO at org.bukkit.craftbukkit.v1_7_R4.CraftServer.enablePlugins(CraftServer.java:394) [spigot-1.7.10.jar:git-Spigot-1649]
    24.01 19:12:19 [Server] INFO at org.bukkit.craftbukkit.v1_7_R4.CraftServer.loadPlugin(CraftServer.java:476) [spigot-1.7.10.jar:git-Spigot-1649]
    24.01 19:12:19 [Server] INFO at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:417) [spigot-1.7.10.jar:git-Spigot-1649]
    24.01 19:12:19 [Server] INFO at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:332) [spigot-1.7.10.jar:git-Spigot-1649]
    24.01 19:12:19 [Server] INFO at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:316) ~[spigot-1.7.10.jar:git-Spigot-1649]
    24.01 19:12:19 [Server] INFO at com.hpspells.core.HPS.onEnable(HPS.java:66) ~[?:?]
    24.01 19:12:19 [Server] INFO at com.hpspells.core.spell.SpellManager.<init>(SpellManager.java:77) ~[?:?]
    24.01 19:12:19 [Server] INFO at com.hpspells.core.Localisation.getTranslation(Localisation.java:158) ~[?:?]
    24.01 19:12:19 [Server] INFO at java.lang.String.format(String.java:2790) ~[?:1.7.0_60]
    24.01 19:12:19 [Server] INFO at java.util.Formatter.format(Formatter.java:2423) ~[?:1.7.0_60]
    24.01 19:12:19 [Server] INFO at java.util.Formatter.format(Formatter.java:2469) ~[?:1.7.0_60]
    24.01 19:12:19 [Server] INFO at java.util.Formatter.parse(Formatter.java:2515) ~[?:1.7.0_60]
    24.01 19:12:19 [Server] INFO at java.util.regex.Pattern.matcher(Pattern.java:1088) ~[?:1.7.0_60]
    24.01 19:12:19 [Server] INFO at java.util.regex.Matcher.<init>(Matcher.java:228) ~[?:1.7.0_60]
    24.01 19:12:19 [Server] INFO at java.util.regex.Matcher.reset(Matcher.java:308) ~[?:1.7.0_60]
    24.01 19:12:19 [Server] INFO at java.util.regex.Matcher.getTextLength(Matcher.java:1234) ~[?:1.7.0_60]
    24.01 19:12:19 [Server] INFO java.lang.NullPointerException
    24.01 19:12:19 [Server] ERROR Error occurred while enabling HarryPotterSpells v1.1.1 BETA (Is it up to date?)
    24.01 19:12:19 [Server] WARN Could not find the language file for language us-english. Reverting to default language...
    24.01 19:12:19 [Server] INFO at net.minecraft.server.v1_7_R4.ThreadServerApplication.run(SourceFile:628) [spigot-1.7.10.jar:git-Spigot-1649]
    24.01 19:12:19 [Server] INFO at net.minecraft.server.v1_7_R4.MinecraftServer.run(MinecraftServer.java:490) [spigot-1.7.10.jar:git-Spigot-1649]
    24.01 19:12:19 [Server] INFO at net.minecraft.server.v1_7_R4.MinecraftServer.u(MinecraftServer.java:584) [spigot-1.7.10.jar:git-Spigot-1649]
    24.01 19:12:19 [Server] INFO at net.minecraft.server.v1_7_R4.DedicatedServer.v(DedicatedServer.java:290) [spigot-1.7.10.jar:git-Spigot-1649]
    24.01 19:12:19 [Server] INFO at net.minecraft.server.v1_7_R4.DedicatedServer.aB(DedicatedServer.java:326) [spigot-1.7.10.jar:git-Spigot-1649]
    24.01 19:12:19 [Server] INFO at org.bukkit.craftbukkit.v1_7_R4.CraftServer.dispatchServerCommand(CraftServer.java:753) [spigot-1.7.10.jar:git-Spigot-1649]
    24.01 19:12:19 [Server] INFO at org.bukkit.craftbukkit.v1_7_R4.CraftServer.dispatchCommand(CraftServer.java:767) [spigot-1.7.10.jar:git-Spigot-1649]
    24.01 19:12:19 [Server] INFO at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:181) [spigot-1.7.10.jar:git-Spigot-1649]
    24.01 19:12:19 [Server] INFO at org.bukkit.command.defaults.ReloadCommand.execute(ReloadCommand.java:23) [spigot-1.7.10.jar:git-Spigot-1649]
    24.01 19:12:19 [Server] INFO at org.bukkit.Bukkit.reload(Bukkit.java:301) [spigot-1.7.10.jar:git-Spigot-1649]
    24.01 19:12:19 [Server] INFO at org.bukkit.craftbukkit.v1_7_R4.CraftServer.reload(CraftServer.java:866) [spigot-1.7.10.jar:git-Spigot-1649]
    24.01 19:12:19 [Server] INFO at org.bukkit.craftbukkit.v1_7_R4.CraftServer.enablePlugins(CraftServer.java:394) [spigot-1.7.10.jar:git-Spigot-1649]
    24.01 19:12:19 [Server] INFO at org.bukkit.craftbukkit.v1_7_R4.CraftServer.loadPlugin(CraftServer.java:476) [spigot-1.7.10.jar:git-Spigot-1649]
    24.01 19:12:19 [Server] INFO at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:417) [spigot-1.7.10.jar:git-Spigot-1649]
    24.01 19:12:19 [Server] INFO at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:332) [spigot-1.7.10.jar:git-Spigot-1649]
    24.01 19:12:19 [Server] INFO at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:316) [spigot-1.7.10.jar:git-Spigot-1649]
    24.01 19:12:19 [Server] INFO at com.hpspells.core.HPS.onEnable(HPS.java:64) [HarryPotterSpells.jar:?]
    24.01 19:12:19 [Server] INFO at com.hpspells.core.Localisation.<init>(Localisation.java:37) [HarryPotterSpells.jar:?]
    24.01 19:12:19 [Server] INFO at com.hpspells.core.Localisation.load(Localisation.java:50) [HarryPotterSpells.jar:?]
    24.01 19:12:19 [Server] INFO at com.hpspells.core.Localisation.loadDefaultLang(Localisation.java:97) [HarryPotterSpells.jar:?]
    24.01 19:12:19 [Server] INFO at org.bukkit.plugin.SimplePluginManager.disablePlugin(SimplePluginManager.java:436) [spigot-1.7.10.jar:git-Spigot-1649]
    24.01 19:12:19 [Server] INFO at org.bukkit.plugin.java.JavaPluginLoader.disablePlugin(JavaPluginLoader.java:356) [spigot-1.7.10.jar:git-Spigot-1649]
    24.01 19:12:19 [Server] INFO at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:318) ~[spigot-1.7.10.jar:git-Spigot-1649]
    24.01 19:12:19 [Server] INFO at com.hpspells.core.HPS.onDisable(HPS.java:251) ~[?:?]
    24.01 19:12:19 [Server] INFO java.lang.NullPointerException
    24.01 19:12:19 [Server] ERROR Error occurred while disabling HarryPotterSpells v1.1.1 BETA (Is it up to date?)
    24.01 19:12:19 [Server] INFO Disabling HarryPotterSpells v1.1.1 BETA
    24.01 19:12:19 [Server] ERROR Disabling plugin...
    24.01 19:12:19 [Server] ERROR Could not load default language. Plugin will not function.
    24.01 19:12:19 [Server] ERROR Could not generate language file /plugins/HarryPotterSpells/Language Files/nl-dutch.properties Ignore this message if you arent using this language
    24.01 19:12:19 [Server] ERROR Could not generate language file /plugins/HarryPotterSpells/Language Files/us-english.properties Ignore this message if you arent using this language
    24.01 19:12:19 [Server] INFO Enabling HarryPotterSpells v1.1.1 BETA
    24.01 19:12:19 [Server] INFO Enabling AutoSpawn v1.0.0
    24.01 19:12:19 [Server] INFO RaiseHand By Rand0mzxD has been enabled
    24.01 19:12:19 [Server] INFO Enabling RaiseHand_By_Rand0mzxD v1.0.0.0
    24.01 19:12:19 [Server] INFO Illumi CoreDestory Enabled
    24.01 19:12:19 [Server] INFO Enabling IllumiCoreDestory v1.0
    24.01 19:12:19 [Server] INFO Voting Enabled
    24.01 19:12:19 [Server] INFO Enabling Vote v1.0
    24.01 19:12:19 [Server] INFO Enabling BanMessage v1.0
    24.01 19:12:19 [Server] INFO Drinks Enabled!
    24.01 19:12:19 [Server] INFO Enabling EquinoxNetworkDrinksMenu v1.0
    24.01 19:12:19 [Server] INFO AdamsEffects Enabled!
    24.01 19:12:19 [Server] INFO Enabling AfectsGUI v1.0
    24.01 19:12:19 [Server] INFO at net.minecraft.server.v1_7_R4.ThreadServerApplication.run(SourceFile:628) [spigot-1.7.10.jar:git-Spigot-1649]
    24.01 19:12:19 [Server] INFO at net.minecraft.server.v1_7_R4.MinecraftServer.run(MinecraftServer.java:490) [spigot-1.7.10.jar:git-Spigot-1649]
    24.01 19:12:19 [Server] INFO at net.minecraft.server.v1_7_R4.MinecraftServer.u(MinecraftServer.java:584) [spigot-1.7.10.jar:git-Spigot-1649]
    24.01 19:12:19 [Server] INFO at net.minecraft.server.v1_7_R4.DedicatedServer.v(DedicatedServer.java:290) [spigot-1.7.10.jar:git-Spigot-1649]
    24.01 19:12:19 [Server] INFO at net.minecraft.server.v1_7_R4.DedicatedServer.aB(DedicatedServer.java:326) [spigot-1.7.10.jar:git-Spigot-1649]
    24.01 19:12:19 [Server] INFO at org.bukkit.craftbukkit.v1_7_R4.CraftServer.dispatchServerCommand(CraftServer.java:753) [spigot-1.7.10.jar:git-Spigot-1649]
    24.01 19:12:19 [Server] INFO at org.bukkit.craftbukkit.v1_7_R4.CraftServer.dispatchCommand(CraftServer.java:767) [spigot-1.7.10.jar:git-Spigot-1649]
    24.01 19:12:19 [Server] INFO at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:181) [spigot-1.7.10.jar:git-Spigot-1649]
    24.01 19:12:19 [Server] INFO at org.bukkit.command.defaults.ReloadCommand.execute(ReloadCommand.java:23) [spigot-1.7.10.jar:git-Spigot-1649]
    24.01 19:12:19 [Server] INFO at org.bukkit.Bukkit.reload(Bukkit.java:301) [spigot-1.7.10.jar:git-Spigot-1649]
    24.01 19:12:19 [Server] INFO at org.bukkit.craftbukkit.v1_7_R4.CraftServer.reload(CraftServer.java:866) [spigot-1.7.10.jar:git-Spigot-1649]
    24.01 19:12:19 [Server] INFO at org.bukkit.craftbukkit.v1_7_R4.CraftServer.enablePlugins(CraftServer.java:394) [spigot-1.7.10.jar:git-Spigot-1649]
    24.01 19:12:19 [Server] INFO at org.bukkit.craftbukkit.v1_7_R4.CraftServer.loadPlugin(CraftServer.java:476) [spigot-1.7.10.jar:git-Spigot-1649]
    24.01 19:12:19 [Server] INFO at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:417) [spigot-1.7.10.jar:git-Spigot-1649]
    24.01 19:12:19 [Server] INFO at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:332) [spigot-1.7.10.jar:git-Spigot-1649]
    24.01 19:12:19 [Server] INFO at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:316) ~[spigot-1.7.10.jar:git-Spigot-1649]
    24.01 19:12:19 [Server] INFO at me.jake2967.Everything.HubJoinItems.onEnable(HubJoinItems.java:34) ~[?:?]
    24.01 19:12:19 [Server] INFO at me.jake2967.Everything.HubJoinItems.load(HubJoinItems.java:62) ~[?:?]
    24.01 19:12:19 [Server] INFO at org.bukkit.plugin.java.JavaPlugin.saveResource(JavaPlugin.java:247) ~[spigot-1.7.10.jar:git-Spigot-1649]
    24.01 19:12:19 [Server] INFO java.lang.IllegalArgumentException: The embedded resource 'tutorial.txt' cannot be found in plugins/HubItems 1.0 - KrypticIce.jar
    24.01 19:12:19 [Server] ERROR Error occurred while enabling HubItems v1.0 (Is it up to date?)
    24.01 19:12:19 [Server] INFO Enabling HubItems v1.0
    24.01 19:12:19 [Server] INFO GamemodeGUI Enabled!
    24.01 19:12:19 [Server] INFO Enabling CreativeMenu v1.0
    24.01 19:12:19 [Server] INFO Enabling Installer v2.2.2
    24.01 19:12:19 [Server] INFO EquinoxCmdPack Enabled
    24.01 19:12:19 [Server] INFO Enabling EquinoxCmdPack v1.0
    24.01 19:12:19 [Server] INFO Top Player Enabled
    24.01 19:12:19 [Server] INFO Enabling HubVanish v1.0.0
    24.01 19:12:19 [Server] INFO GroupManager version 2.1.28 (Phoenix) is enabled!
    24.01 19:12:19 [Server] INFO GroupManager - INFO - Backups will be retained for 24 hours!
    24.01 19:12:19 [Server] INFO GroupManager - INFO - Scheduled Data Saving is set for every 10 minutes!
    24.01 19:12:19 [Server] INFO GroupManager - INFO - Superperms support enabled.
    24.01 19:12:19 [Server] INFO GroupManager - INFO - World Found: world
    24.01 19:12:19 [Server] INFO Enabling GroupManager v2.1.28 (Phoenix)
    24.01 19:12:19 [Server] INFO Your server info has been enabled
    24.01 19:12:19 [Server] INFO Enabling AdamsFirstPlugin v1.0.0.0
    24.01 19:12:19 [Server] INFO EquinoxNetwork JoinMessage Enabled!
    24.01 19:12:19 [Server] INFO Enabling EquinoxNetworkJoinMessage v1.0
    24.01 19:12:19 [Server] INFO Loading Bitchslap v1.0
    24.01 19:12:19 [Server] INFO Loading EssentialsChat v2.13.1
    24.01 19:12:19 [Server] INFO Loading EssentialsSpawn v2.13.1
    24.01 19:12:19 [Server] INFO Loading EssentialsProtect v2.13.1
    24.01 19:12:19 [Server] INFO Loading Essentials v2.13.1
    24.01 19:12:19 [Server] INFO Loading ServerVersion v1.0
    24.01 19:12:19 [Server] INFO Loading Faceharm v1.4
    24.01 19:12:19 [Server] INFO Loading HarryPotterSpells v1.1.1 BETA
    24.01 19:12:19 [Server] INFO Loading AutoSpawn v1.0.0
    24.01 19:12:19 [Server] INFO Loading RaiseHand_By_Rand0mzxD v1.0.0.0
    24.01 19:12:19 [Server] INFO Loading IllumiCoreDestory v1.0
    24.01 19:12:19 [Server] INFO Loading Vote v1.0
    24.01 19:12:19 [Server] INFO Loading BanMessage v1.0
    24.01 19:12:19 [Server] INFO Loading EquinoxNetworkDrinksMenu v1.0
    24.01 19:12:19 [Server] INFO Loading AfectsGUI v1.0
    24.01 19:12:19 [Server] INFO Loading HubItems v1.0
    24.01 19:12:19 [Server] INFO Loading CreativeMenu v1.0
    24.01 19:12:19 [Server] INFO Loading Installer v2.2.2
    24.01 19:12:19 [Server] INFO Loading EquinoxCmdPack v1.0
    24.01 19:12:19 [Server] INFO Loading HubVanish v1.0.0
    24.01 19:12:19 [Server] INFO Loading GroupManager v2.1.28 (Phoenix)
    24.01 19:12:19 [Server] INFO Loading AdamsFirstPlugin v1.0.0.0
    24.01 19:12:19 [Server] INFO Loading EquinoxNetworkJoinMessage v1.0
    24.01 19:12:19 [Server] WARN Plugin `RaiseHand_By_Rand0mzxD v1.0.0.0' uses the space-character (0x20) in its name `RaiseHand By Rand0mzxD' - this is discouraged
    24.01 19:12:19 [Server] ERROR Ambiguous plugin name `Vote' for files `plugins/Vote 1.0.jar' and `plugins/Vote.jar' in `plugins'
    24.01 19:12:19 [Server] INFO ... 13 more
    24.01 19:12:19 [Server] INFO at org.bukkit.plugin.java.JavaPluginLoader.getPluginDescription(JavaPluginLoader.java:157) ~[spigot-1.7.10.jar:git-Spigot-1649]
    24.01 19:12:19 [Server] INFO at org.bukkit.plugin.PluginDescriptionFile.<init>(PluginDescriptionFile.java:232) ~[spigot-1.7.10.jar:git-Spigot-1649]
    24.01 19:12:19 [Server] INFO at org.yaml.snakeyaml.Yaml.load(Yaml.java:412) ~[spigot-1.7.10.jar:git-Spigot-1649]
    24.01 19:12:19 [Server] INFO at org.yaml.snakeyaml.Yaml.loadFromReader(Yaml.java:481) ~[spigot-1.7.10.jar:git-Spigot-1649]
    24.01 19:12:19 [Server] INFO at org.yaml.snakeyaml.constructor.BaseConstructor.getSingleData(BaseConstructor.java:120) ~[spigot-1.7.10.jar:git-Spigot-1649]
    24.01 19:12:19 [Server] INFO at org.yaml.snakeyaml.composer.Composer.getSingleNode(Composer.java:105) ~[spigot-1.7.10.jar:git-Spigot-1649]
    24.01 19:12:19 [Server] INFO at org.yaml.snakeyaml.composer.Composer.composeDocument(Composer.java:122) ~[spigot-1.7.10.jar:git-Spigot-1649]
    24.01 19:12:19 [Server] INFO at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:159) ~[spigot-1.7.10.jar:git-Spigot-1649]
    24.01 19:12:19 [Server] INFO at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:230) ~[spigot-1.7.10.jar:git-Spigot-1649]
    24.01 19:12:19 [Server] INFO at org.yaml.snakeyaml.parser.ParserImpl.checkEvent(ParserImpl.java:143) ~[spigot-1.7.10.jar:git-Spigot-1649]
    24.01 19:12:19 [Server] INFO at org.yaml.snakeyaml.parser.ParserImpl.peekEvent(ParserImpl.java:158) ~[spigot-1.7.10.jar:git-Spigot-1649]
    24.01 19:12:19 [Server] INFO at org.yaml.snakeyaml.parser.ParserImpl$ParseBlockMappingKey.produce(ParserImpl.java:570) ~[spigot-1.7.10.jar:git-Spigot-1649]
    24.01 19:12:19 [Server] INFO ^
    24.01 19:12:19 [Server] INFO permissions:
    24.01 19:12:19 [Server] INFO Caused by: org.yaml.snakeyaml.parser.ParserException: while parsing a block mapping; expected <block end>, but found BlockMappingStart;  in 'reader', line 21, column 2:
    24.01 19:12:19 [Server] INFO at net.minecraft.server.v1_7_R4.ThreadServerApplication.run(SourceFile:628) [spigot-1.7.10.jar:git-Spigot-1649]
    24.01 19:12:19 [Server] INFO at net.minecraft.server.v1_7_R4.MinecraftServer.run(MinecraftServer.java:490) [spigot-1.7.10.jar:git-Spigot-1649]
    24.01 19:12:19 [Server] INFO at net.minecraft.server.v1_7_R4.MinecraftServer.u(MinecraftServer.java:584) [spigot-1.7.10.jar:git-Spigot-1649]
    24.01 19:12:19 [Server] INFO at net.minecraft.server.v1_7_R4.DedicatedServer.v(DedicatedServer.java:290) [spigot-1.7.10.jar:git-Spigot-1649]
    24.01 19:12:19 [Server] INFO at net.minecraft.server.v1_7_R4.DedicatedServer.aB(DedicatedServer.java:326) [spigot-1.7.10.jar:git-Spigot-1649]
    24.01 19:12:19 [Server] INFO at org.bukkit.craftbukkit.v1_7_R4.CraftServer.dispatchServerCommand(CraftServer.java:753) [spigot-1.7.10.jar:git-Spigot-1649]
    24.01 19:12:19 [Server] INFO at org.bukkit.craftbukkit.v1_7_R4.CraftServer.dispatchCommand(CraftServer.java:767) [spigot-1.7.10.jar:git-Spigot-1649]
    24.01 19:12:19 [Server] INFO at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:181) [spigot-1.7.10.jar:git-Spigot-1649]
    24.01 19:12:19 [Server] INFO at org.bukkit.command.defaults.ReloadCommand.execute(ReloadCommand.java:23) [spigot-1.7.10.jar:git-Spigot-1649]
    24.01 19:12:19 [Server] INFO at org.bukkit.Bukkit.reload(Bukkit.java:301) [spigot-1.7.10.jar:git-Spigot-1649]
    24.01 19:12:19 [Server] INFO at org.bukkit.craftbukkit.v1_7_R4.CraftServer.reload(CraftServer.java:864) [spigot-1.7.10.jar:git-Spigot-1649]
    24.01 19:12:19 [Server] INFO at org.bukkit.craftbukkit.v1_7_R4.CraftServer.loadPlugins(CraftServer.java:369) [spigot-1.7.10.jar:git-Spigot-1649]
    24.01 19:12:19 [Server] INFO at org.bukkit.plugin.SimplePluginManager.loadPlugins(SimplePluginManager.java:133) [spigot-1.7.10.jar:git-Spigot-1649]
    24.01 19:12:19 [Server] INFO at org.bukkit.plugin.java.JavaPluginLoader.getPluginDescription(JavaPluginLoader.java:162) ~[spigot-1.7.10.jar:git-Spigot-1649]
    24.01 19:12:19 [Server] INFO org.bukkit.plugin.InvalidDescriptionException: Invalid plugin.yml
    24.01 19:12:19 [Server] ERROR Could not load 'plugins/Football_donors.jar' in folder 'plugins'
    24.01 19:12:19 [Server] INFO EquinoxNetwork JoinMessage Disabled!
    24.01 19:12:19 [Server] INFO Disabling EquinoxNetworkJoinMessage v1.0
    24.01 19:12:19 [Server] INFO Disabling AdamsFirstPlugin v1.0.0.0
    24.01 19:12:19 [Server] INFO GroupManager version 2.1.28 (Phoenix) is disabled!
    24.01 19:12:19 [Server] INFO GroupManager - INFO - Scheduled Data Saving is disabled!
    24.01 19:12:19 [Server] INFO Disabling GroupManager v2.1.28 (Phoenix)
    24.01 19:12:19 [Server] INFO Top Player Disabled!
    24.01 19:12:19 [Server] INFO Disabling HubVanish v1.0.0
    24.01 19:12:19 [Server] INFO EquinoxCmdPack Disabled!
    24.01 19:12:19 [Server] INFO Disabling EquinoxCmdPack v1.0
    24.01 19:12:19 [Server] INFO Disabling Installer v2.2.2
    24.01 19:12:19 [Server] INFO GamemodeGUI Disabled!
    24.01 19:12:19 [Server] INFO Disabling CreativeMenu v1.0
    24.01 19:12:19 [Server] INFO Disabling HubItems v1.0
    24.01 19:12:19 [Server] INFO AdamsEffects Disabled!
    24.01 19:12:19 [Server] INFO Disabling AfectsGUI v1.0
    24.01 19:12:19 [Server] INFO Drinks Disabled!
    24.01 19:12:19 [Server] INFO Disabling EquinoxNetworkDrinksMenu v1.0
    24.01 19:12:19 [Server] INFO Disabling BanMessage v1.0
    24.01 19:12:19 [Server] INFO Voting Disabled!
    24.01 19:12:19 [Server] INFO Disabling Vote v1.0
    24.01 19:12:19 [Server] INFO Illumi CoreDestory Disabled!
    24.01 19:12:19 [Server] INFO Disabling IllumiCoreDestory v1.0
    24.01 19:12:19 [Server] INFO Disabling RaiseHand_By_Rand0mzxD v1.0.0.0
    24.01 19:12:19 [Server] INFO Disabling AutoSpawn v1.0.0
    24.01 19:12:19 [Server] INFO Faceharm by GDION has shut down successfully.
    24.01 19:12:19 [Server] INFO Listening events for players have stopped.
    24.01 19:12:19 [Server] INFO Disabling Faceharm v1.4
    24.01 19:12:19 [Server] INFO PooSlap Disabled!
    24.01 19:12:19 [Server] INFO Disabling ServerVersion v1.0
    24.01 19:12:19 [Server] INFO Disabling Essentials v2.13.1
    24.01 19:12:19 [Server] INFO Disabling EssentialsProtect v2.13.1
    24.01 19:12:19 [Server] INFO Disabling EssentialsSpawn v2.13.1
    24.01 19:12:19 [Server] INFO Disabling EssentialsChat v2.13.1
    24.01 19:12:19 [Server] INFO Bitchslap Disabled!
    24.01 19:12:19 [Server] INFO Disabling Bitchslap v1.0
    24.01 19:12:19 [Server] INFO Zombie Aggressive Towards Villager: true
    24.01 19:12:19 [Server] INFO Allow Zombie Pigmen to spawn from portal blocks: true
    24.01 19:12:19 [Server] INFO Arrow Despawn Rate: 1200
    24.01 19:12:19 [Server] INFO Item Merge Radius: 2.5
    24.01 19:12:19 [Server] INFO Item Despawn Rate: 6000
    24.01 19:12:19 [Server] INFO Experience Merge Radius: 3.0
    24.01 19:12:19 [Server] INFO Clear tick list: false
    24.01 19:12:19 [Server] INFO Chunks to Grow per Tick: 650
    24.01 19:12:19 [Server] INFO View Distance: 10
    24.01 19:12:19 [Server] INFO Max TNT Explosions: 100
    24.01 19:12:19 [Server] INFO Custom Map Seeds:  Village: 10387312 Feature: 14357617
    24.01 19:12:19 [Server] INFO Max Entity Collisions: 8
    24.01 19:12:19 [Server] INFO Sending up to 5 chunks per packet
    24.01 19:12:19 [Server] INFO Structure Info Saving: true
    24.01 19:12:19 [Server] INFO Random Lighting Updates: false
    24.01 19:12:19 [Server] INFO Hopper Transfer: 8 Hopper Check: 8 Hopper Amount: 1
    24.01 19:12:19 [Server] INFO Alternative Hopper Ticking: false
    24.01 19:12:19 [Server] INFO Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
    24.01 19:12:19 [Server] INFO Entity Activation Range: An 32 / Mo 32 / Mi 16
    24.01 19:12:19 [Server] INFO Wheat Growth Modifier: 100%
    24.01 19:12:19 [Server] INFO Sapling Growth Modifier: 100%
    24.01 19:12:19 [Server] INFO Pumpkin Growth Modifier: 100%
    24.01 19:12:19 [Server] INFO Mushroom Growth Modifier: 100%
    24.01 19:12:19 [Server] INFO Melon Growth Modifier: 100%
    24.01 19:12:19 [Server] INFO Cane Growth Modifier: 100%
    24.01 19:12:19 [Server] INFO Cactus Growth Modifier: 100%
    24.01 19:12:19 [Server] INFO Mob Spawn Range: 4
    24.01 19:12:19 [Server] INFO Replace Blocks: [1, 5]
    24.01 19:12:19 [Server] INFO Hidden Blocks: [14, 15, 16, 21, 48, 49, 54, 56, 73, 74, 82, 129, 130]
    24.01 19:12:19 [Server] INFO Engine Mode: 1
    24.01 19:12:19 [Server] INFO Anti X-Ray: true
    24.01 19:12:19 [Server] INFO Nerfing mobs spawned from spawners: false
    24.01 19:12:19 [Server] INFO -------- World Settings For [world_the_end] --------
    24.01 19:12:19 [Server] INFO Zombie Aggressive Towards Villager: true
    24.01 19:12:19 [Server] INFO Allow Zombie Pigmen to spawn from portal blocks: true
    24.01 19:12:19 [Server] INFO Arrow Despawn Rate: 1200
    24.01 19:12:19 [Server] INFO Item Merge Radius: 2.5
    24.01 19:12:19 [Server] INFO Item Despawn Rate: 6000
    24.01 19:12:19 [Server] INFO Experience Merge Radius: 3.0
    24.01 19:12:19 [Server] INFO Clear tick list: false
    24.01 19:12:19 [Server] INFO Chunks to Grow per Tick: 650
    24.01 19:12:19 [Server] INFO View Distance: 10
    24.01 19:12:19 [Server] INFO Max TNT Explosions: 100
    24.01 19:12:19 [Server] INFO Custom Map Seeds:  Village: 10387312 Feature: 14357617
    24.01 19:12:19 [Server] INFO Max Entity Collisions: 8
    24.01 19:12:19 [Server] INFO Sending up to 5 chunks per packet
    24.01 19:12:19 [Server] INFO Structure Info Saving: true
    24.01 19:12:19 [Server] INFO Random Lighting Updates: false
    24.01 19:12:19 [Server] INFO Hopper Transfer: 8 Hopper Check: 8 Hopper Amount: 1
    24.01 19:12:19 [Server] INFO Alternative Hopper Ticking: false
    24.01 19:12:19 [Server] INFO Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
    24.01 19:12:19 [Server] INFO Entity Activation Range: An 32 / Mo 32 / Mi 16
    24.01 19:12:19 [Server] INFO Wheat Growth Modifier: 100%
    24.01 19:12:19 [Server] INFO Sapling Growth Modifier: 100%
    24.01 19:12:19 [Server] INFO Pumpkin Growth Modifier: 100%
    24.01 19:12:19 [Server] INFO Mushroom Growth Modifier: 100%
    24.01 19:12:19 [Server] INFO Melon Growth Modifier: 100%
    24.01 19:12:19 [Server] INFO Cane Growth Modifier: 100%
    24.01 19:12:19 [Server] INFO Cactus Growth Modifier: 100%
    24.01 19:12:19 [Server] INFO Mob Spawn Range: 4
    24.01 19:12:19 [Server] INFO Replace Blocks: [1, 5]
    24.01 19:12:19 [Server] INFO Hidden Blocks: [14, 15, 16, 21, 48, 49, 54, 56, 73, 74, 82, 129, 130]
    24.01 19:12:19 [Server] INFO Engine Mode: 1
    24.01 19:12:19 [Server] INFO Anti X-Ray: true
    24.01 19:12:19 [Server] INFO Nerfing mobs spawned from spawners: false
    24.01 19:12:19 [Server] INFO -------- World Settings For [world_nether] --------
    24.01 19:12:19 [Server] INFO Zombie Aggressive Towards Villager: true
    24.01 19:12:19 [Server] INFO Allow Zombie Pigmen to spawn from portal blocks: true
    24.01 19:12:19 [Server] INFO Arrow Despawn Rate: 1200
    24.01 19:12:19 [Server] INFO Item Merge Radius: 2.5
    24.01 19:12:19 [Server] INFO Item Despawn Rate: 6000
    24.01 19:12:19 [Server] INFO Experience Merge Radius: 3.0
    24.01 19:12:19 [Server] INFO Clear tick list: false
    24.01 19:12:19 [Server] INFO Chunks to Grow per Tick: 650
    24.01 19:12:19 [Server] INFO View Distance: 10
    24.01 19:12:19 [Server] INFO Max TNT Explosions: 100
    24.01 19:12:19 [Server] INFO Custom Map Seeds:  Village: 10387312 Feature: 14357617
    24.01 19:12:19 [Server] INFO Max Entity Collisions: 8
    24.01 19:12:19 [Server] INFO Sending up to 5 chunks per packet
    24.01 19:12:19 [Server] INFO Structure Info Saving: true
    24.01 19:12:19 [Server] INFO Random Lighting Updates: false
    24.01 19:12:19 [Server] INFO Hopper Transfer: 8 Hopper Check: 8 Hopper Amount: 1
    24.01 19:12:19 [Server] INFO Alternative Hopper Ticking: false
    24.01 19:12:19 [Server] INFO Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
    24.01 19:12:19 [Server] INFO Entity Activation Range: An 32 / Mo 32 / Mi 16
    24.01 19:12:19 [Server] INFO Wheat Growth Modifier: 100%
    24.01 19:12:19 [Server] INFO Sapling Growth Modifier: 100%
    24.01 19:12:19 [Server] INFO Pumpkin Growth Modifier: 100%
    24.01 19:12:19 [Server] INFO Mushroom Growth Modifier: 100%
    24.01 19:12:19 [Server] INFO Melon Growth Modifier: 100%
    24.01 19:12:19 [Server] INFO Cane Growth Modifier: 100%
    24.01 19:12:19 [Server] INFO Cactus Growth Modifier: 100%
    24.01 19:12:19 [Server] INFO Mob Spawn Range: 4
    24.01 19:12:19 [Server] INFO Replace Blocks: [1, 5]
    24.01 19:12:19 [Server] INFO Hidden Blocks: [14, 15, 16, 21, 48, 49, 54, 56, 73, 74, 82, 129, 130]
    24.01 19:12:19 [Server] INFO Engine Mode: 1
    24.01 19:12:19 [Server] INFO Anti X-Ray: true
    24.01 19:12:19 [Server] INFO Nerfing mobs spawned from spawners: false
    24.01 19:12:19 [Server] INFO -------- World Settings For [world] --------
    24.01 19:12:19 [Server] INFO Using 4 threads for Netty based IO
    24.01 19:12:19 [Server] INFO Server Ping Player Sample Count: 12
    24.01 19:12:19 [Server] INFO Debug logging is disabled
    
    @timtower Theres all the code in a paste bin http://pastebin.com/5DV2CwcC It says Could not pass event BlockBreakEvent to IllumiCoreDestory v1.0

    EDIT by Timtower: merged posts
     
    Last edited by a moderator: Jan 24, 2015
  25. Offline

    timtower Administrator Administrator Moderator

    @KrypticIce
    Code:
    Caused by: java.lang.ClassCastException: org.bukkit.event.block.BlockBreakEvent cannot be cast to org.bukkit.entity.Player
    You are casting the wrong thing
     
  26. Offline

    KrypticIce

    How can i fix it @timtower i place the diamond block and the message doesnt appear?
     
  27. @KrypticIce Why are you casting player when it returns player?
     
  28. Offline

    KrypticIce

    Idk @bwfcwalshy I just really need to fix it what can i do?
     
  29. Offline

    SuchSwegMuchWow

    @KrypticIce

    First of all. You don't need to have two different block break events, you can just put them in one.
    Code:
    //No
    Player player = (Player) event.getPlayer();
    
    //Yes
    Player player = event.getPlayer();
     
  30. Offline

    KrypticIce

    @SuchSwegMuchWow But its for 2 teams. So one team has the permission to break the other persons one and it sends the message and if they dont have permission it wont send it so i need 2 for 2 different permissions
     
Thread Status:
Not open for further replies.

Share This Page