Posted November 23, 201311 yr i was just wondering how i would go about making my block render like the wires from IC2 and getting them to connect and change on the blocks placed next to them? Any help would be appreciated, also the block is using a tile-entity if that is an consolation.
November 23, 201311 yr Hello, You can also use a TESR and a .obj to render it. I made a screenshot of my cable for you: Each of the sides has a different name, for example the left side is called Left. Here is my code i use to render it: public class CableTileEntitySpecialRenderer extends TileEntitySpecialRenderer { IModelCustom model; public CableTileEntitySpecialRenderer() { model = AdvancedModelLoader.loadModel("/assets/brickcraft/textures/models/cable.obj"); } @Override public void renderTileEntityAt(TileEntity tileentity, double d0, double d1, double d2, float f) { GL11.glPushMatrix(); GL11.glTranslatef((float)d0 + 0.5F, (float)d1 + 0.5F, (float)d2 + 0.5F); FMLClientHandler.instance().getClient().renderEngine.bindTexture(new ResourceLocation("brickcraft", "/textures/blocks/poseblock.png")); TileEntity front = tileentity.worldObj.getBlockTileEntity(tileentity.xCoord, tileentity.yCoord, tileentity.zCoord + 1); TileEntity back = tileentity.worldObj.getBlockTileEntity(tileentity.xCoord, tileentity.yCoord, tileentity.zCoord - 1); TileEntity top = tileentity.worldObj.getBlockTileEntity(tileentity.xCoord, tileentity.yCoord + 1, tileentity.zCoord); TileEntity bottom = tileentity.worldObj.getBlockTileEntity(tileentity.xCoord, tileentity.yCoord - 1, tileentity.zCoord); TileEntity left = tileentity.worldObj.getBlockTileEntity(tileentity.xCoord - 1, tileentity.yCoord, tileentity.zCoord); TileEntity right = tileentity.worldObj.getBlockTileEntity(tileentity.xCoord + 1, tileentity.yCoord, tileentity.zCoord); model.renderPart("Middle"); if (front instanceof IElectric) { model.renderPart("Front"); } if (back instanceof IElectric) { model.renderPart("Back"); } if (top instanceof IElectric) { model.renderPart("Top"); } if (bottom instanceof IElectric) { model.renderPart("Bottom"); } if (left instanceof IElectric) { model.renderPart("Left"); } if (right instanceof IElectric) { model.renderPart("Right"); } GL11.glPopMatrix(); } } I wonder why so many people are using ISBRHs instead of TESRs. They're much easier to use especially with a .obj. ss7 You sir are a god damn hero.
November 23, 201311 yr Author Hello, You can also use a TESR and a .obj to render it. I made a screenshot of my cable for you: Each of the sides has a different name, for example the left side is called Left. Here is my code i use to render it: public class CableTileEntitySpecialRenderer extends TileEntitySpecialRenderer { IModelCustom model; public CableTileEntitySpecialRenderer() { model = AdvancedModelLoader.loadModel("/assets/brickcraft/textures/models/cable.obj"); } @Override public void renderTileEntityAt(TileEntity tileentity, double d0, double d1, double d2, float f) { GL11.glPushMatrix(); GL11.glTranslatef((float)d0 + 0.5F, (float)d1 + 0.5F, (float)d2 + 0.5F); FMLClientHandler.instance().getClient().renderEngine.bindTexture(new ResourceLocation("brickcraft", "/textures/blocks/poseblock.png")); TileEntity front = tileentity.worldObj.getBlockTileEntity(tileentity.xCoord, tileentity.yCoord, tileentity.zCoord + 1); TileEntity back = tileentity.worldObj.getBlockTileEntity(tileentity.xCoord, tileentity.yCoord, tileentity.zCoord - 1); TileEntity top = tileentity.worldObj.getBlockTileEntity(tileentity.xCoord, tileentity.yCoord + 1, tileentity.zCoord); TileEntity bottom = tileentity.worldObj.getBlockTileEntity(tileentity.xCoord, tileentity.yCoord - 1, tileentity.zCoord); TileEntity left = tileentity.worldObj.getBlockTileEntity(tileentity.xCoord - 1, tileentity.yCoord, tileentity.zCoord); TileEntity right = tileentity.worldObj.getBlockTileEntity(tileentity.xCoord + 1, tileentity.yCoord, tileentity.zCoord); model.renderPart("Middle"); if (front instanceof IElectric) { model.renderPart("Front"); } if (back instanceof IElectric) { model.renderPart("Back"); } if (top instanceof IElectric) { model.renderPart("Top"); } if (bottom instanceof IElectric) { model.renderPart("Bottom"); } if (left instanceof IElectric) { model.renderPart("Left"); } if (right instanceof IElectric) { model.renderPart("Right"); } GL11.glPopMatrix(); } } I wonder why so many people are using ISBRHs instead of TESRs. They're much easier to use especially with a .obj. ss7 Just wondering about this IElectric thing as i have not used it, and is it necessary to have it on my blocks and cable that i want to connect the cable to?
November 24, 201311 yr Just wondering about this IElectric thing as i have not used it, and is it necessary to have it on my blocks and cable that i want to connect the cable to? Actually it could be every tileentity object. That line just checks if it the other tileentities are the same as itself. Because your tileentity which gets rendered als must be an instance of your cable block object. Look up instanceof on Google, you will find out. I am fairly new to Java and modding, so my answers are not always 100% correct. Sorry for that!
November 24, 201311 yr Hello, No, that IElectric is not important. All my electric TileEntitys are implementing this, so that my cable connects to them. @diesieben07 Is there a way to render an .obj with a ISBRH? ss7 You sir are a god damn hero.
November 24, 201311 yr Author Hello, No, that IElectric is not important. All my electric TileEntitys are implementing this, so that my cable connects to them. @diesieben07 Is there a way to render an .obj with a ISBRH? ss7 is there anything in your IElectric interface or is it empty, so it is just being used as a way of determining if they should connect to it?
November 24, 201311 yr Author I have made my .obj and how would i call this in my block as i am new to this type of thing?
November 26, 201311 yr Hello, No, you can leave your IElectric empty. You have your TESR now, right? So you insert this in your Blocks class: @Override public boolean renderAsNormalBlock() { return false; } @Override public boolean isOpaqueCube() { return false; } @Override public int getRenderType() { return -1; } Now you need to register your TESR in your ClientProxy: ClientRegistry.bindTileEntitySpecialRenderer(YourTileEntity.class, new YourTESR()); Hope that helped! ss7 You sir are a god damn hero.
November 26, 201311 yr Author Hello, No, you can leave your IElectric empty. You have your TESR now, right? So you insert this in your Blocks class: @Override public boolean renderAsNormalBlock() { return false; } @Override public boolean isOpaqueCube() { return false; } @Override public int getRenderType() { return -1; } Now you need to register your TESR in your ClientProxy: ClientRegistry.bindTileEntitySpecialRenderer(YourTileEntity.class, new YourTESR()); Hope that helped! ss7 Ok, i have made my model in blender, adn i have got the .obj, ow i have done everything you have said but i get a null pointer expetion at model = AdvancedModelLoader.loadModel("/assets/elementalsmod/textures/ModelWire.obj"); which is the line im using to load my model, any ideas?
November 28, 201311 yr Hello, You need to post the WHOLE crash log. Maybe you should check "Triangulate Faces" when you export you OBJ in Blender. ss7 You sir are a god damn hero.
November 28, 201311 yr Author Hello, You need to post the WHOLE crash log. Maybe you should check "Triangulate Faces" when you export you OBJ in Blender. ss7 Ok, i have done that and it still does this: Nov 28, 2013 4:31:32 PM net.minecraft.launchwrapper.LogWrapper log INFO: Loading tweak class name cpw.mods.fml.common.launcher.FMLTweaker Nov 28, 2013 4:31:32 PM net.minecraft.launchwrapper.LogWrapper log INFO: Using primary tweak class name cpw.mods.fml.common.launcher.FMLTweaker Nov 28, 2013 4:31:32 PM net.minecraft.launchwrapper.LogWrapper log INFO: Calling tweak class cpw.mods.fml.common.launcher.FMLTweaker 2013-11-28 16:31:32 [iNFO] [ForgeModLoader] Forge Mod Loader version 6.4.20.916 for Minecraft 1.6.4 loading 2013-11-28 16:31:32 [iNFO] [ForgeModLoader] Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0-ea, running on Windows 7:amd64:6.1, installed at C:\Program Files\Java\jre8 2013-11-28 16:31:32 [iNFO] [ForgeModLoader] Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation 2013-11-28 16:31:32 [iNFO] [sTDOUT] Loaded 40 rules from AccessTransformer config file fml_at.cfg 2013-11-28 16:31:32 [iNFO] [sTDOUT] Loaded 109 rules from AccessTransformer config file forge_at.cfg 2013-11-28 16:31:32 [sEVERE] [ForgeModLoader] The binary patch set is missing. Either you are in a development environment, or things are not going to work! 2013-11-28 16:31:33 [iNFO] [ForgeModLoader] Loading tweak class name cpw.mods.fml.common.launcher.FMLDeobfTweaker 2013-11-28 16:31:33 [iNFO] [ForgeModLoader] Calling tweak class cpw.mods.fml.common.launcher.FMLDeobfTweaker 2013-11-28 16:31:33 [iNFO] [ForgeModLoader] Launching wrapped minecraft {net.minecraft.client.main.Main} 2013-11-28 16:31:33 [iNFO] [Minecraft-Client] Setting user: Player84 2013-11-28 16:31:33 [iNFO] [Minecraft-Client] (Session ID is null) 2013-11-28 16:31:34 [iNFO] [Minecraft-Client] LWJGL Version: 2.9.0 2013-11-28 16:31:34 [iNFO] [sTDERR] javax.imageio.IIOException: Can't read input file! 2013-11-28 16:31:34 [iNFO] [sTDERR] at javax.imageio.ImageIO.read(Unknown Source) 2013-11-28 16:31:34 [iNFO] [sTDERR] at net.minecraft.client.Minecraft.readImage(Minecraft.java:557) 2013-11-28 16:31:34 [iNFO] [sTDERR] at net.minecraft.client.Minecraft.startGame(Minecraft.java:419) 2013-11-28 16:31:34 [iNFO] [sTDERR] at net.minecraft.client.Minecraft.run(Minecraft.java:807) 2013-11-28 16:31:34 [iNFO] [sTDERR] at net.minecraft.client.main.Main.main(Main.java:93) 2013-11-28 16:31:34 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 2013-11-28 16:31:34 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) 2013-11-28 16:31:34 [iNFO] [sTDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) 2013-11-28 16:31:34 [iNFO] [sTDERR] at java.lang.reflect.Method.invoke(Unknown Source) 2013-11-28 16:31:34 [iNFO] [sTDERR] at net.minecraft.launchwrapper.Launch.launch(Launch.java:131) 2013-11-28 16:31:34 [iNFO] [sTDERR] at net.minecraft.launchwrapper.Launch.main(Launch.java:27) 2013-11-28 16:31:35 [iNFO] [Minecraft-Client] Reloading ResourceManager: Default 2013-11-28 16:31:35 [iNFO] [sTDOUT] 2013-11-28 16:31:35 [iNFO] [sTDOUT] Starting up SoundSystem... 2013-11-28 16:31:35 [iNFO] [sTDOUT] Initializing LWJGL OpenAL 2013-11-28 16:31:35 [iNFO] [sTDOUT] (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) 2013-11-28 16:31:35 [iNFO] [MinecraftForge] Attempting early MinecraftForge initialization 2013-11-28 16:31:35 [iNFO] [sTDOUT] MinecraftForge v9.11.1.916 Initialized 2013-11-28 16:31:35 [iNFO] [ForgeModLoader] MinecraftForge v9.11.1.916 Initialized 2013-11-28 16:31:35 [iNFO] [sTDOUT] Replaced 101 ore recipies 2013-11-28 16:31:35 [iNFO] [MinecraftForge] Completed early MinecraftForge initialization 2013-11-28 16:31:35 [iNFO] [ForgeModLoader] Reading custom logging properties from C:\Users\User\Documents\Minecraft Projects\forge\mcp\jars\config\logging.properties 2013-11-28 16:31:35 [OFF] [ForgeModLoader] Logging level for ForgeModLoader logging is set to ALL 2013-11-28 16:31:35 [iNFO] [ForgeModLoader] Searching C:\Users\User\Documents\Minecraft Projects\forge\mcp\jars\mods for mods 2013-11-28 16:31:35 [iNFO] [sTDOUT] OpenAL initialized. 2013-11-28 16:31:36 [iNFO] [sTDOUT] 2013-11-28 16:31:37 [iNFO] [ForgeModLoader] Forge Mod Loader has identified 4 mods to load 2013-11-28 16:31:37 [iNFO] [mcp] Activating mod mcp 2013-11-28 16:31:37 [iNFO] [FML] Activating mod FML 2013-11-28 16:31:37 [iNFO] [Forge] Activating mod Forge 2013-11-28 16:31:37 [iNFO] [elementalsmod] Activating mod elementalsmod 2013-11-28 16:31:37 [WARNING] [Forge Mod Loader] Mod Forge Mod Loader is missing a pack.mcmeta file, things may not work well 2013-11-28 16:31:37 [WARNING] [Minecraft Forge] Mod Minecraft Forge is missing a pack.mcmeta file, things may not work well 2013-11-28 16:31:37 [WARNING] [Elementals Mod] Mod Elementals Mod is missing a pack.mcmeta file, things may not work well 2013-11-28 16:31:37 [iNFO] [Minecraft-Client] Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Elementals Mod 2013-11-28 16:31:37 [iNFO] [sTDOUT] 2013-11-28 16:31:37 [iNFO] [sTDOUT] SoundSystem shutting down... 2013-11-28 16:31:37 [iNFO] [sTDOUT] Author: Paul Lamb, www.paulscode.com 2013-11-28 16:31:37 [iNFO] [sTDOUT] 2013-11-28 16:31:37 [iNFO] [sTDOUT] 2013-11-28 16:31:37 [iNFO] [sTDOUT] Starting up SoundSystem... 2013-11-28 16:31:37 [iNFO] [ForgeModLoader] Registering Forge Packet Handler 2013-11-28 16:31:37 [iNFO] [ForgeModLoader] Succeeded registering Forge Packet Handler 2013-11-28 16:31:38 [iNFO] [ForgeModLoader] Configured a dormant chunk cache size of 0 2013-11-28 16:31:38 [sEVERE] [ForgeModLoader] Fatal errors were detected during the transition from PREINITIALIZATION to INITIALIZATION. Loading cannot continue 2013-11-28 16:31:38 [sEVERE] [ForgeModLoader] mcp{8.09} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized FML{6.4.20.916} [Forge Mod Loader] (bin) Unloaded->Constructed->Pre-initialized Forge{9.11.1.916} [Minecraft Forge] (bin) Unloaded->Constructed->Pre-initialized elementalsmod{0.1} [Elementals Mod] (bin) Unloaded->Constructed->Errored 2013-11-28 16:31:38 [sEVERE] [ForgeModLoader] The following problems were captured during this phase 2013-11-28 16:31:38 [sEVERE] [ForgeModLoader] Caught exception from elementalsmod net.minecraftforge.client.model.ModelFormatException: Error parsing entry ('o Front_Front_Cube.004', line 4) in file '/assets/elementalsmod/textures/models/cable.obj' - Incorrect format at net.minecraftforge.client.model.obj.WavefrontObject.parseGroupObject(WavefrontObject.java:501) at net.minecraftforge.client.model.obj.WavefrontObject.loadObjModel(WavefrontObject.java:130) at net.minecraftforge.client.model.obj.WavefrontObject.<init>(WavefrontObject.java:55) at net.minecraftforge.client.model.obj.ObjModelLoader.loadInstance(ObjModelLoader.java:28) at net.minecraftforge.client.model.AdvancedModelLoader.loadModel(AdvancedModelLoader.java:70) at ElementalsMod.Render.CableTileEntitySpecialRenderer.<init>(CableTileEntitySpecialRenderer.java:20) at ElementalsMod.Core.ClientProxy.registerRenderThings(ClientProxy.java:14) at ElementalsMod.Core.ElementalsMod.preInit(ElementalsMod.java:278) 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 cpw.mods.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:545) 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 com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74) at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45) at com.google.common.eventbus.EventBus.dispatch(EventBus.java:313) at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296) at com.google.common.eventbus.EventBus.post(EventBus.java:267) at cpw.mods.fml.common.LoadController.sendEventToModContainer(LoadController.java:194) at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:174) 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 com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74) at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45) at com.google.common.eventbus.EventBus.dispatch(EventBus.java:313) at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296) at com.google.common.eventbus.EventBus.post(EventBus.java:267) at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:105) at cpw.mods.fml.common.Loader.loadMods(Loader.java:520) at cpw.mods.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:183) at net.minecraft.client.Minecraft.startGame(Minecraft.java:472) at net.minecraft.client.Minecraft.run(Minecraft.java:807) at net.minecraft.client.main.Main.main(Main.java:93) 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:131) at net.minecraft.launchwrapper.Launch.main(Launch.java:27) 2013-11-28 16:31:38 [iNFO] [sTDOUT] ---- Minecraft Crash Report ---- 2013-11-28 16:31:38 [iNFO] [sTDOUT] // On the bright side, I bought you a teddy bear! 2013-11-28 16:31:38 [iNFO] [sTDOUT] 2013-11-28 16:31:38 [iNFO] [sTDOUT] Time: 28/11/13 16:31 2013-11-28 16:31:38 [iNFO] [sTDOUT] Description: Initializing game 2013-11-28 16:31:38 [iNFO] [sTDOUT] 2013-11-28 16:31:38 [iNFO] [sTDOUT] net.minecraftforge.client.model.ModelFormatException: Error parsing entry ('o Front_Front_Cube.004', line 4) in file '/assets/elementalsmod/textures/models/cable.obj' - Incorrect format 2013-11-28 16:31:38 [iNFO] [sTDOUT] at net.minecraftforge.client.model.obj.WavefrontObject.parseGroupObject(WavefrontObject.java:501) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at net.minecraftforge.client.model.obj.WavefrontObject.loadObjModel(WavefrontObject.java:130) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at net.minecraftforge.client.model.obj.WavefrontObject.<init>(WavefrontObject.java:55) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at net.minecraftforge.client.model.obj.ObjModelLoader.loadInstance(ObjModelLoader.java:28) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at net.minecraftforge.client.model.AdvancedModelLoader.loadModel(AdvancedModelLoader.java:70) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at ElementalsMod.Render.CableTileEntitySpecialRenderer.<init>(CableTileEntitySpecialRenderer.java:20) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at ElementalsMod.Core.ClientProxy.registerRenderThings(ClientProxy.java:14) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at ElementalsMod.Core.ElementalsMod.preInit(ElementalsMod.java:278) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at java.lang.reflect.Method.invoke(Unknown Source) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at cpw.mods.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:545) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at java.lang.reflect.Method.invoke(Unknown Source) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at com.google.common.eventbus.EventBus.dispatch(EventBus.java:313) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at com.google.common.eventbus.EventBus.post(EventBus.java:267) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at cpw.mods.fml.common.LoadController.sendEventToModContainer(LoadController.java:194) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:174) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at java.lang.reflect.Method.invoke(Unknown Source) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at com.google.common.eventbus.EventBus.dispatch(EventBus.java:313) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at com.google.common.eventbus.EventBus.post(EventBus.java:267) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:105) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at cpw.mods.fml.common.Loader.loadMods(Loader.java:520) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at cpw.mods.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:183) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at net.minecraft.client.Minecraft.startGame(Minecraft.java:472) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at net.minecraft.client.Minecraft.run(Minecraft.java:807) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at net.minecraft.client.main.Main.main(Main.java:93) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at java.lang.reflect.Method.invoke(Unknown Source) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at net.minecraft.launchwrapper.Launch.launch(Launch.java:131) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at net.minecraft.launchwrapper.Launch.main(Launch.java:27) 2013-11-28 16:31:38 [iNFO] [sTDOUT] 2013-11-28 16:31:38 [iNFO] [sTDOUT] 2013-11-28 16:31:38 [iNFO] [sTDOUT] A detailed walkthrough of the error, its code path and all known details is as follows: 2013-11-28 16:31:38 [iNFO] [sTDOUT] --------------------------------------------------------------------------------------- 2013-11-28 16:31:38 [iNFO] [sTDOUT] 2013-11-28 16:31:38 [iNFO] [sTDOUT] -- Head -- 2013-11-28 16:31:38 [iNFO] [sTDOUT] Stacktrace: 2013-11-28 16:31:38 [iNFO] [sTDOUT] at net.minecraftforge.client.model.obj.WavefrontObject.parseGroupObject(WavefrontObject.java:501) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at net.minecraftforge.client.model.obj.WavefrontObject.loadObjModel(WavefrontObject.java:130) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at net.minecraftforge.client.model.obj.WavefrontObject.<init>(WavefrontObject.java:55) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at net.minecraftforge.client.model.obj.ObjModelLoader.loadInstance(ObjModelLoader.java:28) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at net.minecraftforge.client.model.AdvancedModelLoader.loadModel(AdvancedModelLoader.java:70) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at ElementalsMod.Render.CableTileEntitySpecialRenderer.<init>(CableTileEntitySpecialRenderer.java:20) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at ElementalsMod.Core.ClientProxy.registerRenderThings(ClientProxy.java:14) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at ElementalsMod.Core.ElementalsMod.preInit(ElementalsMod.java:278) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at java.lang.reflect.Method.invoke(Unknown Source) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at cpw.mods.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:545) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at java.lang.reflect.Method.invoke(Unknown Source) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at com.google.common.eventbus.EventBus.dispatch(EventBus.java:313) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at com.google.common.eventbus.EventBus.post(EventBus.java:267) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at cpw.mods.fml.common.LoadController.sendEventToModContainer(LoadController.java:194) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:174) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at java.lang.reflect.Method.invoke(Unknown Source) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at com.google.common.eventbus.EventBus.dispatch(EventBus.java:313) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at com.google.common.eventbus.EventBus.post(EventBus.java:267) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:105) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at cpw.mods.fml.common.Loader.loadMods(Loader.java:520) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at cpw.mods.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:183) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at net.minecraft.client.Minecraft.startGame(Minecraft.java:472) 2013-11-28 16:31:38 [iNFO] [sTDOUT] 2013-11-28 16:31:38 [iNFO] [sTDOUT] -- Initialization -- 2013-11-28 16:31:38 [iNFO] [sTDOUT] Details: 2013-11-28 16:31:38 [iNFO] [sTDOUT] Stacktrace: 2013-11-28 16:31:38 [iNFO] [sTDOUT] at net.minecraft.client.Minecraft.run(Minecraft.java:807) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at net.minecraft.client.main.Main.main(Main.java:93) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at java.lang.reflect.Method.invoke(Unknown Source) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at net.minecraft.launchwrapper.Launch.launch(Launch.java:131) 2013-11-28 16:31:38 [iNFO] [sTDOUT] at net.minecraft.launchwrapper.Launch.main(Launch.java:27) 2013-11-28 16:31:38 [iNFO] [sTDOUT] 2013-11-28 16:31:38 [iNFO] [sTDOUT] -- System Details -- 2013-11-28 16:31:38 [iNFO] [sTDOUT] Details: 2013-11-28 16:31:38 [iNFO] [sTDOUT] Minecraft Version: 1.6.4 2013-11-28 16:31:38 [iNFO] [sTDOUT] Operating System: Windows 7 (amd64) version 6.1 2013-11-28 16:31:38 [iNFO] [sTDOUT] Java Version: 1.8.0-ea, Oracle Corporation 2013-11-28 16:31:38 [iNFO] [sTDOUT] Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation 2013-11-28 16:31:38 [iNFO] [sTDOUT] Memory: 769033624 bytes (733 MB) / 1038876672 bytes (990 MB) up to 1038876672 bytes (990 MB) 2013-11-28 16:31:38 [iNFO] [sTDOUT] JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M 2013-11-28 16:31:38 [iNFO] [sTDOUT] AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used 2013-11-28 16:31:38 [iNFO] [sTDOUT] Suspicious classes: FML and Forge are installed 2013-11-28 16:31:38 [iNFO] [sTDOUT] IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0 2013-11-28 16:31:38 [iNFO] [sTDOUT] FML: MCP v8.11 FML v6.4.20.916 Minecraft Forge 9.11.1.916 4 mods loaded, 4 mods active 2013-11-28 16:31:38 [iNFO] [sTDOUT] mcp{8.09} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized 2013-11-28 16:31:38 [iNFO] [sTDOUT] FML{6.4.20.916} [Forge Mod Loader] (bin) Unloaded->Constructed->Pre-initialized 2013-11-28 16:31:38 [iNFO] [sTDOUT] Forge{9.11.1.916} [Minecraft Forge] (bin) Unloaded->Constructed->Pre-initialized 2013-11-28 16:31:38 [iNFO] [sTDOUT] elementalsmod{0.1} [Elementals Mod] (bin) Unloaded->Constructed->Errored 2013-11-28 16:31:38 [iNFO] [sTDOUT] Launched Version: 1.6 2013-11-28 16:31:38 [iNFO] [sTDOUT] LWJGL: 2.9.0 2013-11-28 16:31:38 [iNFO] [sTDOUT] OpenGL: GeForce GT 240/PCIe/SSE2 GL version 3.3.0, NVIDIA Corporation 2013-11-28 16:31:38 [iNFO] [sTDOUT] Is Modded: Definitely; Client brand changed to 'fml,forge' 2013-11-28 16:31:38 [iNFO] [sTDOUT] Type: Client (map_client.txt) 2013-11-28 16:31:38 [iNFO] [sTDOUT] Resource Pack: Default 2013-11-28 16:31:38 [iNFO] [sTDOUT] Current Language: English (US) 2013-11-28 16:31:38 [iNFO] [sTDOUT] Profiler Position: N/A (disabled) 2013-11-28 16:31:38 [iNFO] [sTDOUT] Vec3 Pool Size: ~~ERROR~~ NullPointerException: null 2013-11-28 16:31:38 [iNFO] [sTDOUT] #@!@# Game crashed! Crash report saved to: #@!@# C:\Users\User\Documents\Minecraft Projects\forge\mcp\jars\.\crash-reports\crash-2013-11-28_16.31.38-client.txt Java HotSpot(TM) 64-Bit Server VM warning: Using incremental CMS is deprecated and will likely be removed in a future release
November 28, 201311 yr Hello, You have to remove all the dots from the names of your cubes in blender. ss7 You sir are a god damn hero.
November 29, 201311 yr Hello, Can you post a screenshot of your cable? I would really like to see it working! BTW: Have you noticed the "Thank You" button? ss7 You sir are a god damn hero.
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.