Jump to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

SuperHB

Forge Modder
  • Joined

  • Last visited

Everything posted by SuperHB

  1. Is there a tutorial somewhere on how to do it? EDIT: Also when I walk into the custom block there is a regular block inside it. how do I get rid of it?
  2. They have fake blocks providing the colliders. When any one of the blocks involved in the multi-tile object are broken, they're all broken. so would I be able to do that for my block?
  3. That's not true? I've seen mods that have items that are larger than 3 blocks wide. that are solid, or is that only for techne blocks?
  4. oh.... my.... god.... -.- *facepalm* THANK YOU!
  5. Here is the directory of the image: http://i.imgur.com/mWwzdsM.png Here is the directory code in Eclipse: http://i.imgur.com/29dQBVX.png
  6. Colons are automatically converted to slashes when it loads textures. It's looking in "assets/dwadventure//textures" which doesn't exist (see the //?) still doesn't work... here is the log.... 2014-02-01 18:34:05 [WARNING] [Minecraft-Client] Failed to load texture: dwadventure:textures/blocks/tardisTextureRemake.png java.io.FileNotFoundException: dwadventure:textures/blocks/tardisTextureRemake.png at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:67) at net.minecraft.client.renderer.texture.SimpleTexture.loadTexture(SimpleTexture.java:31) at net.minecraft.client.renderer.texture.TextureManager.loadTexture(TextureManager.java:84) at net.minecraft.client.renderer.texture.TextureManager.bindTexture(TextureManager.java:41) at net.DoctorWhoAdventures.superhb.mod.TESR.TardisTESR.renderTileEntityAt(TardisTESR.java:36) at net.minecraft.client.renderer.tileentity.TileEntityRenderer.renderTileEntityAt(TileEntityRenderer.java:172) at net.minecraft.client.renderer.tileentity.TileEntityRenderer.renderTileEntity(TileEntityRenderer.java:157) at net.minecraft.client.renderer.RenderGlobal.renderEntities(RenderGlobal.java:536) at net.minecraft.client.renderer.EntityRenderer.renderWorld(EntityRenderer.java:1160) at net.minecraft.client.renderer.EntityRenderer.updateCameraAndRender(EntityRenderer.java:1006) at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:946) at net.minecraft.client.Minecraft.run(Minecraft.java:838) 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)
  7. It says failed to load... but I have the texture in that location and named like that and everything. here is the error message I get. 2014-02-01 11:45:50 [WARNING] [Minecraft-Client] Failed to load texture: dwadventure:/textures/blocks/EleventhTARDIS.png java.io.FileNotFoundException: dwadventure:/textures/blocks/EleventhTARDIS.png at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:67) at net.minecraft.client.renderer.texture.SimpleTexture.loadTexture(SimpleTexture.java:31) at net.minecraft.client.renderer.texture.TextureManager.loadTexture(TextureManager.java:84) at net.minecraft.client.renderer.texture.TextureManager.bindTexture(TextureManager.java:41) at net.DoctorWhoAdventures.superhb.mod.TESR.TardisTESR.renderTileEntityAt(TardisTESR.java:38) at net.minecraft.client.renderer.tileentity.TileEntityRenderer.renderTileEntityAt(TileEntityRenderer.java:172) at net.minecraft.client.renderer.tileentity.TileEntityRenderer.renderTileEntity(TileEntityRenderer.java:157) at net.minecraft.client.renderer.RenderGlobal.renderEntities(RenderGlobal.java:536) at net.minecraft.client.renderer.EntityRenderer.renderWorld(EntityRenderer.java:1160) at net.minecraft.client.renderer.EntityRenderer.updateCameraAndRender(EntityRenderer.java:1006) at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:946) at net.minecraft.client.Minecraft.run(Minecraft.java:838) 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)
  8. Fine here is my code for the OBJ Block so far and how it looks in-game and how it isn't solid... Block Class: public class BlockEleventhTardis extends BlockContainer { private IModelCustom EleventhTardis; public BlockEleventhTardis(int i, Material m) { super(i, m); setHardness(3.5F); setStepSound(Block.soundStoneFootstep); setCreativeTab(DoctorWhoAdventure.tabDoctorWho); setResistance(1000.0F); setResistance(1000.0F); setHardness(1.5F); setLightOpacity(0); setLightValue(0.0f); setTickRandomly(false); setUnlocalizedName("dwadventure:EleventhTardis"); // Harvest level for this block. par2 can be pickaxe, axe, or shovel, or // a different toolclass. par3 is the minimum level of item required to // break it: // 0=bare hands, 1=wood, 2=stone, 3=iron, 4=diamond //ItemSonicScrewdriver.setBlockHarvestLevel(this, "sonic", 0); } @SideOnly(Side.CLIENT) public void registerIcons(IconRegister par1IconRegister) { blockIcon = par1IconRegister.registerIcon("dwadventures:EleventhTARDIS"); } public void Render(TileEntity par1Entity, double x, double y, double z) { GL11.glPushMatrix(); GL11.glTranslatef((float)x + 0.5F, (float)y + 0.5F, (float)z + 0.5F); FMLClientHandler.instance().getClient().renderEngine.bindTexture(new ResourceLocation("dwadventure", "/textures/blocks/EleventhTARDIS.png")); EleventhTardis.renderAll(); GL11.glPopMatrix(); } /** * Is this block (a) opaque and (b) a full 1m cube? This determines whether or not to render the shared face of two * adjacent blocks and also whether the player can attach torches, redstone wire, etc to this block. */ @Override public boolean isOpaqueCube() { return false; } /** * If this block doesn't render as an ordinary block it will return False (examples: signs, buttons, stairs, etc) */ public boolean renderAsNormalBlock() { return false; } /** * Returns Returns true if the given side of this block type should be * rendered (if it's solid or not), if the adjacent block is at the given * coordinates. Args: blockAccess, x, y, z, side */ @Override public boolean isBlockSolid(IBlockAccess par1IBlockAccess, int par2, int par3, int par4, int par5) { return true; } /** * This method is called on a block after all other blocks gets already * created. You can use it to reference and configure something on the block * that needs the others ones. */ @Override protected void initializeBlock() { } /** * Called throughout the code as a replacement for block instanceof * BlockContainer Moving this to the Block base class allows for mods that * wish * to extend vinella blocks, and also want to have a tile entity on that * block, may. * * Return true from this function to specify this block has a tile entity. * * @param metadata * Metadata of the current block * @return True if block has a tile entity, false otherwise */ @Override public boolean hasTileEntity(int metadata) { return true; } @Override public TileEntity createNewTileEntity(World world) { return new TileEntityTardis(); } /**@Override public TileEntity createTileEntity(World world, int metadata) { return new TileEntityTardis(); }*/ } TESR Class: public class TardisTESR extends TileEntitySpecialRenderer { private IModelCustom EleventhTardis; private ResourceLocation tardisTexture; private static Pattern vertexPattern = Pattern.compile("(v( (\\-){0,1}\\d+\\.\\d+){3,4} *\\n)|(v( (\\-){0,1}\\d+\\.\\d+){3,4} *$)"); public TardisTESR() { //EleventhTardis = AdvancedModelLoader.loadModel("/assets/dwadventures/OBJ/Tardis/Model11thDoctorMattSmithTardis.obj"); EleventhTardis = AdvancedModelLoader.loadModel("/assets/dwadventures/OBJ/Tardis/ModelTardis.obj"); tardisTexture = new ResourceLocation("/assets/dwadventures/OBJ/Tardis/tex/tardisTexture.png"); } @Override public void renderTileEntityAt(TileEntity tileentity, double dx, double dy, double dz, float f) { GL11.glTranslatef((float)dx, (float)dy, (float)dz); Minecraft.getMinecraft().renderEngine.getTexture(tardisTexture);// dont create them here, create them in your constructor and save a reference as a member variable please FMLClientHandler.instance().getClient().renderEngine.bindTexture(new ResourceLocation("dwadventure", "/textures/blocks/EleventhTARDIS.png")); EleventhTardis.renderAll(); } public void Render(TileEntity par1Entity, double x, double y, double z) { GL11.glPushMatrix(); GL11.glTranslatef((float)x + 0.5F, (float)y + 0.5F, (float)z + 0.5F); FMLClientHandler.instance().getClient().renderEngine.bindTexture(new ResourceLocation("dwadventure", "/textures/blocks/tardisTextureRemake.png")); EleventhTardis.renderAll(); GL11.glPopMatrix(); } } TileEntity Class: public class TileEntityTardis extends TileEntity { public int tardis; @Override public void writeToNBT(NBTTagCompound par1) { super.writeToNBT(par1); par1.setInteger("tardis", tardis); } @Override public void readFromNBT(NBTTagCompound par1) { super.readFromNBT(par1); this.tardis = par1.getInteger("tardis"); } } Here how it looks like ingame: http://i.imgur.com/bcJM4ik.png Here is me showing how it isn't solid, when I set it as solid: http://i.imgur.com/HN7E9MU.png
  9. There is an asset folder in the minecraft jar file. you can change the picture using photoshop or gimp and just put that in your mod and it will replace your only minecraft textures Hope this helps!
  10. It's not really a visual issue.... I don't know how to set up the textures for an OBJ block
  11. Okay, so I was making an OBJ Model and I got everything working. Now all I have to do now is get the texture and make it solid. I put the code to make it solid in the Block class but it doesn't work and for the texture I don't know what to do. Please Help! Thanks, SuperHB
  12. Well... I guess.... but I didn't even know it was that much...
  13. I FIXED EVERYTHING!!!! YES!!! Now... 1. without the texture the regular block model is inside... 2. The model is not solid even though I set it as one. Here is the code: /** * Returns Returns true if the given side of this block type should be * rendered (if it's solid or not), if the adjacent block is at the given * coordinates. Args: blockAccess, x, y, z, side */ @Override public boolean isBlockSolid(IBlockAccess par1IBlockAccess, int par2, int par3, int par4, int par5) { return true; } 3. Do I have to set the Texture Map in Cinema 4D for it to work in game or do I have to do something special?
  14. I Just What? Dude, might want to simplify that. 90,000 verts is the kind of vert numbers you find on a fully rigged biped model for a modern shooter. The hell are you doing? I am making my Minecraft version of the TARDIS from Doctor Who
  15. for Option 1: Impossible I have like 90000 lines of vertices for Option 2: How do I do that? for Option 3: Would that change the position of the block?
  16. Okay so how do I exactly set a location for the block? It is set to my position and how I move cause when I walk a certain direction it just flies around up into the sky and goes into the ground when i was backwards.
  17. Hi okay so I found a fix to the error I got... but one issue... The Model is on my head.......
  18. yes... that was the base of starting this OBJ block help. I had that. Errors, posted a forum to help fix the error and it helped and now i'm here so that tutorial doesn't help
  19. Hey guys okay so I had a post asking for help with getting obj blocks to work with minecraft now I'm stuck with this error net.minecraftforge.client.model.ModelFormatException: Error parsing entry ('v -1.5 0 1.5', line 5) in file '/assets/dwadventures/OBJ/Tardis/Model11thDoctorTardis.obj' - Incorrect format I was told to make a new post to see If anyone can help me! here is my code: TardisTESR class: public class TardisTESR extends TileEntitySpecialRenderer { private IModelCustom EleventhTardis; private ResourceLocation tardisTexture; public TardisTESR(){ EleventhTardis = AdvancedModelLoader.loadModel("/assets/dwadventures/OBJ/Tardis/Model11thDoctorTardis.obj"); tardisTexture = new ResourceLocation("dwadventure:textures/tardisTexture.png"); } @Override public void renderTileEntityAt(TileEntity tileentity, double d0, double d1, double d2, float f) { System.out.println("TardisTESR::renderTileEntityAt"); Minecraft.getMinecraft().renderEngine.getTexture(tardisTexture);// dont create them here, create them in your constructor and save a reference as a member variable please EleventhTardis.renderAll(); } } TileEntityTardis class: public class TileEntityTardis extends TileEntity { public int tardis; @Override public void writeToNBT(NBTTagCompound par1) { super.writeToNBT(par1); par1.setInteger("tardis", tardis); } @Override public void readFromNBT(NBTTagCompound par1) { super.readFromNBT(par1); this.tardis = par1.getInteger("tardis"); } } Block Class: public class BlockEleventhTardis extends BlockContainer { public BlockEleventhTardis(int i, Material m) { super(i, m); setHardness(3.5F); setStepSound(Block.soundStoneFootstep); setCreativeTab(DoctorWhoAdventure.tabDoctorWho); setResistance(1000.0F); setResistance(1000.0F); setHardness(1.5F); setLightOpacity(0); setLightValue(0.0f); setTickRandomly(false); setUnlocalizedName("dwadventure:EleventhTardis"); // Harvest level for this block. par2 can be pickaxe, axe, or shovel, or // a different toolclass. par3 is the minimum level of item required to // break it: // 0=bare hands, 1=wood, 2=stone, 3=iron, 4=diamond //ItemSonicScrewdriver.setBlockHarvestLevel(this, "sonic", 0); } @SideOnly(Side.CLIENT) public void registerIcons(IconRegister par1IconRegister) { blockIcon = par1IconRegister.registerIcon("dwadventures:EleventhTARDIS"); } /** * Is this block (a) opaque and (b) a full 1m cube? This determines whether or not to render the shared face of two * adjacent blocks and also whether the player can attach torches, redstone wire, etc to this block. */ @Override public boolean isOpaqueCube() { return false; } /** * If this block doesn't render as an ordinary block it will return False (examples: signs, buttons, stairs, etc) */ public boolean renderAsNormalBlock() { return false; } /** * Returns Returns true if the given side of this block type should be * rendered (if it's solid or not), if the adjacent block is at the given * coordinates. Args: blockAccess, x, y, z, side */ @Override public boolean isBlockSolid(IBlockAccess par1IBlockAccess, int par2, int par3, int par4, int par5) { return true; } /** * This method is called on a block after all other blocks gets already * created. You can use it to reference and configure something on the block * that needs the others ones. */ @Override protected void initializeBlock() { } /** * Called throughout the code as a replacement for block instanceof * BlockContainer Moving this to the Block base class allows for mods that * wish * to extend vinella blocks, and also want to have a tile entity on that * block, may. * * Return true from this function to specify this block has a tile entity. * * @param metadata * Metadata of the current block * @return True if block has a tile entity, false otherwise */ @Override public boolean hasTileEntity(int metadata) { return true; } @Override public TileEntity createNewTileEntity(World world) { return new TileEntityTardis(); } /**@Override public TileEntity createTileEntity(World world, int metadata) { return new TileEntityTardis(); }*/ } Main Class: //Define Basic Info for Doctor Who Adventures @Mod(modid = "doctorwhoadventures", name = "Doctor Who Adventures", version = "Alpha 1.0") //Define Client & Server Side Requirements @NetworkMod(clientSideRequired = true, serverSideRequired = false) public class DoctorWhoAdventure { //Define Instance @Instance("doctorwhoadventures") public static DoctorWhoAdventure Instance; //Define Server @SidedProxy(clientSide = "net.DoctorWhoAdventures.superhb.mod.ClientProxy", serverSide = "net.DoctorWhoAdventures.superhb.mod.ServerProxy") public static ServerProxy proxy; //Define Creative Tab public static CreativeTabs tabDoctorWho = new CreativeDoctorWho(CreativeTabs.getNextID(), "tabDoctorWho"); //Define Tool Material public static EnumToolMaterial toolSonic = EnumHelper.addToolMaterial("SONIC", 20, 15000, 7, 8, 100); //Define Armor Material //public static EnumArmorMaterial EleventhDoctor = EnumHelper.addArmorMaterial("doctor", 33, new int[] {1, 2, 4, 1}, 30); //Define T.A.R.D.I.S public static Block eleventhTardis; //Define Sonic public static Item sonicScrewdriver; @EventHandler public void modInit(FMLInitializationEvent event) { MinecraftForge.EVENT_BUS.register(new LivingDropEvent()); } @EventHandler public void PreInit(FMLPreInitializationEvent Event) { //Capes DevCapesUtil.getInstance().addFileUrl("https://dl.dropboxusercontent.com/u/83349414/DoctorWho/DoctorWhoCapes/CustomCapes.txt"); //Doctor Who Adventures Block eleventhTardis = new BlockEleventhTardis(3530, Material.wood); sonicScrewdriver = new ItemSonic(6000, this.toolSonic); //Register Crafting, or Block/Item GameRegistry.registerTileEntity(TileEntityTardis.class, "eleventhTardis"); GameRegistry.registerBlock(eleventhTardis, "eleventhTardis"); //Set Item/Block/Food/Tool/Armor Name LanguageRegistry.addName(eleventhTardis, "11th Doctor's Tardis"); } @EventHandler public void postInit(FMLPostInitializationEvent event) { ClientRegistry.bindTileEntitySpecialRenderer(TileEntityTardis.class, new TardisTESR()); // you are missing this bit } } Here is the Dev Console Error: 2014-01-27 18:24:43 [iNFO] [sTDOUT] ---- Minecraft Crash Report ---- 2014-01-27 18:24:43 [iNFO] [sTDOUT] // Sorry 2014-01-27 18:24:43 [iNFO] [sTDOUT] 2014-01-27 18:24:43 [iNFO] [sTDOUT] Time: 1/27/14 6:24 PM 2014-01-27 18:24:43 [iNFO] [sTDOUT] Description: Initializing game 2014-01-27 18:24:43 [iNFO] [sTDOUT] 2014-01-27 18:24:43 [iNFO] [sTDOUT] net.minecraftforge.client.model.ModelFormatException: Error parsing entry ('v -1.5 0 1.5', line 5) in file '/assets/dwadventures/OBJ/Tardis/Model11thDoctorTardis.obj' - Incorrect format 2014-01-27 18:24:43 [iNFO] [sTDOUT] at net.minecraftforge.client.model.obj.WavefrontObject.parseVertex(WavefrontObject.java:314) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at net.minecraftforge.client.model.obj.WavefrontObject.loadObjModel(WavefrontObject.java:91) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at net.minecraftforge.client.model.obj.WavefrontObject.<init>(WavefrontObject.java:55) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at net.minecraftforge.client.model.obj.ObjModelLoader.loadInstance(ObjModelLoader.java:28) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at net.minecraftforge.client.model.AdvancedModelLoader.loadModel(AdvancedModelLoader.java:70) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at net.DoctorWhoAdventures.superhb.mod.TESR.TardisTESR.<init>(TardisTESR.java:20) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at net.DoctorWhoAdventures.superhb.mod.DoctorWhoAdventure.postInit(DoctorWhoAdventure.java:88) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at java.lang.reflect.Method.invoke(Unknown Source) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at cpw.mods.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:545) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at java.lang.reflect.Method.invoke(Unknown Source) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at com.google.common.eventbus.EventBus.dispatch(EventBus.java:313) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at com.google.common.eventbus.EventBus.post(EventBus.java:267) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at cpw.mods.fml.common.LoadController.sendEventToModContainer(LoadController.java:201) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:181) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at java.lang.reflect.Method.invoke(Unknown Source) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at com.google.common.eventbus.EventBus.dispatch(EventBus.java:313) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at com.google.common.eventbus.EventBus.post(EventBus.java:267) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:112) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at cpw.mods.fml.common.Loader.initializeMods(Loader.java:704) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:249) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at net.minecraft.client.Minecraft.startGame(Minecraft.java:509) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at net.minecraft.client.Minecraft.run(Minecraft.java:808) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at net.minecraft.client.main.Main.main(Main.java:93) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at java.lang.reflect.Method.invoke(Unknown Source) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at net.minecraft.launchwrapper.Launch.launch(Launch.java:131) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at net.minecraft.launchwrapper.Launch.main(Launch.java:27) 2014-01-27 18:24:43 [iNFO] [sTDOUT] 2014-01-27 18:24:43 [iNFO] [sTDOUT] 2014-01-27 18:24:43 [iNFO] [sTDOUT] A detailed walkthrough of the error, its code path and all known details is as follows: 2014-01-27 18:24:43 [iNFO] [sTDOUT] --------------------------------------------------------------------------------------- 2014-01-27 18:24:43 [iNFO] [sTDOUT] 2014-01-27 18:24:43 [iNFO] [sTDOUT] -- Head -- 2014-01-27 18:24:43 [iNFO] [sTDOUT] Stacktrace: 2014-01-27 18:24:43 [iNFO] [sTDOUT] at net.minecraftforge.client.model.obj.WavefrontObject.parseVertex(WavefrontObject.java:314) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at net.minecraftforge.client.model.obj.WavefrontObject.loadObjModel(WavefrontObject.java:91) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at net.minecraftforge.client.model.obj.WavefrontObject.<init>(WavefrontObject.java:55) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at net.minecraftforge.client.model.obj.ObjModelLoader.loadInstance(ObjModelLoader.java:28) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at net.minecraftforge.client.model.AdvancedModelLoader.loadModel(AdvancedModelLoader.java:70) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at net.DoctorWhoAdventures.superhb.mod.TESR.TardisTESR.<init>(TardisTESR.java:20) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at net.DoctorWhoAdventures.superhb.mod.DoctorWhoAdventure.postInit(DoctorWhoAdventure.java:88) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at java.lang.reflect.Method.invoke(Unknown Source) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at cpw.mods.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:545) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at java.lang.reflect.Method.invoke(Unknown Source) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at com.google.common.eventbus.EventBus.dispatch(EventBus.java:313) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at com.google.common.eventbus.EventBus.post(EventBus.java:267) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at cpw.mods.fml.common.LoadController.sendEventToModContainer(LoadController.java:201) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:181) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at java.lang.reflect.Method.invoke(Unknown Source) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at com.google.common.eventbus.EventBus.dispatch(EventBus.java:313) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at com.google.common.eventbus.EventBus.post(EventBus.java:267) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:112) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at cpw.mods.fml.common.Loader.initializeMods(Loader.java:704) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:249) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at net.minecraft.client.Minecraft.startGame(Minecraft.java:509) 2014-01-27 18:24:43 [iNFO] [sTDOUT] 2014-01-27 18:24:43 [iNFO] [sTDOUT] -- Initialization -- 2014-01-27 18:24:43 [iNFO] [sTDOUT] Details: 2014-01-27 18:24:43 [iNFO] [sTDOUT] Stacktrace: 2014-01-27 18:24:43 [iNFO] [sTDOUT] at net.minecraft.client.Minecraft.run(Minecraft.java:808) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at net.minecraft.client.main.Main.main(Main.java:93) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at java.lang.reflect.Method.invoke(Unknown Source) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at net.minecraft.launchwrapper.Launch.launch(Launch.java:131) 2014-01-27 18:24:43 [iNFO] [sTDOUT] at net.minecraft.launchwrapper.Launch.main(Launch.java:27) 2014-01-27 18:24:43 [iNFO] [sTDOUT] 2014-01-27 18:24:43 [iNFO] [sTDOUT] -- System Details -- 2014-01-27 18:24:43 [iNFO] [sTDOUT] Details: 2014-01-27 18:24:43 [iNFO] [sTDOUT] Minecraft Version: 1.6.4 2014-01-27 18:24:43 [iNFO] [sTDOUT] Operating System: Windows 8 (amd64) version 6.2 2014-01-27 18:24:43 [iNFO] [sTDOUT] Java Version: 1.7.0_25, Oracle Corporation 2014-01-27 18:24:43 [iNFO] [sTDOUT] Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation 2014-01-27 18:24:43 [iNFO] [sTDOUT] Memory: 796507032 bytes (759 MB) / 1037959168 bytes (989 MB) up to 1037959168 bytes (989 MB) 2014-01-27 18:24:43 [iNFO] [sTDOUT] JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M 2014-01-27 18:24:43 [iNFO] [sTDOUT] AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used 2014-01-27 18:24:43 [iNFO] [sTDOUT] Suspicious classes: FML and Forge are installed 2014-01-27 18:24:43 [iNFO] [sTDOUT] IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0 2014-01-27 18:24:43 [iNFO] [sTDOUT] FML: MCP v8.11 FML v6.4.49.965 Minecraft Forge 9.11.1.965 4 mods loaded, 4 mods active 2014-01-27 18:24:43 [iNFO] [sTDOUT] mcp{8.09} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized 2014-01-27 18:24:43 [iNFO] [sTDOUT] FML{6.4.49.965} [Forge Mod Loader] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized 2014-01-27 18:24:43 [iNFO] [sTDOUT] Forge{9.11.1.965} [Minecraft Forge] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized 2014-01-27 18:24:43 [iNFO] [sTDOUT] doctorwhoadventures{Alpha 1.0} [Doctor Who Adventures] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Errored 2014-01-27 18:24:43 [iNFO] [sTDOUT] Launched Version: 1.6 2014-01-27 18:24:43 [iNFO] [sTDOUT] LWJGL: 2.9.0 2014-01-27 18:24:43 [iNFO] [sTDOUT] OpenGL: Intel(R) HD Graphics 4000 GL version 4.0.0 - Build 10.18.10.3345, Intel 2014-01-27 18:24:43 [iNFO] [sTDOUT] Is Modded: Definitely; Client brand changed to 'fml,forge' 2014-01-27 18:24:43 [iNFO] [sTDOUT] Type: Client (map_client.txt) 2014-01-27 18:24:43 [iNFO] [sTDOUT] Resource Pack: Default 2014-01-27 18:24:43 [iNFO] [sTDOUT] Current Language: English (US) 2014-01-27 18:24:43 [iNFO] [sTDOUT] Profiler Position: N/A (disabled) 2014-01-27 18:24:43 [iNFO] [sTDOUT] Vec3 Pool Size: ~~ERROR~~ NullPointerException: null 2014-01-27 18:24:43 [iNFO] [sTDOUT] #@!@# Game crashed! Crash report saved to: #@!@# C:\Users\Kenneth\Desktop\Stuff\Modding Stuff\Doctor Who 1.6.4\forge\mcp\jars\.\crash-reports\crash-2014-01-27_18.24.43-client.txt
  20. okay thanks for your help but I use Cinema 4D 2014.
  21. That method won't work but thanks for trying to help anyways!
  22. Okay I'll try it and yes i do have GameRegistry.registerTileEntity(tileEntityClass, id); it is in my main class: GameRegistry.registerTileEntity(TileEntityTardis.class, "eleventhTardis"); EDIT: Okay I can tell it is working now because it crashed due to the model here is the error: net.minecraftforge.client.model.ModelFormatException: Error parsing entry ('v -1.5 0 1.5', line 5) in file '/assets/dwadventures/OBJ/Tardis/Model11thDoctorTardis.obj' - Incorrect format at net.minecraftforge.client.model.obj.WavefrontObject.parseVertex(WavefrontObject.java:314) at net.minecraftforge.client.model.obj.WavefrontObject.loadObjModel(WavefrontObject.java:91) 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 net.DoctorWhoAdventures.superhb.mod.TESR.TardisTESR.<init>(TardisTESR.java:20) at net.DoctorWhoAdventures.superhb.mod.DoctorWhoAdventure.postInit(DoctorWhoAdventure.java:88) 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:201) at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:181) 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:112) at cpw.mods.fml.common.Loader.initializeMods(Loader.java:704) at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:249) at net.minecraft.client.Minecraft.startGame(Minecraft.java:509) at net.minecraft.client.Minecraft.run(Minecraft.java:808) 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) 2014-01-26 09:56:18 [iNFO] [sTDOUT] ---- Minecraft Crash Report ---- 2014-01-26 09:56:18 [iNFO] [sTDOUT] // Ooh. Shiny. 2014-01-26 09:56:18 [iNFO] [sTDOUT] 2014-01-26 09:56:18 [iNFO] [sTDOUT] Time: 1/26/14 9:56 AM 2014-01-26 09:56:18 [iNFO] [sTDOUT] Description: Initializing game 2014-01-26 09:56:18 [iNFO] [sTDOUT] 2014-01-26 09:56:18 [iNFO] [sTDOUT] net.minecraftforge.client.model.ModelFormatException: Error parsing entry ('v -1.5 0 1.5', line 5) in file '/assets/dwadventures/OBJ/Tardis/Model11thDoctorTardis.obj' - Incorrect format 2014-01-26 09:56:18 [iNFO] [sTDOUT] at net.minecraftforge.client.model.obj.WavefrontObject.parseVertex(WavefrontObject.java:314) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at net.minecraftforge.client.model.obj.WavefrontObject.loadObjModel(WavefrontObject.java:91) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at net.minecraftforge.client.model.obj.WavefrontObject.<init>(WavefrontObject.java:55) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at net.minecraftforge.client.model.obj.ObjModelLoader.loadInstance(ObjModelLoader.java:28) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at net.minecraftforge.client.model.AdvancedModelLoader.loadModel(AdvancedModelLoader.java:70) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at net.DoctorWhoAdventures.superhb.mod.TESR.TardisTESR.<init>(TardisTESR.java:20) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at net.DoctorWhoAdventures.superhb.mod.DoctorWhoAdventure.postInit(DoctorWhoAdventure.java:88) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at java.lang.reflect.Method.invoke(Unknown Source) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at cpw.mods.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:545) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at java.lang.reflect.Method.invoke(Unknown Source) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at com.google.common.eventbus.EventBus.dispatch(EventBus.java:313) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at com.google.common.eventbus.EventBus.post(EventBus.java:267) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at cpw.mods.fml.common.LoadController.sendEventToModContainer(LoadController.java:201) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:181) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at java.lang.reflect.Method.invoke(Unknown Source) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at com.google.common.eventbus.EventBus.dispatch(EventBus.java:313) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at com.google.common.eventbus.EventBus.post(EventBus.java:267) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:112) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at cpw.mods.fml.common.Loader.initializeMods(Loader.java:704) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:249) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at net.minecraft.client.Minecraft.startGame(Minecraft.java:509) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at net.minecraft.client.Minecraft.run(Minecraft.java:808) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at net.minecraft.client.main.Main.main(Main.java:93) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at java.lang.reflect.Method.invoke(Unknown Source) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at net.minecraft.launchwrapper.Launch.launch(Launch.java:131) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at net.minecraft.launchwrapper.Launch.main(Launch.java:27) 2014-01-26 09:56:18 [iNFO] [sTDOUT] 2014-01-26 09:56:18 [iNFO] [sTDOUT] 2014-01-26 09:56:18 [iNFO] [sTDOUT] A detailed walkthrough of the error, its code path and all known details is as follows: 2014-01-26 09:56:18 [iNFO] [sTDOUT] --------------------------------------------------------------------------------------- 2014-01-26 09:56:18 [iNFO] [sTDOUT] 2014-01-26 09:56:18 [iNFO] [sTDOUT] -- Head -- 2014-01-26 09:56:18 [iNFO] [sTDOUT] Stacktrace: 2014-01-26 09:56:18 [iNFO] [sTDOUT] at net.minecraftforge.client.model.obj.WavefrontObject.parseVertex(WavefrontObject.java:314) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at net.minecraftforge.client.model.obj.WavefrontObject.loadObjModel(WavefrontObject.java:91) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at net.minecraftforge.client.model.obj.WavefrontObject.<init>(WavefrontObject.java:55) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at net.minecraftforge.client.model.obj.ObjModelLoader.loadInstance(ObjModelLoader.java:28) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at net.minecraftforge.client.model.AdvancedModelLoader.loadModel(AdvancedModelLoader.java:70) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at net.DoctorWhoAdventures.superhb.mod.TESR.TardisTESR.<init>(TardisTESR.java:20) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at net.DoctorWhoAdventures.superhb.mod.DoctorWhoAdventure.postInit(DoctorWhoAdventure.java:88) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at java.lang.reflect.Method.invoke(Unknown Source) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at cpw.mods.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:545) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at java.lang.reflect.Method.invoke(Unknown Source) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at com.google.common.eventbus.EventBus.dispatch(EventBus.java:313) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at com.google.common.eventbus.EventBus.post(EventBus.java:267) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at cpw.mods.fml.common.LoadController.sendEventToModContainer(LoadController.java:201) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:181) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at java.lang.reflect.Method.invoke(Unknown Source) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at com.google.common.eventbus.EventBus.dispatch(EventBus.java:313) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at com.google.common.eventbus.EventBus.post(EventBus.java:267) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:112) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at cpw.mods.fml.common.Loader.initializeMods(Loader.java:704) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:249) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at net.minecraft.client.Minecraft.startGame(Minecraft.java:509) 2014-01-26 09:56:18 [iNFO] [sTDOUT] 2014-01-26 09:56:18 [iNFO] [sTDOUT] -- Initialization -- 2014-01-26 09:56:18 [iNFO] [sTDOUT] Details: 2014-01-26 09:56:18 [iNFO] [sTDOUT] Stacktrace: 2014-01-26 09:56:18 [iNFO] [sTDOUT] at net.minecraft.client.Minecraft.run(Minecraft.java:808) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at net.minecraft.client.main.Main.main(Main.java:93) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at java.lang.reflect.Method.invoke(Unknown Source) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at net.minecraft.launchwrapper.Launch.launch(Launch.java:131) 2014-01-26 09:56:18 [iNFO] [sTDOUT] at net.minecraft.launchwrapper.Launch.main(Launch.java:27) I understand that it says that their is something wrong with the model but I tried a different, simple model and it still got an error.
  23. Okay so read the tutorial and the last part 1. don't know where to put it 2. I have the errors with the variable i,j,k And I read the tutorial it just made my block disappeared... EDIT: I don't have a registerTESR function. but if you mean the one in the TESR class which is renderTileEntityAt function then yes I put the code to print the text onto the console but it doesn't show up

Important Information

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

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.