Posted July 29, 20178 yr So I'm done making my mod, run gradlew build and when I try to install it on my own PC, It gives me errors like assets is not working and such I/ll show you screenshots. So my question is, what files cause this error what class, I did not post some source code yet because I am unsure where it is giving the errors. Edited August 7, 20178 yr by TheRPGAdventurer Finally Solved
July 29, 20178 yr I'd be willing to bet your file names aren't all lower case. 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.
July 29, 20178 yr Author 11 hours ago, Draco18s said: I'd be willing to bet your file names aren't all lower case. like what file names? on what Files? Edited July 29, 20178 yr by TheRPGAdventurer forgot something
July 29, 20178 yr Your assets. Textures, json files...the folders containing them... The stuff-that-isn't-working Edited July 29, 20178 yr by Draco18s 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.
July 29, 20178 yr Author 11 hours ago, Draco18s said: Your assets. Textures, json files...the folders containing them... The stuff-that-isn't-working Ok did some research on this site, my lang file is en_us.lang, changed it to en_US.lang
July 29, 20178 yr That one only needs to be all-lower in 1.11, in 1.10 it's fine as it was. That said, you've only posted screenshots. There's no code to accompany your post. I might be a wizard, but I'm not psychic. 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.
July 29, 20178 yr Author 11 hours ago, Draco18s said: That one only needs to be all-lower in 1.11, in 1.10 it's fine as it was. That said, you've only posted screenshots. There's no code to accompany your post. I might be a wizard, but I'm not psychic. What codes do I have to post?
July 29, 20178 yr How about uploading everything to github? I don't know how you have your code arranged, I don't know what I might need, I only know what to look for. 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.
July 29, 20178 yr Author 11 hours ago, Draco18s said: How about uploading everything to github? I don't know how you have your code arranged, I don't know what I might need, I only know what to look for. ok gonna do some research be back in nest days.
July 29, 20178 yr Author 12 hours ago, Draco18s said: How about uploading everything to github? I don't know how you have your code arranged, I don't know what I might need, I only know what to look for. here it is https://github.com/PanzerTank101/rotd/tree/rotd-1.10.2
July 29, 20178 yr Author 18 hours ago, Draco18s said: How about uploading everything to github? I don't know how you have your code arranged, I don't know what I might need, I only know what to look for. you found out what's wrong yet?
July 29, 20178 yr Why is the assets folder at the repository root ? And why is it named 'textures' ? Can you confirm that your assets are located at src/main/resources/assets/[modid] ? If not, it won't work.
July 29, 20178 yr Author 11 hours ago, Franckyi said: Why is the assets folder at the repository root ? And why is it named 'textures' ? Can you confirm that your assets are located at src/main/resources/assets/[modid] ? If not, it won't work. I posted the src code btw. yes I confirm it.
July 29, 20178 yr You uploaded all your code to a github repo, but that's not how you do it. You have to install git, then add your github repository as a remote, then commit and push. I can't even see your lang file.
July 29, 20178 yr Author 11 hours ago, Franckyi said: You uploaded all your code to a github repo, but that's not how you do it. You have to install git, then add your github repository as a remote, then commit and push. I can't even see your lang file. git the program?
July 29, 20178 yr 4 hours ago, TheRPGAdventurer said: git the program? ...yes... Git is a program. GitHub is a remote repository host. Now then (that I'm awake, seriously, I'm not here 24/7). Quote ModelLoader.setCustomModelResourceLocation(Item.getItemFromBlock(block), 0, new ModelResourceLocation(new ResourceLocation(RealmOfTheDragons.MODID, block.getUnlocalizedName().substring(5)), "inventory")); block.getUnlocalizedName().substring(5)? Really? Bad modder, no cookie. new ModelResourceLocation(block.getRegistryName().toString())"inventory", Edited July 29, 20178 yr by Draco18s 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.
July 29, 20178 yr 24 minutes ago, diesieben07 said: Ehm. new ModelResourceLocation(thing.getRegistryName(), "inventory") He probably wasn't totally awake.
July 29, 20178 yr 27 minutes ago, Franckyi said: He probably wasn't totally awake. Yep, that. Still not, probably. 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.
July 30, 20178 yr Author On 7/30/2017 at 1:00 AM, Draco18s said: ...yes... Git is a program. GitHub is a remote repository host. Now then (that I'm awake, seriously, I'm not here 24/7). block.getUnlocalizedName().substring(5)? Really? Bad modder, no cookie. new ModelResourceLocation(block.getRegistryName().toString())"inventory", Thanks guys, now I can blame CJMinecaft for this. HAHAHAHA!
August 7, 20178 yr Author On 7/30/2017 at 4:33 PM, TheRPGAdventurer said: Thanks guys, now I can blame CJMinecaft for this. HAHAHAHA! Ok guys! Sorry for necroing this post but apparently, Dracos18s solution was not enough but I got the solution correctly. I wasn't able to use my computer for many days but here's my solution the .json should be in lowercase Example amethyst_dragon_sword.json not amethyst_dragon_sword.JSON. en_US.lang not en_US.LANG to see the file extension like (.lang, .txt, .json ) see here https://www.howtohaven.com/system/show-file-extensions-in-windows-explorer.shtml
August 7, 20178 yr On 29/07/2017 at 6:26 AM, Draco18s said: I'd be willing to bet your file names aren't all lower case. Note the word ALL 2 hours ago, TheRPGAdventurer said: Ok guys! Sorry for necroing this post but apparently, Dracos18s solution was not enough but I got the solution correctly. I wasn't able to use my computer for many days but here's my solution the .json should be in lowercase Example amethyst_dragon_sword.json not amethyst_dragon_sword.JSON. en_US.lang not en_US.LANG to see the file extension like (.lang, .txt, .json ) see here https://www.howtohaven.com/system/show-file-extensions-in-windows-explorer.shtml Yes, the file extension is part of the file name.
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.