Jump to content

Recommended Posts

Posted (edited)

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.

2017-07-29_21.36.40.png

2017-07-30_01.06.58.png

2017-07-30_01.07.01.png

2017-07-30_01.07.04.png

2017-07-30_01.07.07.png

Edited by TheRPGAdventurer
Finally Solved
Posted

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.

Posted (edited)

Your assets.

Textures, json files...the folders containing them...

The stuff-that-isn't-working

Edited 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.

Posted

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.

Posted

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.

Posted

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.

  • Like 1
Posted

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.

Posted (edited)
  On 7/29/2017 at 12:26 PM, TheRPGAdventurer said:

git the program?

Expand  

...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"));

Expand  

block.getUnlocalizedName().substring(5)?  Really?

 

Bad modder, no cookie.

 

new ModelResourceLocation(block.getRegistryName().toString())"inventory",

Edited 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.

Posted
  On 7/29/2017 at 5:32 PM, Franckyi said:

He probably wasn't totally awake.

Expand  

Yep, that. Still not, probably.

  • Like 1

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.

Posted
  On 7/29/2017 at 5:00 PM, 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",

Expand  

Thanks guys, now I can blame CJMinecaft for this. HAHAHAHA!

  • 2 weeks later...
Posted
  On 7/30/2017 at 8:33 AM, TheRPGAdventurer said:

Thanks guys, now I can blame CJMinecaft for this. HAHAHAHA!

Expand  

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

Posted
  On 7/29/2017 at 5:26 AM, Draco18s said:

I'd be willing to bet your file names aren't all lower case.

Expand  

Note the word ALL

  On 8/7/2017 at 9:32 AM, 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

Expand  

Yes, the file extension is part of the file name.

  • Like 1

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.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

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