Jump to content

Recommended Posts

Posted

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.

Posted

Hello,

 

You can also use a TESR and a .obj to render it. I made a screenshot of my cable for you:

 

Cable.png

 

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.

Posted

Hello,

 

You can also use a TESR and a .obj to render it. I made a screenshot of my cable for you:

 

Cable.png

 

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?

Posted

 

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!

Posted

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.

Posted

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?

Posted

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.

Posted

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?

Posted

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.

Posted

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

Posted

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.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • After removing shieldexpansion it wont let me join the server because it's included in the server's modpack. is there a way to bypass that?  
    • Getting this, been trying to comb thru but cant seem to find the error... [13:11:35] [main/INFO]: Loading 169 mods:     - ad_astra 1.15.19     - ae2 15.3.3     - aether 1.20.1-1.5.2-neoforge         |-- cumulus_menus 1.20.1-1.0.1-neoforge         \-- nitrogen_internals 1.20.1-1.0.12-neoforge     - aiimprovements 0.5.2     - alexsmobs 1.22.9     - almostunified 1.20.1-0.9.4     - appleskin 2.5.1+mc1.20.1     - architectury 9.2.14     - athena 3.1.2     - bellsandwhistles 0.4.3-1.20.x     - betterchunkloading 1.20.1-5.3     - betterdeserttemples 1.20-Forge-3.0.3     - betterdungeons 1.20-Forge-4.0.4     - betterendisland 1.20-Forge-2.0.6     - betterfortresses 1.20-Forge-2.0.6     - betterjungletemples 1.20-Forge-2.0.5     - bettermineshafts 1.20-Forge-4.0.4     - betteroceanmonuments 1.20-Forge-3.0.4     - betterstrongholds 1.20-Forge-4.0.3     - bettervillage 3.2.0     - betterwitchhuts 1.20-Forge-3.0.3     - bookshelf 20.2.13     - botanypots 13.0.40     - botarium 2.3.4     - canary 0.3.3     - carryon 2.1.2.7     - cgm 1.4.18     - chipped 3.0.7     - chunkloaders 1.2.8a     - citadel 2.6.1     - cofh_core 11.0.2     - comforts 6.4.0+1.20.1         \-- spectrelib 0.13.15+1.20.1     - copycats 2.2.0+mc.1.20.1-forge     - corpse 1.20.1-1.0.20     - create 0.5.1.j         \-- flywheel 0.6.11-13     - create_better_motors 1.1.0     - create_bic_bit 0.0.86     - create_central_kitchen 1.3.12         \-- create_dragon_lib 1.4.3     - create_confectionery 1.1.0     - create_connected 0.9.4-mc1.20.1     - create_copper_and_zinc 1.6.0     - create_crush_everything 1.0.2     - create_dd 0.1b.Release-Early-Dev     - create_enchantment_industry 1.2.9.d     - create_eureka 1.0.0+forge-1.20.1     - create_extra_casing 0.0.2     - create_factory 0.4b-1.20.1     - create_ltab_f 2.5.0     - create_mechanical_extruder 1.20.1-1.6.3.j-55     - create_new_age 1.1.2     - create_pillagers_arise 116.26.     - create_power_loader 1.5.0-mc1.20.1     - create_questing 1.0.0     - create_sa 2.0.8     - create_ultimate_factory 1.9.0     - createaddoncompatibility 0.2.2b     - createbigcannons 5.8.2         \-- ritchiesprojectilelib 2.0.0-dev+mc.1.20.1-forge-build.182     - createcasing 1.20.1-1.6.2-fix1     - createdieselgenerators 1.20.1-1.2i     - createloveandwar 0.4-1.20.1     - createmobeggs 2.0.1     - createoreexcavation 1.5.3     - createutilities 0.3.0+1.20.1     - crittersandcompanions 2.2.2     - crystal_clear 2.1-Beta     - cupboard 1.20.1-2.7     - curios 5.11.1+1.20.1     - diagonalfences 8.1.5         \-- diagonalblocks 8.0.6     - domum_ornamentum 1.20.1-1.0.284-snapshot     - duckling 3.0.0     - dungeons_arise 2.1.58-1.20.x     - dungeons_arise_seven_seas 1.0.2     - extendedgears 2.1.1-1.20.1-0.5.1.f-forge     - fallingleaves 2.1.0     - fallingtree 4.3.4     - farmersdelight 1.20.1-1.2.7     - fastasyncworldsave 1.20.1-2.3     - ferritecore 6.0.1     - flansmod 0.4         \-- flansphysics 0.4     - forge 47.3.0     - framedblocks 9.3.1     - framework 0.7.12     - ftblibrary 2001.2.9     - ftbquests 2001.4.11     - ftbteams 2001.3.1     - ftbxmodcompat 2.1.2     - fusion 1.2.4     - garnished 2.0.7     - geckolib 4.7     - goblintraders 1.9.3     - gpumemleakfix 1.20.1-1.8     - handcrafted 3.0.6     - interiors 0.5.6     - irisflw 1.1.2     - jade 11.12.3+forge     - jei 15.20.0.106     - kitchen_grow 0.1-1.20.1     - kotlinforforge 4.11.0     - leaky 1.20.1-2.1     - libraryferret 4.0.0     - lmft 1.0.4+1.20.1     - minecraft 1.20.1     - missions 0.4.2     - modernfix 5.20.2+mc1.20.1         \-- mixinextras 0.4.1     - moderntrainparts 0.1.7-forge-mc1.20.1-cr0.5.1.f     - molten_vents 2.0.9     - moonlight 1.20-2.13.62     - moped 1.0.0     - mr_warp_portals 1.4.0     - necronomicon 1.6.0     - numismatics 1.0.7+forge-mc1.20.1     - oculus 1.8.0     - puzzleslib 8.1.25         \-- puzzlesaccessapi 8.0.7     - quark 4.0-460     - railways 1.6.7+forge-mc1.20.1     - rechiseled 1.1.6     - rechiseledcreate 1.0.2     - resourcefulconfig 2.1.2     - resourcefullib 2.1.29     - ribbits 1.20.1-Forge-3.0.4     - rightclickharvest 3.2.3+1.20.1-forge     - simpleclouds 0.6.3+1.20.1-forge         \-- crackerslib 1.20.1-0.4.4     - skinlayers3d 1.7.4     - smoothchunk 1.20.1-4.0     - sophisticatedbackpacks 3.23.4.1196     - sophisticatedcore 1.2.9.867     - storagedrawers 12.9.13     - supermartijn642configlib 1.1.8     - supermartijn642corelib 1.1.18     - supplementaries 1.20-3.1.13         \-- mixinsquared 0.1.1     - tectonic 2.4.1     - terrablender 3.0.1.7     - terralith 2.5.4     - tfmg 0.9.3-1.20.1     - thermal_cultivation 11.0.1     - thermal_dynamics 11.0.1     - thermal_expansion 11.0.1     - thermal_foundation 11.0.6         \-- thermal 11.0.6     - thermal_innovation 11.0.1     - thermal_integration 11.0.1     - torchmaster 20.1.9     - trackwork 1.1.1b     - trashcans 1.0.18b     - travelersbackpack 9.1.16     - twilightforest 4.3.2508     - valkyrienskies 2.3.0-beta.5         \-- cloth_config 11.1.106     - vinery 1.4.38     - vs_clockwork 1.20.1-0.1.16-forge-b3b22e39fe     - vs_eureka 1.5.1-beta.3     - worldedit 7.2.15+6463-5ca4dff     - xaerominimap 25.0.0     - xaeroworldmap 1.39.2     - yungsapi 1.20-Forge-4.0.6     - yungsbridges 1.20-Forge-4.0.3     - yungsextras 1.20-Forge-4.0.3     - zeta 1.0-24 [13:11:35] [main/WARN]: Reference map 'create_eureka-common-refmap.json' for create_eureka-common.mixins.json could not be read. If this is a development environment you can ignore this message [13:11:35] [main/WARN]: Reference map 'eureka-1201-forge-refmap.json' for vs_eureka.mixins.json could not be read. If this is a development environment you can ignore this message [13:11:35] [main/WARN]: Reference map 'createmechanicalextruder.refmap.json' for create_mechanical_extruder.mixins.json could not be read. If this is a development environment you can ignore this message [13:11:35] [main/WARN]: Reference map 'mixins.trackwork.refmap.json' for trackwork.mixins.json could not be read. If this is a development environment you can ignore this message [13:11:35] [main/WARN]: Reference map 'tfmg.refmap.json' for tfmg.mixins.json could not be read. If this is a development environment you can ignore this message [13:11:35] [main/WARN]: Reference map 'Create_The_Kitchen_Must_Grow.refmap.json' for kitchen_grow.mixins.json could not be read. If this is a development environment you can ignore this message [13:11:36] [main/WARN]: Error loading class: mekanism/client/render/entity/RenderFlame (java.lang.ClassNotFoundException: mekanism.client.render.entity.RenderFlame) [13:11:36] [main/WARN]: Error loading class: mekanism/client/render/armor/MekaSuitArmor (java.lang.ClassNotFoundException: mekanism.client.render.armor.MekaSuitArmor) [13:11:36] [main/WARN]: Error loading class: xyz/przemyk/simpleplanes/upgrades/shooter/ShooterUpgrade (java.lang.ClassNotFoundException: xyz.przemyk.simpleplanes.upgrades.shooter.ShooterUpgrade) [13:11:36] [main/WARN]: @Mixin target xyz.przemyk.simpleplanes.upgrades.shooter.ShooterUpgrade was not found cgm.mixins.json:common.simpleplanes.ShooterUpgradeMixin [13:11:36] [main/WARN]: Error loading class: com/jamieswhiteshirt/reachentityattributes/ReachEntityAttributes (java.lang.ClassNotFoundException: com.jamieswhiteshirt.reachentityattributes.ReachEntityAttributes) [13:11:36] [main/WARN]: Error loading class: com/sonicether/soundphysics/SoundPhysics (java.lang.ClassNotFoundException: com.sonicether.soundphysics.SoundPhysics) [13:11:36] [main/WARN]: Error loading class: blusunrize/immersiveengineering/common/gui/BlockEntityInventory (java.lang.ClassNotFoundException: blusunrize.immersiveengineering.common.gui.BlockEntityInventory) [13:11:36] [main/WARN]: Error loading class: net/dries007/tfc/world/TFCChunkGenerator (java.lang.ClassNotFoundException: net.dries007.tfc.world.TFCChunkGenerator) [13:11:36] [main/WARN]: Error loading class: cofh/core/block/entity/TileCoFH (java.lang.ClassNotFoundException: cofh.core.block.entity.TileCoFH) [13:11:36] [main/WARN]: Error loading class: li/cil/tis3d/common/entity/InfraredPacketEntity (java.lang.ClassNotFoundException: li.cil.tis3d.common.entity.InfraredPacketEntity) [13:11:36] [main/WARN]: Error loading class: me/desht/modularrouters/container/RouterMenu (java.lang.ClassNotFoundException: me.desht.modularrouters.container.RouterMenu) [13:11:36] [main/WARN]: Error loading class: me/jellysquid/mods/sodium/client/render/chunk/RenderSectionManager (java.lang.ClassNotFoundException: me.jellysquid.mods.sodium.client.render.chunk.RenderSectionManager) [13:11:36] [main/WARN]: @Mixin target me.jellysquid.mods.sodium.client.render.chunk.RenderSectionManager was not found valkyrienskies-forge.mixins.json:compat.sodium.MixinRenderSectionManager [13:11:36] [main/WARN]: Error loading class: li/cil/tis3d/client/renderer/block/entity/CasingBlockEntityRenderer (java.lang.ClassNotFoundException: li.cil.tis3d.client.renderer.block.entity.CasingBlockEntityRenderer) [13:11:36] [main/WARN]: Error loading class: li/cil/tis3d/client/renderer/RenderContextImpl (java.lang.ClassNotFoundException: li.cil.tis3d.client.renderer.RenderContextImpl) [13:11:37] [main/WARN]: Error loading class: me/jellysquid/mods/lithium/common/ai/pathing/PathNodeDefaults (java.lang.ClassNotFoundException: me.jellysquid.mods.lithium.common.ai.pathing.PathNodeDefaults) [13:11:37] [main/WARN]: Error loading class: noobanidus/mods/lootr/config/ConfigManager (java.lang.ClassNotFoundException: noobanidus.mods.lootr.config.ConfigManager) [13:11:37] [main/WARN]: Error loading class: me/jellysquid/mods/sodium/client/render/chunk/compile/pipeline/FluidRenderer (java.lang.ClassNotFoundException: me.jellysquid.mods.sodium.client.render.chunk.compile.pipeline.FluidRenderer) [13:11:37] [main/WARN]: Error loading class: net/raphimc/immediatelyfast/feature/map_atlas_generation/MapAtlasTexture (java.lang.ClassNotFoundException: net.raphimc.immediatelyfast.feature.map_atlas_generation.MapAtlasTexture) [13:11:37] [main/WARN]: Error loading class: dan200/computercraft/shared/integration/MoreRedIntegration (java.lang.ClassNotFoundException: dan200.computercraft.shared.integration.MoreRedIntegration) [13:11:37] [main/WARN]: @Mixin target dan200.computercraft.shared.integration.MoreRedIntegration was not found create_central_kitchen.mixins.json:common.computercraft.MoreRedIntegrationMixin [13:11:37] [main/WARN]: Error loading class: com/sammy/minersdelight/content/block/copper_pot/CopperPotBlockEntity (java.lang.ClassNotFoundException: com.sammy.minersdelight.content.block.copper_pot.CopperPotBlockEntity) [13:11:37] [main/WARN]: @Mixin target com.sammy.minersdelight.content.block.copper_pot.CopperPotBlockEntity was not found create_central_kitchen.mixins.json:common.minersdelight.CopperPotBlockEntityMixin [13:11:37] [main/WARN]: Error loading class: com/sammy/minersdelight/content/block/sticky_basket/StickyBasketBlockEntity (java.lang.ClassNotFoundException: com.sammy.minersdelight.content.block.sticky_basket.StickyBasketBlockEntity) [13:11:37] [main/WARN]: @Mixin target com.sammy.minersdelight.content.block.sticky_basket.StickyBasketBlockEntity was not found create_central_kitchen.mixins.json:common.minersdelight.StickyBasketBlockEntityAccessor [13:11:37] [main/WARN]: Error loading class: com/sammy/minersdelight/content/block/sticky_basket/StickyBasketBlockEntity (java.lang.ClassNotFoundException: com.sammy.minersdelight.content.block.sticky_basket.StickyBasketBlockEntity) [13:11:37] [main/WARN]: @Mixin target com.sammy.minersdelight.content.block.sticky_basket.StickyBasketBlockEntity was not found create_central_kitchen.mixins.json:common.minersdelight.StickyBasketBlockEntityMixin [13:11:37] [main/WARN]: Error loading class: net/orcinus/overweightfarming/blocks/CropFullBlock (java.lang.ClassNotFoundException: net.orcinus.overweightfarming.blocks.CropFullBlock) [13:11:37] [main/WARN]: @Mixin target net.orcinus.overweightfarming.blocks.CropFullBlock was not found create_central_kitchen.mixins.json:common.overweightfarming.CropFullBlockMixin [13:11:37] [main/ERROR]: valkyrienskies-common.mixins.json:feature.container_distance_check.MixinContainer: Interface mixin contains a non-public method! Found includeShipsInDistanceCheck(Lnet/minecraft/world/entity/player/Player;DDD)D in valkyrienskies-common.mixins.json:feature.container_distance_check.MixinContainer org.spongepowered.asm.mixin.transformer.throwables.InvalidInterfaceMixinException: Interface mixin contains a non-public method! Found includeShipsInDistanceCheck(Lnet/minecraft/world/entity/player/Player;DDD)D in valkyrienskies-common.mixins.json:feature.container_distance_check.MixinContainer     at org.spongepowered.asm.mixin.transformer.MixinPreProcessorInterface.prepareMethod(MixinPreProcessorInterface.java:65) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4]     at org.spongepowered.asm.mixin.transformer.MixinPreProcessorStandard.prepare(MixinPreProcessorStandard.java:187) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4]     at org.spongepowered.asm.mixin.transformer.MixinInfo$State.validate(MixinInfo.java:322) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4]     at org.spongepowered.asm.mixin.transformer.MixinInfo.validate(MixinInfo.java:913) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4]     at org.spongepowered.asm.mixin.transformer.MixinConfig.postInitialise(MixinConfig.java:801) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4]     at org.spongepowered.asm.mixin.transformer.MixinProcessor.prepareConfigs(MixinProcessor.java:567) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4]     at org.spongepowered.asm.mixin.transformer.MixinProcessor.select(MixinProcessor.java:462) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4]     at org.spongepowered.asm.mixin.transformer.MixinProcessor.checkSelect(MixinProcessor.java:438) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4]     at org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:290) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4]     at org.spongepowered.asm.mixin.transformer.MixinTransformer.transformClass(MixinTransformer.java:250) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4]     at org.spongepowered.asm.service.modlauncher.MixinTransformationHandler.processClass(MixinTransformationHandler.java:131) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4]     at org.spongepowered.asm.launch.MixinLaunchPluginLegacy.processClass(MixinLaunchPluginLegacy.java:131) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4]     at cpw.mods.modlauncher.serviceapi.ILaunchPluginService.processClassWithFlags(ILaunchPluginService.java:156) ~[modlauncher-10.0.9.jar:10.0.9+10.0.9+main.dcd20f30]     at cpw.mods.modlauncher.LaunchPluginHandler.offerClassNodeToPlugins(LaunchPluginHandler.java:88) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.ClassTransformer.transform(ClassTransformer.java:120) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.TransformingClassLoader.maybeTransformClassBytes(TransformingClassLoader.java:50) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.cl.ModuleClassLoader.readerToClass(ModuleClassLoader.java:113) ~[securejarhandler-2.1.10.jar:?]     at cpw.mods.cl.ModuleClassLoader.lambda$findClass$15(ModuleClassLoader.java:219) ~[securejarhandler-2.1.10.jar:?]     at cpw.mods.cl.ModuleClassLoader.loadFromModule(ModuleClassLoader.java:229) ~[securejarhandler-2.1.10.jar:?]     at cpw.mods.cl.ModuleClassLoader.findClass(ModuleClassLoader.java:219) ~[securejarhandler-2.1.10.jar:?]     at java.lang.ClassLoader.loadClass(ClassLoader.java:637) ~[?:?]     at java.lang.Class.forName(Class.java:545) ~[?:?]     at net.minecraftforge.fml.earlydisplay.DisplayWindow.lambda$updateModuleReads$14(DisplayWindow.java:601) ~[fmlearlydisplay-1.20.1-47.3.0.jar:1.0]     at java.util.Optional.map(Optional.java:260) ~[?:?]     at net.minecraftforge.fml.earlydisplay.DisplayWindow.updateModuleReads(DisplayWindow.java:601) ~[fmlearlydisplay-1.20.1-47.3.0.jar:1.0]     at net.minecraftforge.fml.loading.ImmediateWindowHandler.acceptGameLayer(ImmediateWindowHandler.java:71) ~[fmlloader-1.20.1-47.3.0.jar:1.0]     at net.minecraftforge.fml.loading.FMLLoader.beforeStart(FMLLoader.java:207) ~[fmlloader-1.20.1-47.3.0.jar:1.0]     at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.launchService(CommonLaunchHandler.java:92) ~[fmlloader-1.20.1-47.3.0.jar:?]     at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.Launcher.run(Launcher.java:108) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.Launcher.main(Launcher.java:78) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) ~[bootstraplauncher-1.1.2.jar:?] [13:11:37] [main/INFO]: Initializing MixinExtras via com.llamalad7.mixinextras.service.MixinExtrasServiceImpl(version=0.4.1). [13:11:39] [pool-4-thread-1/INFO]: ModernFix reached bootstrap stage (11.29 s after launch) [13:11:39] [pool-4-thread-1/WARN]: @Final field delegatesByName:Ljava/util/Map; in modernfix-forge.mixins.json:perf.forge_registry_alloc.ForgeRegistryMixin should be final [13:11:39] [pool-4-thread-1/WARN]: @Final field delegatesByValue:Ljava/util/Map; in modernfix-forge.mixins.json:perf.forge_registry_alloc.ForgeRegistryMixin should be final [13:11:39] [pool-4-thread-1/INFO]: Injecting BlockStateBase cache population hook into getNeighborPathNodeType from com.abdelaziz.canary.mixin.ai.pathing.BlockStateBaseMixin [13:11:39] [pool-4-thread-1/INFO]: Injecting BlockStateBase cache population hook into getPathNodeType from com.abdelaziz.canary.mixin.ai.pathing.BlockStateBaseMixin [13:11:39] [pool-4-thread-1/WARN]: @Inject(@At("INVOKE")) Shift.BY=1 on crittersandcompanions.mixins.json:LivingEntityMixin::handler$cjk000$onDie exceeds the maximum allowed value: 0. Increase the value of maxShiftBy to suppress this warning. [13:11:40] [pool-4-thread-1/INFO]: Vanilla bootstrap took 1231 milliseconds [13:11:42] [pool-4-thread-1/WARN]: Static binding violation: PRIVATE @Overwrite method m_47505_ in modernfix-common.mixins.json:perf.remove_biome_temperature_cache.BiomeMixin cannot reduce visibiliy of PUBLIC target method, visibility will be upgraded. [13:11:42] [Render thread/WARN]: Error loading class: net/caffeinemc/mods/sodium/api/memory/MemoryIntrinsics (java.lang.ClassNotFoundException: net.caffeinemc.mods.sodium.api.memory.MemoryIntrinsics)  
    • It could be a mod conflict or world generation issue.
    • Start with removing controllable
    • Please read the FAQ and post logs as described there.
  • Topics

×
×
  • Create New...

Important Information

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