Posted February 3, 201411 yr Hi, So I'm making my first mod as i follow along a tutorial and i've made an item, but i don't know where to put the texture of the item. In the video, theres supposed to be a "Modding Folder>mcp>temp>src>minecraft>assets>minecraft>textures>items", but i dont even have an mcp folder. I am using forge-1.6.4-9.11.1.964, if that makes a difference. Anyway, please tell me where the textures are located. Thanks! -Pandassaurus
February 4, 201411 yr Author I do understand class path, it's just i couldn't find any of the folders he mentioned, and the folders you mentioned are also nonexistent. I think it has something to do with me forge version (forge-1.6.4-9.11.1.964). Do you mean i have to make those folders? Thanks anyway
February 4, 201411 yr Do you mean i have to make those folders? ....Yes. Forge doesn't know what your mod ID is when you start, so it's not going to make the folders for you. Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable. If you think this is the case, JUST REPORT ME. Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice. Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked. DO NOT PM ME WITH PROBLEMS. No help will be given.
February 4, 201411 yr Author Okay so i made the folders, but i'm recieving this error: 2014-02-03 21:38:33 [sEVERE] [Minecraft-Client] Using missing texture, unable to load: examplemod:textures/items/RedDiamondHoe.png 2014-02-03 21:38:33 [sEVERE] [Minecraft-Client] Using missing texture, unable to load: examplemod:textures/items/RedDiamondPickaxe.png 2014-02-03 21:38:33 [sEVERE] [Minecraft-Client] Using missing texture, unable to load: examplemod:textures/items/RedDiamondShovel.png 2014-02-03 21:38:33 [sEVERE] [Minecraft-Client] Using missing texture, unable to load: examplemod:textures/items/RedDiamondSword.png 2014-02-03 21:38:33 [sEVERE] [Minecraft-Client] Using missing texture, unable to load: minecraft:textures/items/MISSING_ICON_ITEM_3259_Red Diamond Axe.png its either because i put the assets folder in the wrong place( I put it in the main modding folder): http://24.media.tumblr.com/e53967b1ad774cbbb0aefcce55ec3cba/tumblr_n0gj8vmsFo1sejvuqo1_1280.png[/img] or because of the code calling the textures: public void registerIcons(IconRegister iconReigster) { itemIcon = iconReigster.registerIcon("ExampleMod:RedDiamondPickaxe"); }
February 4, 201411 yr That would be because your mod's id, according to your console output, is "examplemod", but your folder is named "modid". They need to match. http://i.imgur.com/NdrFdld.png[/img]
February 4, 201411 yr Author Sorry to be such a pain... but it's still not working.. This is whats going on: http://25.media.tumblr.com/4b3c86a93030b04928d39b8f13ecc1ce/tumblr_n0gmbq5O221sejvuqo1_1280.png I don't know what i'm doing wrong. Thanks a lot.
February 4, 201411 yr Hi I had the same problem, I solved it like this http://www.minecraftforge.net/forum/index.php?topic=11963.0 After figuring out the correct path I added a new artifact to copy the files for me automatically from my source folder to the out. -TGG
February 4, 201411 yr There is a resources folder by default. It isn't for the looks of it, you know...
February 4, 201411 yr Your assets is not inside your source directory. I can't see, but there should be a folder called /resources that sits right next to /java inside your /src directory. Assets should be inside that. Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable. If you think this is the case, JUST REPORT ME. Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice. Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked. DO NOT PM ME WITH PROBLEMS. No help will be given.
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.