Posted July 21, 201411 yr I need help with this error "javax.imageio.IIOException: Can't read input file!" i cannot read crops growing textures and because that textures are pink and black please help. Eclipse Console Report : https://gist.github.com/Propucani2/eeaa8826e417cf325395 Thanks anyway.
July 23, 201411 yr Author How did you set up your run configurations? This is crop config : https://gist.github.com/Propucani2/278344fcf74267cf5d09 This is project explorer :
July 23, 201411 yr How did you set up your run configurations? Don't PM me with questions. They will be ignored! Make a thread on the appropriate board for support. 1.12 -> 1.13 primer by williewillus. 1.7.10 and older versions of Minecraft are no longer supported due to it's age! Update to the latest version for support. http://www.howoldisminecraft1710.today/
July 23, 201411 yr Author Now i get this error i get this error too on normal 1.7.10 forge installed on normal minecraft no src :
July 23, 201411 yr Author Its all ok see : oh i wanna make crops because im making mod with more foods and ores.....
July 23, 201411 yr Author Here is new console log : https://gist.github.com/Propucani2/8260c19c23dbaac93ad4
July 23, 201411 yr Another thing. In your crop block class you need to @Override the getIcon() method. Something like this (this is copied from BlockPotato. The iIcon array should be whatever you use in your class to store the registered icons. /** * Gets the block's texture. Args: side, meta */ @Override @SideOnly(Side.CLIENT) public IIcon getIcon(int parSide, int parGrowthStage) { if (parGrowthStage < 7) { if (parGrowthStage == 6) { parGrowthStage = 5; } return iIcon[parGrowthStage >> 1]; } else { return iIcon[3]; } } Check out my tutorials here: http://jabelarminecraft.blogspot.com/
July 24, 201411 yr Author Now items are not in creativetab. Armor and tools are in creative tab but other items like food are not in creative tab
July 24, 201411 yr Author Another thing. In your crop block class you need to @Override the getIcon() method. Something like this (this is copied from BlockPotato. The iIcon array should be whatever you use in your class to store the registered icons. /** * Gets the block's texture. Args: side, meta */ @Override @SideOnly(Side.CLIENT) public IIcon getIcon(int parSide, int parGrowthStage) { if (parGrowthStage < 7) { if (parGrowthStage == 6) { parGrowthStage = 5; } return iIcon[parGrowthStage >> 1]; } else { return iIcon[3]; } } Jabelar THANKSSS textures are working you are best. Diesieben07 you helped me too with that tutorial minecraft its not laggy now. ty guys!!!!
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.