Jump to content

vandy22

Members
  • Posts

    224
  • Joined

  • Last visited

Everything posted by vandy22

  1. This is the current Run Configuration for the client(VM Arguments): -Xincgc -Xmx1024M -Xms1024M. Do I need to replace it or what?
  2. Someone please help. I'm updating to 1.6 so ill see if that helps but for now if anyone can help that would be awesome!
  3. [glow=red,2,300]BUMP[/glow]
  4. [glow=red,2,300]BUMP[/glow]
  5. What do you mean by singularity?
  6. Ok here is my github rep. Heres the link: https://github.com/vandy22/ShineToolPack. I hope you can figure out the problem. Thanks!
  7. So you can see all the files? Uhm not currently but I could upload a folder containing all of it to Git. Would that helP?
  8. yes here is my main mod file: It looks a bit different than normal as I have classes then load methods in those which I register in my main mod file, and Just incase you think this may be the problem but I can assure you it wasent working before I organized my mod. Anyways here is the main mod file: package net.shinemod; import java.io.File; import java.util.Random; import net.minecraft.block.Block; import net.minecraft.block.material.Material; import net.minecraft.creativetab.CreativeTabs; import net.minecraft.entity.Entity; import net.minecraft.entity.EntityEggInfo; import net.minecraft.entity.EntityList; import net.minecraft.entity.EnumCreatureType; import net.minecraft.item.EnumArmorMaterial; import net.minecraft.item.EnumToolMaterial; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; import net.minecraft.src.ModLoader; import net.minecraft.world.biome.BiomeGenBase; import net.minecraftforge.common.Configuration; import net.minecraftforge.common.DimensionManager; import net.minecraftforge.common.EnumHelper; import net.shinemod.common.CommonProxy.CommonProxy; import net.shinemod.configuration.ConfigBlockRegisters; import net.shinemod.configuration.ConfigLanguageRegisters; import net.shinemod.configuration.ConfigRecipeRegisters; import net.shinemod.configuration.ConfigSmeltRegisters; import net.shinemod.configuration.ConfigurationHandler; import net.shinemod.configuration.ConfigurationInitializing_EntityRegistering; import net.shinemod.configuration.ConfigurationInts; import net.shinemod.configuration.ItemBlockHolder; import net.shinemod.creatures.ShineChicken; import net.shinemod.creatures.ShineCow; import net.shinemod.creatures.ShineCreeper; import net.shinemod.creatures.ShinePig; import net.shinemod.creatures.ShineSheep; import net.shinemod.creatures.ShineSkeleton; import net.shinemod.creatures.ShineSpider; import net.shinemod.creatures.ShineZombie; import net.shinemod.dimensions.BiomeCryptic; import net.shinemod.dimensions.BiomeEclipse; import net.shinemod.dimensions.BiomeShine; import net.shinemod.dimensions.CrypticWorldProvider; import net.shinemod.dimensions.EclipsePortal; import net.shinemod.dimensions.EclipseWorldProvider; import net.shinemod.dimensions.ShrinePortal; import net.shinemod.dimensions.WorldGenShineTrees; import net.shinemod.dimensions.WorldProviderShrine; import cpw.mods.fml.common.Mod; import cpw.mods.fml.common.Mod.Init; import cpw.mods.fml.common.Mod.PreInit; import cpw.mods.fml.common.SidedProxy; import cpw.mods.fml.common.event.FMLInitializationEvent; import cpw.mods.fml.common.event.FMLPreInitializationEvent; import cpw.mods.fml.common.network.NetworkMod; import cpw.mods.fml.common.registry.EntityRegistry; import cpw.mods.fml.common.registry.GameRegistry; import cpw.mods.fml.common.registry.LanguageRegistry; import net.shinemod.dimensions.CrypticPortal; @Mod(modid = "ShineToolPack", name = "ShineToolPack", version = "1.5.2") @NetworkMod(clientSideRequired = true, serverSideRequired = false) public class mod_shinepack { //CreativeTabs public static CreativeTabs tabJVCraft = new CreativeTabJVCraft(CreativeTabs.getNextID(), "tabJVCraft", "JVCraft"); @SidedProxy(clientSide = "net.shinemod.client.ClientProxy.ClientProxy", serverSide = "net.shinemod.common.CommonProxy.CommonProxy") public static CommonProxy proxy; @PreInit public void preInit(FMLPreInitializationEvent event) { ConfigurationHandler.init(new File(event.getModConfigurationDirectory().getAbsoluteFile()+ "ShineToolPack" + ".cfg")); } @Init public void load(FMLInitializationEvent event){ //Dimension DimensionManager.registerProviderType(20, WorldProviderShrine.class, false); DimensionManager.registerDimension(20, 20); DimensionManager.registerProviderType(21, EclipseWorldProvider.class, false); DimensionManager.registerDimension(21, 21); DimensionManager.registerProviderType(22, CrypticWorldProvider.class, false); DimensionManager.registerDimension(22, 22); /*Entity Registers *\ ******************* */ //\\EntityRegistersShine.RegisterEntitys(); /*Configuration Inizilazers *\ ******************* */ ConfigurationInitializing_EntityRegistering.Initalize(); /*Configuration BlockRegisters *\ ******************* */ ConfigBlockRegisters.blockRegisters(); /*Configuration SmeltRegisters *\ ******************* */ ConfigSmeltRegisters.SmeltRegisters(); /*Configuration RecipeRegisters *\ ******************* */ ConfigRecipeRegisters.RecipeRegisters(); /*Configuration LanguageRegisters *\ ******************* */ ConfigLanguageRegisters.LanguageRegisters(); //Ore Generation GameRegistry.registerWorldGenerator(new OreWorldGen()); GameRegistry.registerWorldGenerator(new WorldGenShineTrees()); //GameRegistry.registerWorldGenerator(new WorldGenShine2(false)); registerEntityEgg(ShineSpider.class, 0x25630C, 0xEB46E0); registerEntityEgg(ShineCow.class, 0x35630C, 0xFB46E0); registerEntityEgg(ShinePig.class, 0x25630C, 0xEB46E0); registerEntityEgg(ShineSheep.class, 0x35630C, 0xFB46E0); registerEntityEgg(ShineCreeper.class, 0x25630C, 0xEB46E0); registerEntityEgg(ShineZombie.class, 0x35630C, 0xFB46E0); registerEntityEgg(ShineSkeleton.class, 0x25630C, 0xEB46E0); registerEntityEgg(ShineChicken.class, 0x35630C, 0xFB46E0); } public static void registerEntityEgg(Class<? extends Entity> entity, int primaryColor, int secondaryColor) { if(ConfigurationInts.RespawnEggs == true){ int id = getUniqueEntityId(); EntityList.IDtoClassMapping.put(id, entity); EntityList.entityEggs.put(id, new EntityEggInfo(id, primaryColor, secondaryColor)); } } public static int getUniqueEntityId(){ if(ConfigurationInts.RespawnEggs == true){ do { ItemBlockHolder.startEntityId++; } while(EntityList.getStringFromID(ItemBlockHolder.startEntityId) != null); } return ItemBlockHolder.startEntityId; } } [btw the defualt ID's are hardcoded for how everlong until there changed in eclipse if thats what you mean. I mean from a players perspectaive there already programmed with hardcoded ID's but a programmers perspectaive is you can change them in the code whenever. Also it seems like my config doesnt auto regenerate if I change the id's in eclipse. If I change the id's in the config it will change Id's in the game though. Its not a problem it just whenever I change a ID in eclipse I have to delete my config so it makes a new one with the right hardcoded id's in eclipse. I hope you understand what Im saying. If you dont everything that is in the brakets doesnt matter just read the top.]
  9. I have my config so much tied into my mod, that I don't think I can do without it. Im getting this error consistently, everytime I try to boot up a world it takes me back the the main screen then crashes. I have over 100 news items/ore/dimensions, and taking out a config would be a long time.
  10. [glow=red,2,300]BUMP[/glow]
  11. Ok so I switched to a config as my id's insted of hardcoded Id's and now all of a sudden I get this error: Eclipse Console Log: 2013-05-26 09:06:05 [iNFO] [ForgeModLoader] Forge Mod Loader version 5.2.2.684 for Minecraft 1.5.2 loading 2013-05-26 09:06:05 [iNFO] [ForgeModLoader] Java is Java HotSpot(TM) 64-Bit Server VM, version 1.7.0_13, running on Windows 8:amd64:6.2, installed at C:\Program Files\Java\jre7 2013-05-26 09:06:05 [iNFO] [ForgeModLoader] Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation 2013-05-26 09:06:07 [iNFO] [sTDOUT] 229 recipes 2013-05-26 09:06:07 [iNFO] [sTDOUT] 27 achievements 2013-05-26 09:06:07 [iNFO] [Minecraft-Client] Setting user: Player952 2013-05-26 09:06:07 [iNFO] [sTDOUT] (Session ID is -) 2013-05-26 09:06:07 [iNFO] [sTDERR] Client asked for parameter: server 2013-05-26 09:06:08 [iNFO] [Minecraft-Client] LWJGL Version: 2.4.2 2013-05-26 09:06:08 [iNFO] [MinecraftForge] Attempting early MinecraftForge initialization 2013-05-26 09:06:08 [iNFO] [sTDOUT] MinecraftForge v7.8.0.684 Initialized 2013-05-26 09:06:08 [iNFO] [ForgeModLoader] MinecraftForge v7.8.0.684 Initialized 2013-05-26 09:06:08 [iNFO] [sTDOUT] Replaced 85 ore recipies 2013-05-26 09:06:08 [iNFO] [MinecraftForge] Completed early MinecraftForge initialization 2013-05-26 09:06:08 [iNFO] [ForgeModLoader] Reading custom logging properties from C:\Users\jacks_000\Documents\My Games\Minecraft\Modding\MCP 1.5.2\jars\config\logging.properties 2013-05-26 09:06:08 [OFF] [ForgeModLoader] Logging level for ForgeModLoader logging is set to ALL 2013-05-26 09:06:08 [iNFO] [ForgeModLoader] Searching C:\Users\jacks_000\Documents\My Games\Minecraft\Modding\MCP 1.5.2\jars\mods for mods 2013-05-26 09:06:09 [iNFO] [ForgeModLoader] Attempting to reparse the mod container bin 2013-05-26 09:06:10 [iNFO] [ForgeModLoader] Forge Mod Loader has identified 4 mods to load 2013-05-26 09:06:10 [iNFO] [mcp] Activating mod mcp 2013-05-26 09:06:10 [iNFO] [FML] Activating mod FML 2013-05-26 09:06:10 [iNFO] [Forge] Activating mod Forge 2013-05-26 09:06:10 [iNFO] [shineToolPack] Activating mod ShineToolPack 2013-05-26 09:06:10 [iNFO] [ForgeModLoader] Configured a dormant chunk cache size of 0 2013-05-26 09:06:11 [iNFO] [sTDOUT] 2013-05-26 09:06:11 [iNFO] [sTDOUT] Starting up SoundSystem... 2013-05-26 09:06:11 [iNFO] [sTDOUT] Initializing LWJGL OpenAL 2013-05-26 09:06:11 [iNFO] [sTDOUT] (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) 2013-05-26 09:06:11 [iNFO] [sTDOUT] OpenAL initialized. 2013-05-26 09:06:11 [iNFO] [sTDOUT] 2013-05-26 09:06:12 [iNFO] [sTDERR] java.lang.NoSuchFieldException: GL_ARB_copy_image 2013-05-26 09:06:12 [iNFO] [sTDERR] at java.lang.Class.getField(Unknown Source) 2013-05-26 09:06:12 [iNFO] [sTDERR] at cpw.mods.fml.client.TextureFXManager.getHelper(TextureFXManager.java:122) 2013-05-26 09:06:12 [iNFO] [sTDERR] at net.minecraft.client.renderer.texture.TextureStitched.init(TextureStitched.java:74) 2013-05-26 09:06:12 [iNFO] [sTDERR] at net.minecraft.client.renderer.texture.TextureMap.refreshTextures(TextureMap.java:154) 2013-05-26 09:06:12 [iNFO] [sTDERR] at net.minecraft.client.renderer.RenderEngine.refreshTextureMaps(RenderEngine.java:520) 2013-05-26 09:06:12 [iNFO] [sTDERR] at net.minecraft.client.Minecraft.startGame(Minecraft.java:443) 2013-05-26 09:06:12 [iNFO] [sTDERR] at net.minecraft.client.MinecraftAppletImpl.startGame(MinecraftAppletImpl.java:44) 2013-05-26 09:06:12 [iNFO] [sTDERR] at net.minecraft.client.Minecraft.run(Minecraft.java:732) 2013-05-26 09:06:12 [iNFO] [sTDERR] at java.lang.Thread.run(Unknown Source) 2013-05-26 09:06:12 [iNFO] [ForgeModLoader] Forge Mod Loader has detected an older LWJGL version, new advanced texture animation features are disabled 2013-05-26 09:06:12 [iNFO] [ForgeModLoader] Not using advanced OpenGL 4.3 advanced capability for animations : OpenGL 4.3 is not available 2013-05-26 09:06:12 [iNFO] [Minecraft-Client] Found animation info for: textures/blocks/lava_flow.txt 2013-05-26 09:06:12 [iNFO] [Minecraft-Client] Found animation info for: textures/blocks/water_flow.txt 2013-05-26 09:06:12 [iNFO] [Minecraft-Client] Found animation info for: textures/blocks/fire_0.txt 2013-05-26 09:06:12 [iNFO] [Minecraft-Client] Found animation info for: textures/blocks/fire_1.txt 2013-05-26 09:06:12 [iNFO] [Minecraft-Client] Found animation info for: textures/blocks/lava.txt 2013-05-26 09:06:12 [iNFO] [Minecraft-Client] Found animation info for: textures/blocks/portal.txt 2013-05-26 09:06:12 [iNFO] [Minecraft-Client] Found animation info for: textures/blocks/water.txt 2013-05-26 09:06:12 [iNFO] [Minecraft-Client] Found animation info for: textures/items/clock.txt 2013-05-26 09:06:12 [iNFO] [Minecraft-Client] Found animation info for: textures/items/compass.txt 2013-05-26 09:06:13 [iNFO] [sTDOUT] CONFLICT @ 0 item slot already occupied by net.minecraft.item.ItemSpade@6162259e while adding net.shinemod.ShineItem@7293da04 2013-05-26 09:06:13 [iNFO] [fml.ItemTracker] The mod ShineToolPack is overwriting existing item at 256 (net.minecraft.item.ItemSpade from Minecraft) with net.shinemod.ShineItem 2013-05-26 09:06:13 [iNFO] [sTDOUT] CONFLICT @ 622 item slot already occupied by net.shinemod.ShineItem@26fd94a1 while adding net.shinemod.ShineItem@5228ea06 2013-05-26 09:06:13 [iNFO] [fml.ItemTracker] The mod ShineToolPack is overwriting existing item at 878 (net.shinemod.ShineItem from ShineToolPack) with net.shinemod.ShineItem 2013-05-26 09:06:13 [iNFO] [sTDOUT] CONFLICT @ 631 item slot already occupied by net.shinemod.ShineItem@7c1c5a0d while adding net.shinemod.ShineItem@295c4b23 2013-05-26 09:06:13 [iNFO] [fml.ItemTracker] The mod ShineToolPack is overwriting existing item at 887 (net.shinemod.ShineItem from ShineToolPack) with net.shinemod.ShineItem 2013-05-26 09:06:13 [iNFO] [ForgeModLoader] Forge Mod Loader has successfully loaded 4 mods 2013-05-26 09:06:13 [iNFO] [sTDERR] java.io.FileNotFoundException: http://assets.minecraft.net/1_6_has_been_released.flag 2013-05-26 09:06:13 [iNFO] [sTDERR] at sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown Source) 2013-05-26 09:06:13 [iNFO] [sTDERR] at net.minecraft.util.HttpUtil.func_104145_a(HttpUtil.java:230) 2013-05-26 09:06:13 [iNFO] [sTDERR] at net.minecraft.client.gui.RunnableTitleScreen.run(RunnableTitleScreen.java:23) 2013-05-26 09:06:13 [iNFO] [sTDERR] at java.lang.Thread.run(Unknown Source) 2013-05-26 09:06:13 [WARNING] [Minecraft-Client] TextureManager.createTexture called for file textures/blocks/mod/CrypticBlock.png, but that file does not exist. Ignoring. 2013-05-26 09:06:13 [iNFO] [sTDERR] java.io.IOException: Server returned HTTP response code: 503 for URL: http://s3.amazonaws.com/MinecraftResources/ 2013-05-26 09:06:13 [iNFO] [sTDERR] at sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown Source) 2013-05-26 09:06:13 [iNFO] [sTDERR] at net.minecraft.util.ThreadDownloadResources.run(ThreadDownloadResources.java:57) 2013-05-26 09:06:14 [iNFO] [Minecraft-Client] Found animation info for: textures/blocks/lava_flow.txt 2013-05-26 09:06:14 [iNFO] [Minecraft-Client] Found animation info for: textures/blocks/water_flow.txt 2013-05-26 09:06:14 [iNFO] [Minecraft-Client] Found animation info for: textures/blocks/fire_0.txt 2013-05-26 09:06:14 [iNFO] [Minecraft-Client] Found animation info for: textures/blocks/fire_1.txt 2013-05-26 09:06:14 [iNFO] [Minecraft-Client] Found animation info for: textures/blocks/lava.txt 2013-05-26 09:06:14 [iNFO] [Minecraft-Client] Found animation info for: textures/blocks/portal.txt 2013-05-26 09:06:14 [iNFO] [Minecraft-Client] Found animation info for: textures/blocks/water.txt 2013-05-26 09:06:14 [iNFO] [Minecraft-Client] Found animation info for: textures/items/clock.txt 2013-05-26 09:06:14 [iNFO] [Minecraft-Client] Found animation info for: textures/items/compass.txt 2013-05-26 09:06:25 [iNFO] [sTDERR] java.io.FileNotFoundException: http://assets.minecraft.net/1_6_has_been_released.flag 2013-05-26 09:06:25 [iNFO] [sTDERR] at sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown Source) 2013-05-26 09:06:25 [iNFO] [sTDERR] at net.minecraft.util.HttpUtil.func_104145_a(HttpUtil.java:230) 2013-05-26 09:06:25 [iNFO] [sTDERR] at net.minecraft.client.gui.RunnableTitleScreen.run(RunnableTitleScreen.java:23) 2013-05-26 09:06:25 [iNFO] [sTDERR] at java.lang.Thread.run(Unknown Source) 2013-05-26 09:06:25 [iNFO] [Minecraft-Server] Starting integrated minecraft server version 1.5.2 2013-05-26 09:06:25 [iNFO] [Minecraft-Server] Generating keypair 2013-05-26 09:06:26 [iNFO] [ForgeModLoader] Loading dimension 0 (LALALA) (net.minecraft.server.integrated.IntegratedServer@de20431) 2013-05-26 09:06:26 [iNFO] [ForgeModLoader] Loading dimension 21 (LALALA) (net.minecraft.server.integrated.IntegratedServer@de20431) 2013-05-26 09:06:26 [iNFO] [ForgeModLoader] Loading dimension 20 (LALALA) (net.minecraft.server.integrated.IntegratedServer@de20431) 2013-05-26 09:06:26 [iNFO] [ForgeModLoader] Loading dimension 1 (LALALA) (net.minecraft.server.integrated.IntegratedServer@de20431) 2013-05-26 09:06:26 [iNFO] [ForgeModLoader] Loading dimension -1 (LALALA) (net.minecraft.server.integrated.IntegratedServer@de20431) 2013-05-26 09:06:26 [iNFO] [ForgeModLoader] Loading dimension 22 (LALALA) (net.minecraft.server.integrated.IntegratedServer@de20431) 2013-05-26 09:06:26 [iNFO] [Minecraft-Server] Preparing start region for level 0 2013-05-26 09:06:27 [iNFO] [sTDERR] java.io.FileNotFoundException: http://assets.minecraft.net/1_6_has_been_released.flag 2013-05-26 09:06:27 [iNFO] [sTDERR] at sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown Source) 2013-05-26 09:06:27 [iNFO] [sTDERR] at net.minecraft.util.HttpUtil.func_104145_a(HttpUtil.java:230) 2013-05-26 09:06:27 [iNFO] [sTDERR] at net.minecraft.client.gui.RunnableTitleScreen.run(RunnableTitleScreen.java:23) 2013-05-26 09:06:27 [iNFO] [sTDERR] at java.lang.Thread.run(Unknown Source) 2013-05-26 09:06:30 [iNFO] [Minecraft-Client] Stopping! 2013-05-26 09:06:41 [iNFO] [sTDERR] java.lang.OutOfMemoryError: Java heap space 2013-05-26 09:06:41 [iNFO] [sTDERR] at java.util.Arrays.copyOf(Unknown Source) 2013-05-26 09:06:41 [iNFO] [sTDERR] at java.util.ArrayList.grow(Unknown Source) 2013-05-26 09:06:41 [iNFO] [sTDERR] at java.util.ArrayList.ensureCapacityInternal(Unknown Source) 2013-05-26 09:06:41 [iNFO] [sTDERR] at java.util.ArrayList.add(Unknown Source) 2013-05-26 09:06:41 [iNFO] [sTDERR] at net.minecraft.util.AABBPool.getAABB(AABBPool.java:51) 2013-05-26 09:06:41 [iNFO] [sTDERR] at net.minecraft.block.Block.getCollisionBoundingBoxFromPool(Block.java:593) 2013-05-26 09:06:41 [iNFO] [sTDERR] at net.minecraft.block.Block.addCollisionBoxesToList(Block.java:559) 2013-05-26 09:06:41 [iNFO] [sTDERR] at net.minecraft.world.World.getCollidingBoundingBoxes(World.java:1683) 2013-05-26 09:06:41 [iNFO] [sTDERR] at net.minecraft.entity.player.EntityPlayerMP.<init>(EntityPlayerMP.java:178) 2013-05-26 09:06:41 [iNFO] [sTDERR] at net.minecraft.server.management.ServerConfigurationManager.createPlayerForUser(ServerConfigurationManager.java:383) 2013-05-26 09:06:41 [iNFO] [sTDERR] at net.minecraft.server.integrated.IntegratedServerListenThread.networkTick(IntegratedServerListenThread.java:91) 2013-05-26 09:06:41 [iNFO] [sTDERR] at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:675) 2013-05-26 09:06:41 [iNFO] [sTDERR] at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:571) 2013-05-26 09:06:41 [iNFO] [sTDERR] at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:127) 2013-05-26 09:06:41 [iNFO] [sTDERR] at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:469) 2013-05-26 09:06:41 [iNFO] [sTDERR] at net.minecraft.server.ThreadMinecraftServer.run(ThreadMinecraftServer.java:16) 2013-05-26 09:06:41 [sEVERE] [Minecraft-Server] Encountered an unexpected exception OutOfMemoryError java.lang.OutOfMemoryError: Java heap space at java.util.Arrays.copyOf(Unknown Source) at java.util.ArrayList.grow(Unknown Source) at java.util.ArrayList.ensureCapacityInternal(Unknown Source) at java.util.ArrayList.add(Unknown Source) at net.minecraft.util.AABBPool.getAABB(AABBPool.java:51) at net.minecraft.block.Block.getCollisionBoundingBoxFromPool(Block.java:593) at net.minecraft.block.Block.addCollisionBoxesToList(Block.java:559) at net.minecraft.world.World.getCollidingBoundingBoxes(World.java:1683) at net.minecraft.entity.player.EntityPlayerMP.<init>(EntityPlayerMP.java:178) at net.minecraft.server.management.ServerConfigurationManager.createPlayerForUser(ServerConfigurationManager.java:383) at net.minecraft.server.integrated.IntegratedServerListenThread.networkTick(IntegratedServerListenThread.java:91) at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:675) at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:571) at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:127) at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:469) at net.minecraft.server.ThreadMinecraftServer.run(ThreadMinecraftServer.java:16) 2013-05-26 09:06:41 [sEVERE] [Minecraft-Server] This crash report has been saved to: C:\Users\jacks_000\Documents\My Games\Minecraft\Modding\MCP 1.5.2\jars\.\crash-reports\crash-2013-05-26_09.06.41-server.txt 2013-05-26 09:06:41 [iNFO] [Minecraft-Server] Stopping server 2013-05-26 09:06:41 [iNFO] [Minecraft-Server] Saving players 2013-05-26 09:06:41 [iNFO] [Minecraft-Server] Saving worlds 2013-05-26 09:06:41 [iNFO] [Minecraft-Server] Saving chunks for level 'LALALA'/Overworld 2013-05-26 09:06:44 [iNFO] [Minecraft-Server] Saving chunks for level 'LALALA'/Nether 2013-05-26 09:06:44 [iNFO] [Minecraft-Server] Saving chunks for level 'LALALA'/The End 2013-05-26 09:06:44 [iNFO] [Minecraft-Server] Saving chunks for level 'LALALA'/Eclipse 2013-05-26 09:06:44 [iNFO] [Minecraft-Server] Saving chunks for level 'LALALA'/Shine 2013-05-26 09:06:44 [iNFO] [Minecraft-Server] Saving chunks for level 'LALALA'/Cryptic 2013-05-26 09:06:50 [iNFO] [ForgeModLoader] Unloading dimension 0 2013-05-26 09:06:50 [iNFO] [ForgeModLoader] Unloading dimension -1 2013-05-26 09:06:50 [iNFO] [ForgeModLoader] Unloading dimension 1 2013-05-26 09:06:50 [iNFO] [ForgeModLoader] Unloading dimension 21 2013-05-26 09:06:50 [iNFO] [ForgeModLoader] Unloading dimension 20 2013-05-26 09:06:50 [iNFO] [ForgeModLoader] Unloading dimension 22 2013-05-26 09:06:50 [sEVERE] [ForgeModLoader] Fatal errors were detected during the transition from SERVER_STARTED to SERVER_STOPPED. Loading cannot continue 2013-05-26 09:06:50 [sEVERE] [ForgeModLoader] mcp{7.44} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available FML{5.2.2.684} [Forge Mod Loader] (coremods) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available Forge{7.8.0.684} [Minecraft Forge] (coremods) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available ShineToolPack{1.5.2} [shineToolPack] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available 2013-05-26 09:06:50 [sEVERE] [ForgeModLoader] The ForgeModLoader state engine has become corrupted. Probably, a state was missed by and invalid modification to a base classForgeModLoader depends on. This is a critical error and not recoverable. Investigate any modifications to base classes outside ofForgeModLoader, especially Optifine, to see if there are fixes available. 2013-05-26 09:06:50 [iNFO] [sTDERR] Exception in thread "Server thread" java.lang.RuntimeException: The ForgeModLoader state engine is invalid 2013-05-26 09:06:50 [iNFO] [sTDERR] at cpw.mods.fml.common.LoadController.transition(LoadController.java:134) 2013-05-26 09:06:50 [iNFO] [sTDERR] at cpw.mods.fml.common.Loader.serverStopped(Loader.java:800) 2013-05-26 09:06:50 [iNFO] [sTDERR] at cpw.mods.fml.common.FMLCommonHandler.handleServerStopped(FMLCommonHandler.java:468) 2013-05-26 09:06:50 [iNFO] [sTDERR] at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:531) 2013-05-26 09:06:50 [iNFO] [sTDERR] at net.minecraft.server.ThreadMinecraftServer.run(ThreadMinecraftServer.java:16) 2013-05-26 09:06:50 [iNFO] [sTDOUT] 2013-05-26 09:06:50 [iNFO] [sTDOUT] SoundSystem shutting down... 2013-05-26 09:06:50 [iNFO] [sTDOUT] Author: Paul Lamb, www.paulscode.com 2013-05-26 09:06:50 [iNFO] [sTDOUT] 2013-05-26 09:15:26 [iNFO] [sTDERR] Someone is closing me! I believe its something about a memory heap, I have no clue what the problem is, not even a cent of a clue. I hope someone can help! Thanks Edit:Im not sure if this is any help, but like I said I just added a new config, and when I was looking the error up I found this forum: http://www.minecraftforum.net/topic/1749220-forgeminecraft-151-crash/ It says there, that he fixed it not by changing the amount of memory being used(Which I already tried, no luck)but by doing something with the config, something with the load. I dont know what thats supposed to mean, but apparently it might help, also his was the closest version I saw to mine, so I think my error is something with the config, since it was working fine before without it. Thanks
  12. Thanks man it worked great. Also I got the terrianBlock thing to work.!
  13. Draco getItem I do use for my items but nvm, im gonna try to use what mew does. Hopefully it works!
  14. Exactly but what about my Items using getItem, all those are giving the wrong id. So my question is why?!!
  15. Ok i get that but for example Green legs which is 522 in the code. If you add 522 + 256 = 778. If you look in the config file it lists lime_legs as 31691 not 778.
  16. Okay so actually you caught a mistake all the blocks are supposed to be config.getBlock. Im not sure why whenever I call the getItem function no matter what ID I write, in the config it jumps to somewhere in the 30,000's! Thanks for helping guys, I hope we can figure out the problem!
  17. May I quickly ask, how you made a addon mod. I looked around and theres like nothing on it. I tried to do it myself but the mod I was doing an addon on the files were wierd, and things werent working just right. Is there any thing you saw that shows you how to do this?
  18. Thanks, now thats the type of comment I need. Now please dont tell me im going to have to recode all my Items so there in the < 4096 section if I wana use a config? So thats why the blocks are working, but only some of them are which is weird! Im still kinda confused on this whole thing. Can you explain a bit more, on why my some of my blocks are in the 30k range, and do I need to recode my items?
  19. Guys you may need to see a doctor or something because your obviously not answering the question correctly. I asked why if I programmed my mod to have id's in like the 500-1000 range, why would they show up as 30000 in the config file. I dont need to know the maximum ID, I want to know why it shows the ID's as like 30000 in the config, but also in the config some of the blocks actually worked, and there the right ID's. If you look at my first post it shows the config. In the blocks section some of the ID's are actually correct, there not listed as somewhere in the 30,000's. Please answer the right question, as in why this is happening. Not that minecraft can support certain ID's. Thanks.
  20. What? Did you not see like all the ids in the 30,000's not just the shovel, that was an example. I didnt make them that id, I have them set. Here is where I have them set: @PreInit public void preInit(FMLPreInitializationEvent event) { //any time you want to make a block that will be a biome block, use .getTerrainBlock(). any other block use .getBlock. Configuration config = new Configuration(event.getSuggestedConfigurationFile()); config.load(); /* Blue-Set-Config */ TutorialHelmetID = config.getItem(config.CATEGORY_ITEM, "royal_helmet", 502).getInt(); TutorialPlateID = config.getItem(config.CATEGORY_ITEM, "royal_plate", 511).getInt(); TutorialLegsID = config.getItem(config.CATEGORY_ITEM, "royal_leggings", 529).getInt(); TutorialBootsID = config.getItem(config.CATEGORY_ITEM, "royal_boots", 668).getInt(); BlueIngotID = config.getItem(config.CATEGORY_ITEM, "royal_ingot", 632).getInt(); BlueDustID = config.getItem(config.CATEGORY_ITEM, "royal_dust", 623).getInt(); BlueToolFragmentID = config.getItem(config.CATEGORY_ITEM, "royal_toolfragment", 641).getInt(); BlueSwordID = config.getItem(config.CATEGORY_ITEM, "royal_sword", 538).getInt(); BluePickaxeID = config.getItem(config.CATEGORY_ITEM, "royal_pickaxe", 546).getInt(); BlueSpadeID = config.getItem(config.CATEGORY_ITEM, "royal_spade", 555).getInt(); BlueAxeID = config.getItem(config.CATEGORY_ITEM, "royal_axe", 604).getInt(); BlueOreID = config.getBlock(config.CATEGORY_BLOCK, "royal_ore", 652).getInt(); BlueBlockID = config.getItem(config.CATEGORY_BLOCK, "royal_block", 700).getInt(); BluePaxelID = config.getItem(config.CATEGORY_ITEM, "royal_paxel", 800).getInt(); /* Spawn-Eggs-Config */ RespawnEggs = config.get(config.CATEGORY_GENERAL, "does_shinetoolpack_contain_spawneggs", false).getBoolean(false); /* Yellow-Set-Config */ YellowHelmetID = config.getItem(config.CATEGORY_ITEM, "coral_helmet", 500).getInt(); YellowPlateID = config.getItem(config.CATEGORY_ITEM, "coral_plate", 509).getInt(); YellowLegsID = config.getItem(config.CATEGORY_ITEM, "coral_leggings", 518).getInt(); YellowBootsID = config.getItem(config.CATEGORY_ITEM, "coral_boots", 527).getInt(); YellowIngotID = config.getItem(config.CATEGORY_ITEM, "coral_ingot", 630).getInt(); YellowDustID = config.getItem(config.CATEGORY_ITEM, "coral_dust", 611).getInt(); YellowToolFragmentID = config.getItem(config.CATEGORY_ITEM, "coral_toolfragment", 639).getInt(); YellowSwordID = config.getItem(config.CATEGORY_ITEM, "coral_sword", 536).getInt(); YellowPickaxeID = config.getItem(config.CATEGORY_ITEM, "coral_pickaxe", 669).getInt(); YellowSpadeID = config.getItem(config.CATEGORY_ITEM, "coral_spade", 553).getInt(); YellowAxeID = config.getItem(config.CATEGORY_ITEM, "coral_axe", 602).getInt(); YellowOreID = config.getBlock(config.CATEGORY_BLOCK, "coral_ore", 650).getInt(); YellowBlockID = config.getItem(config.CATEGORY_BLOCK, "coral_block", 701).getInt(); /*White-Set-Config */ WhiteHelmetID = config.getItem(config.CATEGORY_ITEM, "snow_helmet", 501).getInt(); WhitePlateID = config.getItem(config.CATEGORY_ITEM, "snow_plate", 519).getInt(); WhiteLegsID = config.getItem(config.CATEGORY_ITEM, "snow_leggings", 519).getInt(); WhiteBootsID = config.getItem(config.CATEGORY_ITEM, "snow_boots", 528).getInt(); WhiteIngotID = config.getItem(config.CATEGORY_ITEM, "snow_ingot", 631).getInt(); SilverIngotID = config.getItem(config.CATEGORY_ITEM, "snow_ingot", 649).getInt(); SilverDustID = config.getItem(config.CATEGORY_ITEM, "snow_dust", 622).getInt(); WhitePowderID = config.getItem(config.CATEGORY_ITEM, "snow_dust", 648).getInt(); WhiteToolFragmentID = config.getItem(config.CATEGORY_ITEM, "snow_toolfragment", 640).getInt(); WhiteSwordID = config.getItem(config.CATEGORY_ITEM, "snow_sword", 537).getInt(); WhitePickaxeID = config.getItem(config.CATEGORY_ITEM, "snow_pickaxe", 545).getInt(); WhiteSpadeID = config.getItem(config.CATEGORY_ITEM, "snow_spade", 554).getInt(); WhiteAxeID = config.getItem(config.CATEGORY_ITEM, "snow_axe", 603).getInt(); SilverOreID = config.getBlock(config.CATEGORY_BLOCK, "snow_ore", 651).getInt(); WhiteBlockID = config.getItem(config.CATEGORY_BLOCK, "snow_block", 702).getInt(); /*Red-Set-Config*/ RedHelmetID = config.getItem(config.CATEGORY_ITEM, "lust_helmet", 503).getInt(); RedPlateID = config.getItem(config.CATEGORY_ITEM, "lust_plate", 512).getInt(); RedLegsID = config.getItem(config.CATEGORY_ITEM, "lust_leggings", 521).getInt(); RedBootsID = config.getItem(config.CATEGORY_ITEM, "lust_boots", 530).getInt(); RedIngotID = config.getItem(config.CATEGORY_ITEM, "lust_ingot", 633).getInt(); RedDustID = config.getItem(config.CATEGORY_ITEM, "lust_dust", 624).getInt(); RedToolFragmentID = config.getItem(config.CATEGORY_ITEM, "lust_toolfragment", 642).getInt(); RedSwordID = config.getItem(config.CATEGORY_ITEM, "lust_sword", 539).getInt(); RedPickaxeID = config.getItem(config.CATEGORY_ITEM, "lust_pickaxe", 547).getInt(); RedSpadeID = config.getItem(config.CATEGORY_ITEM, "lust_spade", 556).getInt(); RedAxeID = config.getItem(config.CATEGORY_ITEM, "lust_axe", 605).getInt(); RedOreID = config.getBlock(config.CATEGORY_BLOCK, "lust_ore", 653).getInt(); RedBlockID = config.getItem(config.CATEGORY_BLOCK, "lust_block", 703).getInt(); RedPaxelID = config.getItem(config.CATEGORY_ITEM, "lust_paxel", 801).getInt(); /*Green-Set-Config*/ GreenHelmetID = config.getItem(config.CATEGORY_ITEM, "lime_helmet", 504).getInt(); GreenPlateID = config.getItem(config.CATEGORY_ITEM, "lime_plate", 513).getInt(); GreenLegsID = config.getItem(config.CATEGORY_ITEM, "lime_leggings", 522).getInt(); GreenBootsID = config.getItem(config.CATEGORY_ITEM, "lime_boots", 531).getInt(); GreenIngotID = config.getItem(config.CATEGORY_ITEM, "lime_ingot", 634).getInt(); GreenDustID = config.getItem(config.CATEGORY_ITEM, "lime_dust", 625).getInt(); GreenToolFragmentID = config.getItem(config.CATEGORY_ITEM, "lime_toolfragment", 643).getInt(); GreenSwordID = config.getItem(config.CATEGORY_ITEM, "lime_sword", 540).getInt(); GreenPickaxeID = config.getItem(config.CATEGORY_ITEM, "lime_pickaxe", 548).getInt(); GreenSpadeID = config.getItem(config.CATEGORY_ITEM, "lime_spade", 557).getInt(); GreenAxeID = config.getItem(config.CATEGORY_ITEM, "lime_axe", 571).getInt(); GreenOreID = config.getBlock(config.CATEGORY_BLOCK, "lime_ore", 654).getInt(); GreenBlockID = config.getItem(config.CATEGORY_BLOCK, "lime_block", 704).getInt(); GreenPaxelID = config.getItem(config.CATEGORY_ITEM, "lime_paxel", 802).getInt(); /*Pink-Set-Config */ PinkHelmetID = config.getItem(config.CATEGORY_ITEM, "magenta_helmet", 505).getInt(); PinkPlateID = config.getItem(config.CATEGORY_ITEM, "magenta_plate", 514).getInt(); PinkLegsID = config.getItem(config.CATEGORY_ITEM, "magenta_leggings", 523).getInt(); PinkBootsID = config.getItem(config.CATEGORY_ITEM, "magenta_boots", 532).getInt(); PinkIngotID = config.getItem(config.CATEGORY_ITEM, "magenta_ingot", 635).getInt(); PinkDustID = config.getItem(config.CATEGORY_ITEM, "magenta_dust", 626).getInt(); PinkToolFragmentID = config.getItem(config.CATEGORY_ITEM, "magenta_toolfragment", 644).getInt(); PinkSwordID = config.getItem(config.CATEGORY_ITEM, "magenta_sword", 541).getInt(); PinkPickaxeID = config.getItem(config.CATEGORY_ITEM, "magenta_pickaxe", 549).getInt(); PinkSpadeID = config.getItem(config.CATEGORY_ITEM, "magenta_spade", 558).getInt(); PinkAxeID = config.getItem(config.CATEGORY_ITEM, "magenta_axe", 606).getInt(); PinkOreID = config.getBlock(config.CATEGORY_BLOCK, "magenta_ore", 665).getInt(); PinkBlockID = config.getItem(config.CATEGORY_BLOCK, "magenta_block", 705).getInt(); PinkPaxelID = config.getItem(config.CATEGORY_ITEM, "magenta_paxel", 803).getInt(); config.save(); } As you can see all the ids are not even close to 30,000. So im not sure what the probelm is...
  21. In my configuration file I dont know if everyone has this problem just until they recomplie and rebofuscate or whatever but for example here is my config: # Configuration file #################### # block #################### block { I:CGrassID=243 I:cdirt=242 I:coral_block=31719 I:coral_ore=650 I:lime_block=31682 I:lime_ore=654 I:lust_block=31695 I:lust_ore=653 I:magenta_block=31669 I:magenta_ore=665 I:royal_block=31732 I:royal_ore=652 I:snow_block=31707 I:snow_ore=651 } #################### # general #################### general { B:does_shinetoolpack_contain_spawneggs=true } #################### # item #################### item { I:coral_axe=31720 I:coral_boots=31727 I:coral_dust=31725 I:coral_helmet=31730 I:coral_ingot=31726 I:coral_leggings=31728 I:coral_pickaxe=31722 I:coral_plate=31729 I:coral_spade=31721 I:coral_sword=31723 I:coral_toolfragment=31724 I:lime_axe=31683 I:lime_boots=31690 I:lime_dust=31688 I:lime_helmet=31693 I:lime_ingot=31689 I:lime_leggings=31691 I:lime_paxel=31681 I:lime_pickaxe=31685 I:lime_plate=31692 I:lime_spade=31684 I:lime_sword=31686 I:lime_toolfragment=31687 I:lust_axe=31696 I:lust_boots=31703 I:lust_dust=31701 I:lust_helmet=31706 I:lust_ingot=31702 I:lust_leggings=31704 I:lust_paxel=31694 I:lust_pickaxe=31698 I:lust_plate=31705 I:lust_spade=31697 I:lust_sword=31699 I:lust_toolfragment=31700 I:magenta_axe=31670 I:magenta_boots=31677 I:magenta_dust=31675 I:magenta_helmet=31680 I:magenta_ingot=31676 I:magenta_leggings=31678 I:magenta_paxel=31668 I:magenta_pickaxe=31672 I:magenta_plate=31679 I:magenta_spade=31671 I:magenta_sword=31673 I:magenta_toolfragment=31674 I:royal_axe=31733 I:royal_boots=31740 I:royal_dust=31738 I:royal_helmet=31743 I:royal_ingot=31739 I:royal_leggings=31741 I:royal_paxel=31731 I:royal_pickaxe=31735 I:royal_plate=31742 I:royal_spade=31734 I:royal_sword=31736 I:royal_toolfragment=31737 I:snow_axe=31708 I:snow_boots=31715 I:snow_dust=31713 I:snow_helmet=31718 I:snow_ingot=31714 I:snow_leggings=31716 I:snow_pickaxe=31710 I:snow_plate=31717 I:snow_spade=31709 I:snow_sword=31711 I:snow_toolfragment=31712 I:tutorialhelmet=31743 } Like my snow spade and stuff is not 31709 its 506. Why does it say that large number? It also doesnt seem like it does it as much when dealing with blocks.
  22. Mew, it didnt work. Im still getting the error. I made the config file and it looks fine and all but Im still getting the same error. I really hope someone knows how to fix this, I really have no clue whats going on, in my other dimensions everything seems to be working fine, no error. I hope you can help!
  23. Ok thanks mew. Im already looking into it now, and creating some. BTW im looking at some examples so would YourConfigVariable.getBlock be the same thiing as YourConfigVariable.getTerrainBlock??
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.