Jump to content

jamesc554544

Members
  • Posts

    35
  • Joined

  • Last visited

Everything posted by jamesc554544

  1. I am thinking about making a mod that goes into really complex methods of blacksmithing; where you could create your own metals. I am wondering if it is possible to have the colour, properties, name and NBT data changed to create a new liquid in game. I have probably not explained myself very well, but i hope you get the gist. THANKS!
  2. I am wondering how I would go about making a Block with a Tileentity that would store and have the ability to use a fluid. I already know how to make Tileentities and blocks, it is just the FluidAPI which I lake knowledge on and I have been trying to research it but I am coming up short. Any help is greatly appreciated. To helping me understand how the API works, I have great thanks!
  3. Hey guys, i am having a little trouble making my block orientation based off which face i place the block on. I am using BlockLog as a base for it and it changes and works fin for my pillars, but i want pillar caps; and i need the top texture and the side texture to also change so that the cap is always in the right place, any ideas?
  4. I want to be able to make the player move faster depending on if they are wearing the boots from my armor set with the correct NBTTags here is my code so far This is in onArmorTick if (itemStack.getItem() == MagicasItems.ironInfusedLeggings) { if (itemStack.stackTagCompound != null) { NBTTagCompound nbtTag = itemStack.stackTagCompound; if (nbtTag.hasKey("AirInfused") && nbtTag.getBoolean("AirInfused")) { player.setAIMoveSpeed(1F); } } }
  5. Where is onArmorTick?, i cannot find it in the ItemArmor or ISpecialArmor Classes. so i do not know what the method needs to look like and how to override it...
  6. I want to be able to detect when a player is sneaking and wearing my custom armor set with the correct NBTData. I do not want this when i right click an item just every-time shifting occurs
  7. I have a custom block with a gui, container, tile entity and so on, and i wanted to know how i can limit which items can go in a slot as i want glass bottles to go in slot 1 and only glass bottles?
  8. Having a crash when loading a would with the block in... Sorry about it not being in the code thingy, it would not let me use it or the spoilers or anything package net.gammas.magicas.models; import net.gammas.magicas.tileentites.TileEntityEssenceExtractor; import net.minecraft.block.Block; import net.minecraft.client.Minecraft; import net.minecraft.client.renderer.OpenGlHelper; import net.minecraft.client.renderer.Tessellator; import net.minecraft.client.renderer.entity.RenderItem; import net.minecraft.client.renderer.entity.RenderManager; import net.minecraft.client.renderer.tileentity.TileEntitySpecialRenderer; import net.minecraft.entity.Entity; import net.minecraft.entity.item.EntityItem; import net.minecraft.tileentity.TileEntity; import net.minecraft.util.ResourceLocation; import net.minecraft.world.World; import org.lwjgl.opengl.GL11; public class TileEntityEssenceExtractorRenderer extends TileEntitySpecialRenderer { // The model of your block private final ModelEssenceExtractor model; private EntityItem entItem = null; public TileEntityEssenceExtractorRenderer() { this.model = new ModelEssenceExtractor(); } private void adjustRotatePivotViaMeta(World world, int x, int y, int z) { int meta = world.getBlockMetadata(x, y, z); GL11.glPushMatrix(); GL11.glRotatef(meta * (-90), 0.0F, 0.0F, 1.0F); GL11.glPopMatrix(); } @Override public void renderTileEntityAt(TileEntity te, double x, double y, double z, float scale) { GL11.glPushMatrix(); GL11.glTranslatef((float) x + 0.5F, (float) y + 1.5F, (float) z + 0.5F); ResourceLocation texture = new ResourceLocation("magicasmod" + ":" + "textures/blocks/EssenceExtractor.png"); Minecraft.getMinecraft().renderEngine.bindTexture(texture); GL11.glPushMatrix(); GL11.glRotatef(180F, 0.0F, 0.0F, 1.0F); this.model.render((Entity) null, 0.0F, 0.0F, -0.1F, 0.0F, 0.0F, 0.0625F); GL11.glPopMatrix(); GL11.glPopMatrix(); int slot = 0; TileEntityEssenceExtractor tileEntity = (TileEntityEssenceExtractor) te; if ((entItem == null) || entItem.getEntityItem().getItem() != tileEntity.getStackInSlot(slot).getItem()) entItem = new EntityItem(tileEntity.getWorldObj(), x, y, z, tileEntity.getStackInSlot(slot)); GL11.glPushMatrix(); this.entItem.hoverStart = 0.0F; RenderItem.renderInFrame = true; GL11.glTranslatef((float) x + 0.5F, (float) y + 1.02F, (float) z + 0.3F); GL11.glRotatef(180, 0, 1, 1); RenderManager.instance.renderEntityWithPosYaw(entItem, x + 0.5, y + 1, z + 0.5, 0, 0); RenderItem.renderInFrame = false; GL11.glPopMatrix(); } private void adjustLightFixture(World world, int i, int j, int k, Block block) { Tessellator tess = Tessellator.instance; float brightness = block.getLightValue(world, i, j, k); int skyLight = world.getLightBrightnessForSkyBlocks(i, j, k, 0); int modulousModifier = skyLight % 65536; int divModifier = skyLight / 65536; tess.setColorOpaque_F(brightness, brightness, brightness); OpenGlHelper.setLightmapTextureCoords(OpenGlHelper.lightmapTexUnit, (float) modulousModifier, divModifier); } } -- Head -- Stacktrace: at net.minecraft.entity.item.EntityItem.<init>(EntityItem.java:62) at net.gammas.magicas.models.TileEntityEssenceExtractorRenderer.renderTileEntityAt(TileEntityEssenceExtractorRenderer.java:55)
  9. I am trying to make it so my sword places redstone, and damages the sword on use. Code:
  10. Ok, thanks i forgot i was making the sticks and redstone into ItemStacks insted of Items, it fixed it
  11. public static void InitRecipes(){ ItemStack itemRedstonePickaxe; ItemStack itemRedstoneAxe; ItemStack itemRedstoneShovel; ItemStack itemRedstoneSword; ItemStack itemRedstoneHoe; itemRedstonePickaxe = new ItemStack(redstonePickaxe); itemRedstonePickaxe.addEnchantment(Enchantment.efficiency, 3); itemRedstoneAxe = new ItemStack(redstoneAxe); itemRedstoneAxe.addEnchantment(Enchantment.efficiency, 3); itemRedstoneShovel = new ItemStack(redstoneShovel); itemRedstoneShovel.addEnchantment(Enchantment.efficiency, 3); itemRedstoneSword = new ItemStack(redstoneSword); itemRedstoneSword.addEnchantment(Enchantment.sharpness, 3); itemRedstoneHoe = new ItemStack(redstoneHoe); itemRedstoneHoe.addEnchantment(Enchantment.unbreaking, 3); ItemStack sticks = new ItemStack(net.minecraft.init.Items.stick); ItemStack redstone = new ItemStack(net.minecraft.init.Items.redstone); GameRegistry.addRecipe(itemRedstonePickaxe, new Object[]{"xxx", " y ", " y ", 'x', redstone, 'y', sticks}); GameRegistry.addRecipe(itemRedstoneAxe, new Object[]{" xx", " yx", " y ", 'x', redstone, 'y', sticks}); GameRegistry.addRecipe(itemRedstoneAxe, new Object[]{"xx ", "xy", " y ", 'x', redstone, 'y', sticks}); GameRegistry.addRecipe(itemRedstoneShovel, new Object[]{" x ", " y ", " y ", 'x', redstone, 'y', sticks}); GameRegistry.addRecipe(itemRedstoneSword, new Object[]{" x ", " x ", " y ", 'x', redstone, 'y', sticks}); GameRegistry.addRecipe(itemRedstoneHoe, new Object[]{" xx", " y ", " y ", 'x', redstone, 'y', sticks}); GameRegistry.addRecipe(itemRedstoneHoe, new Object[]{"xx ", " y ", " y ", 'x', redstone, 'y', sticks}); }
  12. My Client Wont Start.... [21:51:14] [main/INFO]: No arguments specified, assuming client. [21:51:14] [main/INFO]: Extra: [] Exception in thread "main" java.lang.RuntimeException: java.io.FileNotFoundException: C:\Users\James\.gradle\caches\minecraft\assets\indexes\{ASSET_INDEX}.json (The system cannot find the file specified) at com.google.common.base.Throwables.propagate(Throwables.java:160) at GradleStart.setupAssets(GradleStart.java:274) at GradleStart.startClient(GradleStart.java:82) at GradleStart.main(GradleStart.java:56) Caused by: java.io.FileNotFoundException: C:\Users\James\.gradle\caches\minecraft\assets\indexes\{ASSET_INDEX}.json (The system cannot find the file specified) at java.io.FileInputStream.open(Native Method) at java.io.FileInputStream.<init>(Unknown Source) at java.io.FileReader.<init>(Unknown Source) at GradleStart.loadAssetsIndex(GradleStart.java:280) at GradleStart.setupAssets(GradleStart.java:218) ... 2 more
  13. 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
  14. 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?
  15. I have made my .obj and how would i call this in my block as i am new to this type of thing?
  16. 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?
  17. 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?
  18. 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.
  19. public void registerIcons(IconRegister icon) { itemIcon = icon.registerIcon(Resources.MOD_ID + ":" + getUnlocalizedName().substring(5)); } this is how you would add a texture to your items, if extra help is needed check this out - http://www.youtube.com/watch?v=JiZwrGYDZ8c this will tell you how and watch other episodes to get any info on starting up.
  20. i was wonder i am making a mod and i have custom models for my mobs, and i would like to animate them but i think it might be easier if there was a program for it and then i can get my modellers to do that stuff if you could link me to a program, if there is one, i would be very thankful.
  21. Need help with always checking if a block next to a block has a boolean that is equal to true. In my example i have some wire that i want to send power when it is placed it does this fine but after that the generator no longer sends power..., look at my github for the code Github - https://github.com/Jamesc554/Elementals-Minecraft-Mod/
×
×
  • Create New...

Important Information

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