Jump to content

WreckItGamer

Members
  • Posts

    10
  • Joined

  • Last visited

Everything posted by WreckItGamer

  1. Just my luck >.< Is there an official forum about it so i can keep track or should i try to install later
  2. Bottom line i keep getting this error: http://pastebin.com/CpyPk61Z I do exactly as tutorials say but nope..... I must be missing something like and idiot >.> I want to get back into mod making but if i cant install this god help me lol
  3. SOLVED! I would like to give a massive THANKS to Jacknoshima for his solution that worked wonders! So if anyone else has the same problem were EVERYTHING is perfect but textures still wont work Add what he stated above and your textures will load! Trust me iv tryed everything i would have never have found this so thanks so much Jacknoshima
  4. Is your texture destination the same as mine? Ill give this ago soon and get back to you all!
  5. you have totally just lost me now >.>
  6. Is there perticular code i should be useing to load textures before blocks?
  7. That did not work for me unfortunitly. Code : blockIcon = iconRegister.registerIcon("wreckitmod:CopperOre"); modid : @Mod(modid = "wreckitmod", name = "Wreck It Mod", version = "Version 1.0") Texture Destination : Desktop\MCP\mcp\src\minecraft\assets\wreckitmod\textures\blocks Error : Using missing texture, unable to load: minecraft:textures/blocks/MISSING_ICON_TILE_2002_CopperOre.png
  8. So the modid at @Mod has to be the same as the texture destination as lowercase for both? Interesting never had that problem before. ill give it a try and get back too you
  9. Do you mean this line of code? @Mod(modid = "Wreck It Mod", name = "Wreck It Mod", version = "Version 1.0") I also update the post with the error i get for the textures...
  10. Hey guys im having a slight texture problem so im gona get right down to it! As my destination for the lastest forge/mcp location for me textures im useing this: Desktop\MCP\mcp\src\minecraft\assets\NonExistingTextures\textures\blocks And the Code im useing is as follows: public class oreAmethystOre extends Block { public oreAmethystOre(int par1, Material par2Material) { super(par1, Material.rock); } public void registerIcons(IconRegister iconRegister) { blockIcon = iconRegister.registerIcon("NonExistingTextures:Amethyst"); } public int idDropped (int par1, Random par2Random, int par3) { return WreckItMod_Core.Amethyst.itemID; } public int quantityDropped(Random par1Random) { return 1; } } So tell me, Make me feel stupid... What am i doing wrong? As far as i know everything is correct? Let me know what other info you guys need! EDIT: This is my error: 2013-08-30 14:13:08 [sEVERE] [Minecraft-Client] Using missing texture, unable to load: minecraft:textures/blocks/MISSING_ICON_TILE_3210_RhodiumBlock.png
×
×
  • Create New...

Important Information

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