pieterx12's Avatar
Member
Level 8 Apprentice Miner
1

Forum Posts

1 - 20 of 21

    1
    11/11/2015 9:08 am
    Level 8 : Apprentice Miner
    pieterx12
    pieterx12's Avatar
    Yeah but i'm going to run my server with custom plugins
    1
    08/30/2015 6:01 am
    Level 8 : Apprentice Miner
    pieterx12
    pieterx12's Avatar
    The code gives a a error
    if(target = Bukkit.getServer().getPlayer(args[0] == null)) this is wrong
    1
    08/30/2015 3:42 am
    Level 8 : Apprentice Miner
    pieterx12
    pieterx12's Avatar
    package EnvyGames.VIPSystem.com;

    import java.util.logging.Logger;

    import org.bukkit.Bukkit;
    import org.bukkit.ChatColor;
    import org.bukkit.command.Command;
    import org.bukkit.command.CommandExecutor;
    import org.bukkit.command.CommandSender;
    import org.bukkit.entity.Player;
    import org.bukkit.event.EventHandler;
    import org.bukkit.event.Listener;
    import org.bukkit.event.block.BlockBreakEvent;
    import org.bukkit.event.player.PlayerJoinEvent;
    import org.bukkit.plugin.PluginDescriptionFile;
    import org.bukkit.plugin.PluginManager;
    import org.bukkit.plugin.java.JavaPlugin;

    import EnvyGames.VIPSystem.com.Commands.Goodbye;
    import EnvyGames.VIPSystem.com.Commands.Hello;
    import EnvyGames.VIPSystem.com.Commands.VipRemoveCommand;
    import EnvyGames.VIPSystem.com.event.block.BlockBreak;


    public class Main extends JavaPlugin implements CommandExecutor {

    public void onEnable() {


    getConfig().options().copyDefaults(true);
    saveDefaultConfig();
    }

    public void onDisable() {
    getConfig().options().copyDefaults(true);
    saveConfig();
    }

    public void registerCommands(){
    getCommand("Hello").setExecutor(new Hello());
    getCommand("Goodbye").setExecutor(new Goodbye());


    }
    public void registerEvents(){
    PluginManager pm = getServer().getPluginManager();

    pm.registerEvents(new BlockBreak(), this);

    }


    public boolean onCommand(CommandSender sender, Command cmd, String CommandLabel, String[] args) {
    if(CommandLabel.equalsIgnoreCase("vips")){
    Player p = (Player) sender;
    if (getConfig().getString("vips." + p.getName()) == null) {
    getConfig().addDefault("vips." + p.getName(), 0);
    saveConfig();
    p.sendMessage("fout");
    }else {

    saveConfig();
    }


    }
    return false;
    }
    1
    08/21/2015 5:39 am
    Level 8 : Apprentice Miner
    pieterx12
    pieterx12's Avatar
    No I typed /kill @e[type=Zombie]
    1
    08/21/2015 5:34 am
    Level 8 : Apprentice Miner
    pieterx12
    pieterx12's Avatar
    It's still saying error:player not found
    1
    10/01/2014 12:24 am
    Level 8 : Apprentice Miner
    pieterx12
    pieterx12's Avatar
    Here is the crash report
    [17:29:36] [Client thread/ERROR]: Using missing texture, unable to load basic:textures/blocks/wheatcrop_stage_6.png
    java.io.FileNotFoundException: basic:textures/blocks/wheatcrop_stage_6.png
    at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:65) ~[FallbackResourceManager.class:?]
    at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:67) ~[SimpleReloadableResourceManager.class:?]
    at net.minecraft.client.renderer.texture.TextureMap.loadTextureAtlas(TextureMap.java:126) [TextureMap.class:?]
    at net.minecraft.client.renderer.texture.TextureMap.loadTexture(TextureMap.java:91) [TextureMap.class:?]
    at net.minecraft.client.renderer.texture.TextureManager.loadTexture(TextureManager.java:89) [TextureManager.class:?]
    at net.minecraft.client.renderer.texture.TextureManager.onResourceManagerReload(TextureManager.java:170) [TextureManager.class:?]
    at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:134) [SimpleReloadableResourceManager.class:?]
    at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:118) [SimpleReloadableResourceManager.class:?]
    at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:653) [Minecraft.class:?]
    at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:303) [FMLClientHandler.class:?]
    at net.minecraft.client.Minecraft.startGame(Minecraft.java:596) [Minecraft.class:?]
    at net.minecraft.client.Minecraft.run(Minecraft.java:941) [Minecraft.class:?]
    at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?]
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.7.0_67]
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_67]
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_67]
    at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.7.0_67]
    at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.11.jar:?]
    at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?]
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.7.0_67]
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_67]
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_67]
    at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.7.0_67]
    at GradleStart.bounce(GradleStart.java:107) [start/:?]
    at GradleStart.startClient(GradleStart.java:100) [start/:?]
    at GradleStart.main(GradleStart.java:55) [start/:?]
    [17:29:36] [Client thread/ERROR]: Using missing texture, unable to load basic:textures/blocks/wheatcrop_stage_7.png
    java.io.FileNotFoundException: basic:textures/blocks/wheatcrop_stage_7.png
    at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:65) ~[FallbackResourceManager.class:?]
    at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:67) ~[SimpleReloadableResourceManager.class:?]
    at net.minecraft.client.renderer.texture.TextureMap.loadTextureAtlas(TextureMap.java:126) [TextureMap.class:?]
    at net.minecraft.client.renderer.texture.TextureMap.loadTexture(TextureMap.java:91) [TextureMap.class:?]
    at net.minecraft.client.renderer.texture.TextureManager.loadTexture(TextureManager.java:89) [TextureManager.class:?]
    at net.minecraft.client.renderer.texture.TextureManager.onResourceManagerReload(TextureManager.java:170) [TextureManager.class:?]
    at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:134) [SimpleReloadableResourceManager.class:?]
    at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:118) [SimpleReloadableResourceManager.class:?]
    at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:653) [Minecraft.class:?]
    at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:303) [FMLClientHandler.class:?]
    at net.minecraft.client.Minecraft.startGame(Minecraft.java:596) [Minecraft.class:?]
    at net.minecraft.client.Minecraft.run(Minecraft.java:941) [Minecraft.class:?]
    at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?]
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.7.0_67]
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_67]
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_67]
    at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.7.0_67]
    at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.11.jar:?]
    at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?]
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.7.0_67]
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_67]
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_67]
    at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.7.0_67]
    at GradleStart.bounce(GradleStart.java:107) [start/:?]
    at GradleStart.startClient(GradleStart.java:100) [start/:?]
    at GradleStart.main(GradleStart.java:55) [start/:?]
    [17:29:37] [Client thread/INFO]: Created: 512x256 textures/blocks-atlas
    [17:29:37] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:
    [17:29:37] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: SoundSystem shutting down...
    [17:29:37] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:importantMessage:90]: Author: Paul Lamb, www.paulscode.com
    [17:29:37] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:
    [17:29:37] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:
    [17:29:37] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem...
    [17:29:37] [Thread-8/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL
    [17:29:37] [Thread-8/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org)
    [17:29:37] [Thread-8/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized.
    [17:29:38] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:
    [17:29:38] [Sound Library Loader/INFO]: Sound engine started
    [17:30:08] [Server thread/INFO]: Starting integrated minecraft server version 1.7.10
    [17:30:08] [Server thread/INFO]: Generating keypair
    [17:30:09] [Server thread/INFO] [FML]: Injecting existing block and item data into this server instance
    [17:30:10] [Server thread/INFO] [FML]: Applying holder lookups
    [17:30:10] [Server thread/INFO] [FML]: Holder lookups applied
    [17:30:10] [Server thread/INFO] [FML]: Loading dimension 0 (New World) (net.minecraft.server.integrated.IntegratedServer@9705b95)
    [17:30:10] [Server thread/INFO] [FML]: Loading dimension 1 (New World) (net.minecraft.server.integrated.IntegratedServer@9705b95)
    [17:30:10] [Server thread/INFO] [FML]: Loading dimension -1 (New World) (net.minecraft.server.integrated.IntegratedServer@9705b95)
    [17:30:10] [Server thread/INFO]: Preparing start region for level 0
    [17:30:11] [Server thread/INFO]: Preparing spawn area: 2%
    [17:30:12] [Server thread/INFO]: Preparing spawn area: 54%
    [17:30:15] [Server thread/INFO]: Changing view distance to 11, from 10
    [17:30:15] [Netty Client IO #0/INFO] [FML]: Server protocol version 1
    [17:30:15] [Netty IO #1/INFO] [FML]: Client protocol version 1
    [17:30:15] [Netty IO #1/INFO] [FML]: Client attempting to join with 4 mods : mcp@9.05,FML@7.10.84.1217,basic@1.0.0,Forge@10.13.1.1217
    [17:30:15] [Netty IO #1/INFO] [FML]: Attempting connection with missing mods [] at CLIENT
    [17:30:15] [Netty Client IO #0/INFO] [FML]: Attempting connection with missing mods [] at SERVER
    [17:30:15] [Server thread/INFO] [FML]: [Server thread] Server side modded connection established
    [17:30:15] [Client thread/INFO] [FML]: [Client thread] Client side modded connection established
    [17:30:15] [Server thread/INFO]: ForgeDevName[local:E:69703b91] logged in with entity id 428 at (-228.11186819165474, 79.63388950228916, 289.26680497860343)
    [17:30:15] [Server thread/INFO]: ForgeDevName joined the game
    [17:30:21] [Server thread/WARN]: Can't keep up! Did the system time change, or is the server overloaded? Running 5972ms behind, skipping 119 tick(s)
    [17:30:38] [Server thread/WARN]: Can't keep up! Did the system time change, or is the server overloaded? Running 5527ms behind, skipping 110 tick(s)
    [17:30:47] [Client thread/INFO]: Warning: Clientside chunk ticking took 113 ms
    [17:30:47] [Client thread/INFO]: Warning: Clientside chunk ticking took 101 ms
    [17:30:53] [Server thread/WARN]: Can't keep up! Did the system time change, or is the server overloaded? Running 2173ms behind, skipping 43 tick(s)
    [17:31:12] [Server thread/WARN]: Can't keep up! Did the system time change, or is the server overloaded? Running 3117ms behind, skipping 62 tick(s)
    [17:31:27] [Server thread/ERROR]: Encountered an unexpected exception
    net.minecraft.util.ReportedException: Ticking memory connection
    at net.minecraft.network.NetworkSystem.networkTick(NetworkSystem.java:198) ~[NetworkSystem.class:?]
    at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:736) ~[MinecraftServer.class:?]
    at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:624) ~[MinecraftServer.class:?]
    at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:118) ~[IntegratedServer.class:?]
    at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:495) [MinecraftServer.class:?]
    at net.minecraft.server.MinecraftServer$2.run(MinecraftServer.java:762) [MinecraftServer$2.class:?]
    Caused by: java.lang.NullPointerException
    at net.minecraft.world.chunk.storage.ExtendedBlockStorage.func_150818_a(ExtendedBlockStorage.java:96) ~[ExtendedBlockStorage.class:?]
    at net.minecraft.world.chunk.Chunk.func_150807_a(Chunk.java:667) ~[Chunk.class:?]
    at net.minecraft.world.World.setBlock(World.java:515) ~[World.class:?]
    at net.minecraft.world.World.setBlock(World.java:663) ~[World.class:?]
    at net.minecraft.item.ItemSeeds.onItemUse(ItemSeeds.java:41) ~[ItemSeeds.class:?]
    at net.minecraft.item.ItemStack.tryPlaceItemIntoWorld(ItemStack.java:146) ~[ItemStack.class:?]
    at net.minecraft.server.management.ItemInWorldManager.activateBlockOrUseItem(ItemInWorldManager.java:422) ~[ItemInWorldManager.class:?]
    at net.minecraft.network.NetHandlerPlayServer.processPlayerBlockPlacement(NetHandlerPlayServer.java:591) ~[NetHandlerPlayServer.class:?]
    at net.minecraft.network.play.client.C08PacketPlayerBlockPlacement.processPacket(C08PacketPlayerBlockPlacement.java:74) ~[C08PacketPlayerBlockPlacement.class:?]
    at net.minecraft.network.play.client.C08PacketPlayerBlockPlacement.processPacket(C08PacketPlayerBlockPlacement.java:122) ~[C08PacketPlayerBlockPlacement.class:?]
    at net.minecraft.network.NetworkManager.processReceivedPackets(NetworkManager.java:247) ~[NetworkManager.class:?]
    at net.minecraft.network.NetworkSystem.networkTick(NetworkSystem.java:182) ~[NetworkSystem.class:?]
    ... 5 more
    [17:31:27] [Server thread/ERROR]: This crash report has been saved to: C:\Users\pieter-PC\Documents\minecraft2.0\eclipse\.\crash-reports\crash-2014-09-30_17.31.27-server.txt
    [17:31:27] [Server thread/INFO]: Stopping server
    [17:31:27] [Server thread/INFO]: Saving players
    [17:31:27] [Server thread/INFO]: Saving worlds
    [17:31:27] [Server thread/INFO]: Saving chunks for level 'New World'/Overworld
    [17:31:29] [Server thread/INFO]: Saving chunks for level 'New World'/Nether
    [17:31:29] [Server thread/INFO]: Saving chunks for level 'New World'/The End
    [17:31:30] [Server thread/INFO] [FML]: Unloading dimension 0
    [17:31:30] [Server thread/INFO] [FML]: Unloading dimension -1
    [17:31:30] [Server thread/INFO] [FML]: Unloading dimension 1
    [17:31:30] [Server thread/INFO] [FML]: Applying holder lookups
    [17:31:30] [Server thread/INFO] [FML]: Holder lookups applied
    [17:31:30] [Server thread/INFO] [FML]: The state engine was in incorrect state SERVER_STOPPING and forced into state SERVER_STOPPED. Errors may have been discarded.
    [17:31:31] [Client thread/FATAL]: Unreported exception thrown!
    java.lang.NullPointerException
    at net.minecraft.world.chunk.storage.ExtendedBlockStorage.func_150818_a(ExtendedBlockStorage.java:96) ~[ExtendedBlockStorage.class:?]
    at net.minecraft.world.chunk.Chunk.func_150807_a(Chunk.java:667) ~[Chunk.class:?]
    at net.minecraft.world.World.setBlock(World.java:515) ~[World.class:?]
    at net.minecraft.world.World.setBlock(World.java:663) ~[World.class:?]
    at net.minecraft.item.ItemSeeds.onItemUse(ItemSeeds.java:41) ~[ItemSeeds.class:?]
    at net.minecraft.item.ItemStack.tryPlaceItemIntoWorld(ItemStack.java:146) ~[ItemStack.class:?]
    at net.minecraft.client.multiplayer.PlayerControllerMP.onPlayerRightClick(PlayerControllerMP.java:407) ~[PlayerControllerMP.class:?]
    at net.minecraft.client.Minecraft.func_147121_ag(Minecraft.java:1529) ~[Minecraft.class:?]
    at net.minecraft.client.Minecraft.runTick(Minecraft.java:2044) ~[Minecraft.class:?]
    at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1039) ~[Minecraft.class:?]
    at net.minecraft.client.Minecraft.run(Minecraft.java:961) [Minecraft.class:?]
    at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?]
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.7.0_67]
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_67]
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_67]
    at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.7.0_67]
    at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.11.jar:?]
    at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?]
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.7.0_67]
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_67]
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_67]
    at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.7.0_67]
    at GradleStart.bounce(GradleStart.java:107) [start/:?]
    at GradleStart.startClient(GradleStart.java:100) [start/:?]
    at GradleStart.main(GradleStart.java:55) [start/:?]
    [17:31:31] [Client thread/INFO] [STDOUT]: [net.minecraft.client.Minecraft:displayCrashReport:398]: ---- Minecraft Crash Report ----
    // This doesn't make any sense!

    Time: 30-9-14 17:31
    Description: Unexpected error

    java.lang.NullPointerException: Unexpected error
    at net.minecraft.world.chunk.storage.ExtendedBlockStorage.func_150818_a(ExtendedBlockStorage.java:96)
    at net.minecraft.world.chunk.Chunk.func_150807_a(Chunk.java:667)
    at net.minecraft.world.World.setBlock(World.java:515)
    at net.minecraft.world.World.setBlock(World.java:663)
    at net.minecraft.item.ItemSeeds.onItemUse(ItemSeeds.java:41)
    at net.minecraft.item.ItemStack.tryPlaceItemIntoWorld(ItemStack.java:146)
    at net.minecraft.client.multiplayer.PlayerControllerMP.onPlayerRightClick(PlayerControllerMP.java:407)
    at net.minecraft.client.Minecraft.func_147121_ag(Minecraft.java:1529)
    at net.minecraft.client.Minecraft.runTick(Minecraft.java:2044)
    at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1039)
    at net.minecraft.client.Minecraft.run(Minecraft.java:961)
    at net.minecraft.client.main.Main.main(Main.java:164)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)
    at net.minecraft.launchwrapper.Launch.main(Launch.java:28)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at GradleStart.bounce(GradleStart.java:107)
    at GradleStart.startClient(GradleStart.java:100)
    at GradleStart.main(GradleStart.java:55)


    A detailed walkthrough of the error, its code path and all known details is as follows:
    ---------------------------------------------------------------------------------------

    -- Head --
    Stacktrace:
    at net.minecraft.world.chunk.storage.ExtendedBlockStorage.func_150818_a(ExtendedBlockStorage.java:96)
    at net.minecraft.world.chunk.Chunk.func_150807_a(Chunk.java:667)
    at net.minecraft.world.World.setBlock(World.java:515)
    at net.minecraft.world.World.setBlock(World.java:663)
    at net.minecraft.item.ItemSeeds.onItemUse(ItemSeeds.java:41)
    at net.minecraft.item.ItemStack.tryPlaceItemIntoWorld(ItemStack.java:146)
    at net.minecraft.client.multiplayer.PlayerControllerMP.onPlayerRightClick(PlayerControllerMP.java:407)
    at net.minecraft.client.Minecraft.func_147121_ag(Minecraft.java:1529)

    -- Affected level --
    Details:
    Level name: MpServer
    All players: 1 total; [EntityClientPlayerMP['ForgeDevName'/428, l='MpServer', x=-233,60, y=70,62, z=310,01]]
    Chunk stats: MultiplayerChunkCache: 509, 509
    Level seed: 0
    Level generator: ID 00 - default, ver 1. Features enabled: false
    Level generator options:
    Level spawn location: World: (-188,64,256), Chunk: (at 4,4,0 in -12,16; contains blocks -192,0,256 to -177,255,271), Region: (-1,0; contains chunks -32,0 to -1,31, blocks -512,0,0 to -1,255,511)
    Level time: 23823 game time, 23823 day time
    Level dimension: 0
    Level storage version: 0x00000 - Unknown?
    Level weather: Rain time: 0 (now: false), thunder time: 0 (now: false)
    Level game mode: Game mode: creative (ID 1). Hardcore: false. Cheats: false
    Forced entities: 107 total; [EntityZombie['Zombie'/1361, l='MpServer', x=-291,50, y=50,00, z=244,50], EntityBat['Bat'/262, l='MpServer', x=-183,16, y=25,10, z=246,66], EntityZombie['Zombie'/264, l='MpServer', x=-177,47, y=22,00, z=351,94], EntityBat['Bat'/1105, l='MpServer', x=-233,50, y=54,98, z=350,28], EntitySkeleton['Skeleton'/289, l='MpServer', x=-178,38, y=64,00, z=233,78], EntitySkeleton['Skeleton'/290, l='MpServer', x=-162,53, y=62,17, z=232,88], EntitySheep['Sheep'/292, l='MpServer', x=-160,06, y=100,00, z=323,50], EntitySheep['Sheep'/293, l='MpServer', x=-169,47, y=107,00, z=331,66], EntityZombie['Zombie'/1380, l='MpServer', x=-227,50, y=13,00, z=293,50], EntityZombie['Zombie'/1143, l='MpServer', x=-180,59, y=22,00, z=293,13], EntityZombie['Zombie'/1142, l='MpServer', x=-183,50, y=24,00, z=299,50], EntitySheep['Sheep'/298, l='MpServer', x=-158,53, y=100,00, z=332,81], EntityBat['Bat'/1857, l='MpServer', x=-252,25, y=41,42, z=249,50], EntityCreeper['Creeper'/84, l='MpServer', x=-304,50, y=75,00, z=238,50], EntitySheep['Sheep'/86, l='MpServer', x=-309,88, y=73,00, z=245,06], EntitySheep['Sheep'/81, l='MpServer', x=-312,47, y=78,00, z=235,47], EntitySheep['Sheep'/80, l='MpServer', x=-314,56, y=74,00, z=232,34], EntitySheep['Sheep'/83, l='MpServer', x=-313,56, y=79,00, z=236,34], EntitySpider['Spider'/93, l='MpServer', x=-309,72, y=63,00, z=325,94], EntityEnderman['Enderman'/92, l='MpServer', x=-307,50, y=63,00, z=322,50], EntityZombie['Zombie'/1281, l='MpServer', x=-197,50, y=23,00, z=314,50], EntitySheep['Sheep'/94, l='MpServer', x=-310,13, y=65,00, z=345,22], EntitySheep['Sheep'/89, l='MpServer', x=-312,50, y=63,00, z=324,72], EntityCreeper['Creeper'/102, l='MpServer', x=-289,78, y=68,00, z=373,13], EntitySheep['Sheep'/101, l='MpServer', x=-293,53, y=68,00, z=372,13], EntitySheep['Sheep'/96, l='MpServer', x=-308,03, y=67,00, z=363,88], EntitySheep['Sheep'/119, l='MpServer', x=-276,81, y=68,00, z=356,47], EntitySheep['Sheep'/118, l='MpServer', x=-280,88, y=68,00, z=358,06], EntitySheep['Sheep'/117, l='MpServer', x=-274,50, y=75,00, z=358,50], EntitySkeleton['Skeleton'/116, l='MpServer', x=-272,50, y=67,00, z=329,50], EntityChicken['Chicken'/115, l='MpServer', x=-277,56, y=70,00, z=296,44], EntityCreeper['Creeper'/1086, l='MpServer', x=-187,50, y=23,00, z=304,50], EntityChicken['Chicken'/114, l='MpServer', x=-283,44, y=73,00, z=275,56], EntityZombie['Zombie'/112, l='MpServer', x=-278,50, y=28,00, z=249,50], EntityChicken['Chicken'/127, l='MpServer', x=-262,34, y=74,00, z=277,44], EntityChicken['Chicken'/126, l='MpServer', x=-262,41, y=75,00, z=264,63], EntityWitch['Witch'/841, l='MpServer', x=-244,50, y=67,00, z=356,50], EntityZombie['Zombie'/846, l='MpServer', x=-298,66, y=31,00, z=237,31], EntityZombie['Zombie'/844, l='MpServer', x=-301,50, y=27,00, z=244,50], EntityZombie['Zombie'/845, l='MpServer', x=-297,50, y=28,00, z=246,25], EntitySheep['Sheep'/137, l='MpServer', x=-268,22, y=68,00, z=310,19], EntitySkeleton['Skeleton'/139, l='MpServer', x=-265,88, y=35,00, z=320,56], EntityEnderman['Enderman'/138, l='MpServer', x=-270,50, y=36,00, z=321,50], EntityZombie['Zombie'/141, l='MpServer', x=-270,50, y=51,00, z=320,50], EntityZombie['Zombie'/143, l='MpServer', x=-262,63, y=66,00, z=363,72], EntityCreeper['Creeper'/142, l='MpServer', x=-256,00, y=69,00, z=345,56], EntityChicken['Chicken'/129, l='MpServer', x=-254,38, y=76,00, z=272,63], EntityCreeper['Creeper'/128, l='MpServer', x=-254,84, y=69,00, z=290,13], EntityChicken['Chicken'/131, l='MpServer', x=-267,38, y=72,00, z=288,41], EntitySheep['Sheep'/133, l='MpServer', x=-265,47, y=72,00, z=289,34], EntitySheep['Sheep'/132, l='MpServer', x=-256,50, y=68,00, z=304,69], EntityCreeper['Creeper'/135, l='MpServer', x=-259,47, y=68,00, z=306,00], EntitySheep['Sheep'/134, l='MpServer', x=-250,09, y=69,00, z=296,03], EntityBat['Bat'/703, l='MpServer', x=-256,97, y=43,38, z=247,84], EntityChicken['Chicken'/156, l='MpServer', x=-251,38, y=71,00, z=231,38], EntityChicken['Chicken'/157, l='MpServer', x=-254,38, y=76,00, z=270,59], EntityCreeper['Creeper'/159, l='MpServer', x=-243,50, y=68,00, z=287,66], EntityBat['Bat'/652, l='MpServer', x=-308,47, y=32,64, z=232,25], EntityCreeper['Creeper'/169, l='MpServer', x=-242,00, y=67,00, z=354,31], EntityCreeper['Creeper'/168, l='MpServer', x=-252,97, y=68,00, z=326,41], EntitySkeleton['Skeleton'/172, l='MpServer', x=-251,50, y=60,00, z=375,50], EntityClientPlayerMP['ForgeDevName'/428, l='MpServer', x=-233,60, y=70,62, z=310,01], EntityChicken['Chicken'/163, l='MpServer', x=-244,41, y=69,00, z=293,56], EntityChicken['Chicken'/162, l='MpServer', x=-235,59, y=69,00, z=284,63], EntityBat['Bat'/161, l='MpServer', x=-248,00, y=25,98, z=293,56], EntityCreeper['Creeper'/160, l='MpServer', x=-259,16, y=69,00, z=296,16], EntityEnderman['Enderman'/167, l='MpServer', x=-255,00, y=68,00, z=311,44], EntityEnderman['Enderman'/166, l='MpServer', x=-250,47, y=69,00, z=320,00], EntityZombie['Zombie'/165, l='MpServer', x=-257,13, y=68,00, z=312,72], EntitySkeleton['Skeleton'/897, l='MpServer', x=-200,50, y=24,00, z=332,09], EntitySpider['Spider'/201, l='MpServer', x=-242,78, y=69,00, z=309,50], EntityZombie['Zombie'/200, l='MpServer', x=-230,44, y=69,00, z=324,38], EntityCreeper['Creeper'/203, l='MpServer', x=-236,72, y=61,00, z=358,91], EntityZombie['Zombie'/1980, l='MpServer', x=-224,50, y=16,00, z=277,50], EntityChicken['Chicken'/197, l='MpServer', x=-244,38, y=69,00, z=289,34], EntityCreeper['Creeper'/1981, l='MpServer', x=-225,50, y=16,00, z=278,50], EntityChicken['Chicken'/196, l='MpServer', x=-226,47, y=75,00, z=249,47], EntityChicken['Chicken'/199, l='MpServer', x=-251,44, y=69,00, z=286,47], EntityChicken['Chicken'/198, l='MpServer', x=-236,47, y=69,00, z=315,47], EntityCreeper['Creeper'/1439, l='MpServer', x=-171,50, y=22,00, z=326,50], EntityChicken['Chicken'/195, l='MpServer', x=-238,47, y=69,00, z=254,22], EntityZombie['Zombie'/220, l='MpServer', x=-221,44, y=80,00, z=381,00], EntitySkeleton['Skeleton'/1410, l='MpServer', x=-193,88, y=22,00, z=302,53], EntityZombie['Zombie'/216, l='MpServer', x=-212,16, y=68,00, z=299,50], EntityChicken['Chicken'/218, l='MpServer', x=-228,59, y=70,00, z=322,63], EntityZombie['Zombie'/1412, l='MpServer', x=-195,50, y=22,00, z=309,50], EntityChicken['Chicken'/214, l='MpServer', x=-214,53, y=69,00, z=289,56], EntityChicken['Chicken'/215, l='MpServer', x=-217,78, y=70,00, z=283,81], EntityChicken['Chicken'/239, l='MpServer', x=-194,47, y=68,00, z=295,47], EntityCreeper['Creeper'/238, l='MpServer', x=-209,16, y=70,00, z=268,84], EntityZombie['Zombie'/236, l='MpServer', x=-194,50, y=70,00, z=273,16], EntitySkeleton['Skeleton'/1460, l='MpServer', x=-246,50, y=24,00, z=288,50], EntityCreeper['Creeper'/235, l='MpServer', x=-203,94, y=69,00, z=267,25], EntitySkeleton['Skeleton'/1461, l='MpServer', x=-244,50, y=24,00, z=293,50], EntityCreeper['Creeper'/234, l='MpServer', x=-198,50, y=30,00, z=249,50], EntitySkeleton['Skeleton'/1462, l='MpServer', x=-245,50, y=24,00, z=295,50], EntityBat['Bat'/1189, l='MpServer', x=-265,50, y=42,17, z=236,56], EntityBat['Bat'/1195, l='MpServer', x=-256,31, y=27,00, z=320,53], EntityBat['Bat'/707, l='MpServer', x=-295,94, y=47,01, z=242,56], EntitySkeleton['Skeleton'/972, l='MpServer', x=-214,16, y=68,00, z=304,50], EntitySkeleton['Skeleton'/246, l='MpServer', x=-215,22, y=68,00, z=306,75], EntityEnderman['Enderman'/247, l='MpServer', x=-205,73, y=66,00, z=324,69], EntityCreeper['Creeper'/245, l='MpServer', x=-218,22, y=69,00, z=320,09], EntityBat['Bat'/242, l='MpServer', x=-205,16, y=13,10, z=309,31], EntitySkeleton['Skeleton'/243, l='MpServer', x=-206,50, y=38,00, z=318,50], EntityChicken['Chicken'/240, l='MpServer', x=-193,34, y=77,00, z=290,47], EntityChicken['Chicken'/241, l='MpServer', x=-187,63, y=67,00, z=295,44]]
    Retry entities: 0 total; []
    Server brand: fml,forge
    Server type: Integrated singleplayer server
    Stacktrace:
    at net.minecraft.client.multiplayer.WorldClient.addWorldInfoToCrashReport(WorldClient.java:417)
    at net.minecraft.client.Minecraft.addGraphicsAndWorldToCrashReport(Minecraft.java:2568)
    at net.minecraft.client.Minecraft.run(Minecraft.java:990)
    at net.minecraft.client.main.Main.main(Main.java:164)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)
    at net.minecraft.launchwrapper.Launch.main(Launch.java:28)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at GradleStart.bounce(GradleStart.java:107)
    at GradleStart.startClient(GradleStart.java:100)
    at GradleStart.main(GradleStart.java:55)

    -- System Details --
    Details:
    Minecraft Version: 1.7.10
    Operating System: Windows 8.1 (amd64) version 6.3
    Java Version: 1.7.0_67, Oracle Corporation
    Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
    Memory: 682683712 bytes (651 MB) / 1038876672 bytes (990 MB) up to 1038876672 bytes (990 MB)
    JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M
    AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used
    IntCache: cache: 0, tcache: 0, allocated: 12, tallocated: 94
    FML: MCP v9.05 FML v7.10.84.1217 Minecraft Forge 10.13.1.1217 4 mods loaded, 4 mods active
    mcp{9.05} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
    FML{7.10.84.1217} [Forge Mod Loader] (forgeSrc-1.7.10-10.13.1.1217.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
    Forge{10.13.1.1217} [Minecraft Forge] (forgeSrc-1.7.10-10.13.1.1217.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
    basic{1.0.0} [basic] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
    Launched Version: 1.7.10
    LWJGL: 2.9.1
    OpenGL: Intel(R) HD Graphics 4000 GL version 4.0.0 - Build 10.18.10.3412, Intel
    GL Caps: Using GL 1.3 multitexturing.
    Using framebuffer objects because OpenGL 3.0 is supported and separate blending is supported.
    Anisotropic filtering is supported and maximum anisotropy is 16.
    Shaders are available because OpenGL 2.1 is supported.

    Is Modded: Definitely; Client brand changed to 'fml,forge'
    Type: Client (map_client.txt)
    Resource Packs: []
    Current Language: English (US)
    Profiler Position: N/A (disabled)
    Vec3 Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used
    Anisotropic Filtering: Off (1)
    [17:31:31] [Client thread/INFO] [STDOUT]: [net.minecraft.client.Minecraft:displayCrashReport:408]: #@!@# Game crashed! Crash report saved to: #@!@# C:\Users\pieter-PC\Documents\minecraft2.0\eclipse\.\crash-reports\crash-2014-09-30_17.31.31-client.txt
    [17:31:31] [Client thread/INFO] [FML]: Waiting for the server to terminate/save.
    [17:31:31] [Client thread/INFO] [FML]: Server terminated.
    AL lib: (EE) alc_cleanup: 1 device not closed
    1
    09/26/2014 2:47 pm
    Level 8 : Apprentice Miner
    pieterx12
    pieterx12's Avatar
    I have still ar crash
    1
    09/26/2014 2:42 pm
    Level 8 : Apprentice Miner
    pieterx12
    pieterx12's Avatar
    Ow ok I will try
    1
    09/26/2014 2:32 pm
    Level 8 : Apprentice Miner
    pieterx12
    pieterx12's Avatar
    Ya I did
    1
    09/21/2014 5:21 am
    Level 8 : Apprentice Miner
    pieterx12
    pieterx12's Avatar
    It still doesn't work
    1
    09/21/2014 5:18 am
    Level 8 : Apprentice Miner
    pieterx12
    pieterx12's Avatar
    Like this ?? package tutorial.basic.block;

    import tutorial.basic.basic;
    import net.minecraft.block.Block;
    import net.minecraft.block.material.Material;
    import net.minecraft.creativetab.CreativeTabs;

    public class MeteorBlock extends Block{

    public MeteorBlock(int i, Material p_i45394_1_) {
    super(p_i45394_1_);
    super.setCreativeTab(CreativeTabs.tabBlock);
    this.setHardness(5F);
    this.setResistance(5.0F);
    this.setLightLevel(0.5F);


    }



    }
    1
    09/21/2014 4:19 am
    Level 8 : Apprentice Miner
    pieterx12
    pieterx12's Avatar
    Ok here is my code package tutorial.basic;



    import net.minecraft.block.Block;
    import net.minecraft.block.material.Material;
    import net.minecraft.init.Blocks;
    import net.minecraft.init.Items;
    import net.minecraft.item.Item;
    import net.minecraft.item.ItemStack;
    import cpw.mods.fml.common.Mod;
    import cpw.mods.fml.common.Mod.EventHandler;
    import cpw.mods.fml.common.Mod.Instance;
    import cpw.mods.fml.common.SidedProxy;
    import cpw.mods.fml.common.event.FMLInitializationEvent;
    import cpw.mods.fml.common.event.FMLPostInitializationEvent;
    import cpw.mods.fml.common.event.FMLPreInitializationEvent;
    import cpw.mods.fml.common.registry.GameRegistry;
    import cpw.mods.fml.common.registry.LanguageRegistry;
    import tutorial.basic.block.MeteorBlock;;
    @Mod(modid="Basic", name="Basic", version="1.0.0")

    public class Basic {
    public static Block MeteorBlock = new MeteorBlock(3000, Material.rock).setBlockName("MeteorBlock").setBlockTextureName("Basic:MeteorBlock");
    // The instance of your mod that Forge uses.
    @Instance("Basic")
    public static Basic instance;

    // Says where the client and server 'proxy' code is loaded.
    @SidedProxy(clientSide="tutorial.basic.client.ClientProxy", serverSide="tutorial.basic.CommonProxy")
    public static CommonProxy proxy;


    @EventHandler
    public void load(FMLInitializationEvent event) {
    proxy.registerRenderers();
    ItemStack dirt = new ItemStack(Blocks.dirt);
    GameRegistry.addRecipe(new ItemStack(Blocks.dirt), new Object[]{
    "yyy" ,
    "yxy" ,
    "yyy" ,
    'y', Blocks.sponge, 'x', Blocks.bedrock, 'z', Items.arrow
    });
    GameRegistry.addSmelting(Blocks.bedrock, new ItemStack(Blocks.obsidian), 20F);

    }

    @EventHandler
    public void postInit(FMLPostInitializationEvent event) {
    // Stub Method
    }
    public Basic(){
    GameRegistry.registerBlock(MeteorBlock, "MeteorBlock");

    }
    }
    and my MeteorBlock.java package tutorial.basic.block;

    import net.minecraft.block.Block;
    import net.minecraft.block.material.Material;
    import net.minecraft.creativetab.CreativeTabs;

    public class MeteorBlock extends Block{

    public MeteorBlock(int i, Material p_i45394_1_) {
    super(p_i45394_1_);
    this.setCreativeTab(CreativeTabs.tabBlock);
    this.setHardness(5F);
    this.setResistance(5.0F);
    this.setLightLevel(0.5F);
    }

    }
    1
    08/17/2014 4:18 am
    Level 8 : Apprentice Miner
    pieterx12
    pieterx12's Avatar
    no when people join an arena
    1
    08/12/2014 4:06 am
    Level 8 : Apprentice Miner
    pieterx12
    pieterx12's Avatar
    Its not so easy
    1
    08/11/2014 12:54 pm
    Level 8 : Apprentice Miner
    pieterx12
    pieterx12's Avatar
    Sorry my english is very bad. But the players will telepot if the game start but no on the same locations. Like survival games
    1
    08/11/2014 8:40 am
    Level 8 : Apprentice Miner
    pieterx12
    pieterx12's Avatar
    I search a system for the spawn locactions
    1
    04/13/2014 2:17 pm
    Level 8 : Apprentice Miner
    pieterx12
    pieterx12's Avatar
    Can you make for me a simpel arena plugin
    1
    04/13/2014 2:06 pm
    Level 8 : Apprentice Miner
    pieterx12
    pieterx12's Avatar
    What can you do ?
    1
    12/17/2013 3:34 pm
    Level 8 : Apprentice Miner
    pieterx12
    pieterx12's Avatar
    Yes in the plugin folder is also à permissions.yml and also one in THE permissions folder
    1
    12/17/2013 10:41 am
    Level 8 : Apprentice Miner
    pieterx12
    pieterx12's Avatar
    But The players can use all THE commands

1 - 20 of 21

Planet Minecraft

Website

© 2010 - 2024
www.planetminecraft.com

Welcome