Jump to content

[SOLVED] I have a correctly formatted item, yet ResourceLocation isnt working...


MisterSirCode

Recommended Posts

I just started a new mod and I followed this tutorial: https://www.youtube.com/watch?v=YRCtFeECB8M&list=PLiDUvCGH5WEUcxyUKxHpQpDuinaiNp3it&index=4

 

I followed his instructions... EXACTLY.

I went ingame after registering my item.

First try it wasnt even registered because I forgot to save the file. After I saved everything and checked formatting, ran again, checked inventory and the item was there.

The item has no resources though... the lang file, texture and model are gone.

See in the attached images, I have no spelling mistakes (im very blind, please make sure Im not wrong)

 

Code for my java file: https://hatebin.com/kppjclhegn

Code for Item file: https://hatebin.com/mhofefziiy

Lang and Model file: https://hatebin.com/hqjcsmtlaw

 

EDIT: I changed the assets folder, so instead of "resources\compParts\assets" its just "resources\assets" and now my item has a working name ingame! But the texture and model are still missing.

 

Capture.PNG

Edited by MisterSirCode
Link to comment
Share on other sites

1 minute ago, Ugdhar said:

Your package name should be the same as your modid, and all lowercase :)

So everywhere you have compParts.assets etc, it should be computeparts like your modid.

Oh, That wasnt supposed to be there.

Ok, I removed it. Now its just `resources\assets\computeparts`

Ok, ingame my item now has a NAME, but the model and item texture are still missing

Link to comment
Share on other sites

You should set up a github repo for your project, makes it much easier to share code for people to help :)

Can you post the log? It'll be in the run/logs directory.

 

And just to be sure you have assets\computeparts\textures\item and assets\computeparts\models\item ?

Link to comment
Share on other sites

18 minutes ago, MisterSirCode said:

I just started a new mod and I followed this tutorial: https://www.youtube.com/watch?v=YRCtFeECB8M&list=PLiDUvCGH5WEUcxyUKxHpQpDuinaiNp3it&index=4

 

I followed his instructions... EXACTLY.

Yep, his tutorials are garbage. Search the forums for "Harry Talks" and you'll find dozens and dozens of people having issues after following his tutorials.

  

18 minutes ago, MisterSirCode said:

EDIT: I changed the assets folder, so instead of "resources\compParts\assets" its just "resources\assets" and now my item has a working name ingame! But the texture and model are still missing.

This is also wrong. You want "resources\assets\compparts" (\textures, etc)

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.

Link to comment
Share on other sites

6 minutes ago, Ugdhar said:

You should set up a github repo for your project, makes it much easier to share code for people to help :)

Can you post the log? It'll be in the run/logs directory.

 

And just to be sure you have assets\computeparts\textures\item and assets\computeparts\models\item ?

Repo: https://github.com/skylerspark/CompPartsMod

Latest.log: https://hatebin.com/oicfhkftqs

Link to comment
Share on other sites

3 minutes ago, Draco18s said:

Yep, his tutorials are garbage. Search the forums for "Harry Talks" and you'll find dozens and dozens of people having issues after following his tutorials.

WELLLL... he is the only tutorial that has made me a working mod.

Cant find any other tutorials on Eclipse for 1.14.4, all the rest are intellij, and if you see my previous post, its just causing so much stress

Link to comment
Share on other sites

Quote

[27Mar2020 09:48:24.183] [Server-Worker-5/ERROR] [net.minecraft.client.renderer.texture.AtlasTexture/]: Using missing texture, unable to load computeparts:textures/computer_sword.png : java.io.FileNotFoundException: computeparts:textures/computer_sword.png

Double check your textures folder in the repo for the item folder.

 

Don't give up on your logs, read them!! :)

Edited by Ugdhar
Link to comment
Share on other sites

5 minutes ago, Ugdhar said:

Double check your textures folder in the repo for the item folder.

 

Don't give up on your logs, read them!! :)

I saw that too, but its correctly named and is in the textures\item folder... Ive been developing texture packs for years... Trust me Ive done this part.

Does it not use the "item" folder? in the log it looks like its just looking for the model/texture without the \item or \block or whatever

Ill try just putting them straight into the textures and models folders respectively. See what happens :P

Wait wtf, it put it in a new folder... I never created a new folder... seriously... No wonder it cant find it. Eclipse created a new folder inside of textures and put the sword inside of it...

Edited by MisterSirCode
Link to comment
Share on other sites

7 minutes ago, Ugdhar said:

No, I mean in your repo, you have assets/computeparts/textures/New Folder (as in, literally, "New Folder")

yeah, Eclipse did that on its own, Ill delete it again and re-open my project so eclipse doesnt do it agian.

 

Oh lovely eclipse set its java home back to a nonexistant JDK 14 AGAIN... Seriously eclipse is painful

Edited by MisterSirCode
Link to comment
Share on other sites

9 minutes ago, MisterSirCode said:

yeah, Eclipse did that on its own, Ill delete it again and re-open my project so eclipse doesnt do it agian.

The project files inside Eclipse won't refresh on its own. Make sure you refresh your project files every time you change them on disk.

 

10 minutes ago, MisterSirCode said:

Oh lovely eclipse set its java home back to a nonexistant JDK 14 AGAIN... Seriously eclipse is painful

I don't think Eclipse (or any IDE) will change its configurations on its own.

Some tips:

Spoiler

Modder Support:

Spoiler

1. Do not follow tutorials on YouTube, especially TechnoVision (previously called Loremaster) and HarryTalks, due to their promotion of bad practice and usage of outdated code.

2. Always post your code.

3. Never copy and paste code. You won't learn anything from doing that.

4. 

Quote

Programming via Eclipse's hotfixes will get you nowhere

5. Learn to use your IDE, especially the debugger.

6.

Quote

The "picture that's worth 1000 words" only works if there's an obvious problem or a freehand red circle around it.

Support & Bug Reports:

Spoiler

1. Read the EAQ before asking for help. Remember to provide the appropriate log(s).

2. Versions below 1.11 are no longer supported due to their age. Update to a modern version of Minecraft to receive support.

 

 

Link to comment
Share on other sites

Just now, DavidM said:

The project files inside Eclipse won't refresh on its own. Make sure you refresh your project files every time you change them on disk.

 

I don't think Eclipse (or any IDE) will change its configurations on its own.

Yeah I fixed the project files thing, I was refreshing and the ghost folder was still there. So I restarted.

Restarting mustve reset the Eclipse.ini file.

And yes, it reset its own config...

I used to have JDK 14 before I did modding, so yeah it installed with that config. So I changed it manually with -vm in the eclipse.ini file.

I set it to JDK 8u214 and it worked. However, I had to set it AGAIN after I restarted. No idea why.

Also I fixed the mod if you saw my last comment

Link to comment
Share on other sites

51 minutes ago, MisterSirCode said:

WELLLL... he is the only tutorial that has made me a working mod.

Cant find any other tutorials on Eclipse for 1.14.4, all the rest are intellij, and if you see my previous post, its just causing so much stress

https://cadiboo.github.io/tutorials/1.14.4/forge/

Also what IDE you use is irrelevant. It's like saying "I can't write a letter using OpenOffice, all the tutorials are for Microsoft Word!"

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.

Link to comment
Share on other sites

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



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Dalam dunia perjudian online yang berkembang pesat, mencari platform yang dapat memberikan kemenangan maksimal dan hasil terbaik adalah impian setiap penjudi. OLXTOTO, dengan bangga, mempersembahkan dirinya sebagai jawaban atas pencarian itu. Sebagai platform terbesar untuk kemenangan maksimal dan hasil optimal, OLXTOTO telah menciptakan gelombang besar di komunitas perjudian online. Satu dari banyak keunggulan yang dimiliki OLXTOTO adalah koleksi permainan yang luas dan beragam. Dari togel hingga slot online, dari live casino hingga permainan kartu klasik, OLXTOTO memiliki sesuatu untuk setiap pemain. Dibangun dengan teknologi terkini dan dikembangkan oleh para ahli industri, setiap permainan di platform ini dirancang untuk memberikan pengalaman yang tak tertandingi bagi para penjudi. Namun, keunggulan OLXTOTO tidak hanya terletak pada variasi permainan yang mereka tawarkan. Mereka juga menonjol karena komitmen mereka terhadap keamanan dan keadilan. Dengan sistem keamanan tingkat tinggi dan proses audit yang ketat, OLXTOTO memastikan bahwa setiap putaran permainan berjalan dengan adil dan transparan. Para pemain dapat merasa aman dan yakin bahwa pengalaman berjudi mereka di OLXTOTO tidak akan terganggu oleh masalah keamanan atau keadilan. Tak hanya itu, OLXTOTO juga terkenal karena layanan pelanggan yang luar biasa. Tim dukungan mereka selalu siap sedia untuk membantu para pemain dengan segala pertanyaan atau masalah yang mereka hadapi. Dengan respon cepat dan solusi yang efisien, OLXTOTO memastikan bahwa pengalaman berjudi para pemain tetap mulus dan menyenangkan. Dengan semua fitur dan keunggulan yang ditawarkannya, tidak mengherankan bahwa OLXTOTO telah menjadi pilihan utama bagi jutaan penjudi online di seluruh dunia. Jika Anda mencari platform yang dapat memberikan kemenangan maksimal dan hasil optimal, tidak perlu mencari lebih jauh dari OLXTOTO. Bergabunglah dengan OLXTOTO hari ini dan mulailah petualangan Anda menuju kemenangan besar dan hasil terbaik!
    • Selamat datang di OLXTOTO, situs slot gacor terpanas yang sedang booming di industri perjudian online. Jika Anda mencari pengalaman bermain yang luar biasa, maka OLXTOTO adalah tempat yang tepat untuk Anda. Dapatkan sensasi tidak biasa dengan variasi slot online terlengkap dan peluang memenangkan jackpot slot maxwin yang sering. Di sini, Anda akan merasakan keseruan yang luar biasa dalam bermain judi slot. DAFTAR OLXTOTO DISINI LOGIN OLXTOTO DISINI AKUN PRO OLXTOTO DISINI   Jackpot Slot Maxwin Sering Untuk Peluang Besar Di OLXTOTO, kami tidak hanya memberikan hadiah slot biasa, tapi juga memberikan kesempatan kepada pemain untuk memenangkan jackpot slot maxwin yang sering. Dengan demikian, Anda dapat meraih keberuntungan besar dan memenangkan ribuan rupiah sebagai hadiah jackpot slot maxwin kami. Jackpot slot maxwin merupakan peluang besar bagi para pemain judi slot untuk meraih keuntungan yang lebih besar. Dalam permainan kami, Anda tidak harus terpaku pada kemenangan biasa saja. Kami hadir dengan jackpot slot maxwin yang sering, sehingga Anda memiliki peluang yang lebih besar untuk meraih kemenangan besar dengan hadiah yang menggiurkan. Dalam permainan judi slot, pengalaman bermain bukan hanya tentang keseruan dan hiburan semata. Kami memahami bahwa para pemain juga menginginkan kesempatan untuk meraih keberuntungan besar. Oleh karena itu, OLXTOTO hadir dengan jackpot slot maxwin yang sering untuk memberikan peluang besar kepada para pemain kami. Peluang Besar Menang Jackpot Slot Maxwin Peluang menang jackpot slot maxwin di OLXTOTO sangatlah besar. Anda tidak perlu khawatir tentang batasan atau pembatasan dalam meraih jackpot tersebut. Kami ingin memberikan kesempatan kepada semua pemain kami untuk merasakan sensasi menang dalam jumlah yang luar biasa. Jackpot slot maxwin kami dibuka untuk semua pemain judi slot di OLXTOTO. Anda memiliki peluang yang sama dengan pemain lainnya untuk memenangkan hadiah jackpot yang besar. Kami percaya bahwa semua orang memiliki kesempatan untuk meraih keberuntungan besar, dan itulah mengapa kami menyediakan jackpot slot maxwin yang sering untuk memenuhi harapan dan keinginan Anda.   Kesimpulan OLXTOTO adalah situs slot gacor terbaik yang memberikan pengalaman bermain judi slot online yang tak terlupakan. Dengan variasi slot online terlengkap dan peluang memenangkan jackpot slot maxwin yang sering, OLXTOTO menjadi pilihan terbaik bagi para pemain yang mencari kesenangan dan kemenangan besar dalam perjudian online. Di samping itu, OLXTOTO juga menawarkan layanan pelanggan yang ramah dan responsif, siap membantu setiap pemain dalam mengatasi masalah teknis atau pertanyaan seputar perjudian online. Kami menjaga integritas game dan memberikan lingkungan bermain yang adil serta menjalankan kebijakan perlindungan pelanggan yang cermat. Bergabunglah dengan OLXTOTO sekarang dan nikmati pengalaman bermain slot online yang luar biasa. Jadilah bagian dari komunitas perjudian yang mengagumkan ini dan raih kesempatan untuk meraih kemenangan besar. Dapatkan akses mudah dan praktis ke situs OLXTOTO dan rasakan sensasi bermain judi slot yang tak terlupakan.  
    • OLXTOTO: Platform Maxwin dan Gacor Terbesar Sepanjang Masa Di dunia perjudian online yang begitu kompetitif, mencari platform yang dapat memberikan kemenangan maksimal (Maxwin) dan hasil terbaik (Gacor) adalah prioritas bagi para penjudi yang cerdas. Dalam upaya ini, OLXTOTO telah muncul sebagai pemain kunci yang mengubah lanskap perjudian online dengan menawarkan pengalaman tanpa tandingan.     Sejak diluncurkan, OLXTOTO telah menjadi sorotan industri perjudian online. Dikenal sebagai "Platform Maxwin dan Gacor Terbesar Sepanjang Masa", OLXTOTO telah menarik perhatian pemain dari seluruh dunia dengan reputasinya yang solid dan kinerja yang luar biasa. Salah satu fitur utama yang membedakan OLXTOTO dari pesaingnya adalah komitmen mereka untuk memberikan pengalaman berjudi yang unik dan memuaskan. Dengan koleksi game yang luas dan beragam, termasuk togel, slot online, live casino, dan banyak lagi, OLXTOTO menawarkan sesuatu untuk semua orang. Dibangun dengan teknologi terkini dan didukung oleh tim ahli yang berdedikasi, platform ini memastikan bahwa setiap pengalaman berjudi di OLXTOTO tidak hanya menghibur, tetapi juga menguntungkan. Namun, keunggulan OLXTOTO tidak hanya terletak pada permainan yang mereka tawarkan. Mereka juga terkenal karena keamanan dan keadilan yang mereka berikan kepada para pemain mereka. Dengan sistem keamanan tingkat tinggi dan audit rutin yang dilakukan oleh otoritas regulasi independen, para pemain dapat yakin bahwa setiap putaran permainan di OLXTOTO adalah adil dan transparan. Tidak hanya itu, OLXTOTO juga dikenal karena layanan pelanggan yang luar biasa. Dengan tim dukungan yang ramah dan responsif, para pemain dapat yakin bahwa setiap pertanyaan atau masalah mereka akan ditangani dengan cepat dan efisien. Dengan semua fitur dan keunggulan yang ditawarkannya, tidak mengherankan bahwa OLXTOTO telah menjadi platform pilihan bagi para penjudi online yang mencari kemenangan maksimal dan hasil terbaik. Jadi, jika Anda ingin bergabung dengan jutaan pemain yang telah merasakan keajaiban OLXTOTO, jangan ragu untuk mendaftar dan mulai bermain hari ini!  
    • OLXTOTO adalah bandar slot yang terkenal dan terpercaya di Indonesia. Mereka menawarkan berbagai jenis permainan slot yang menarik dan menghibur. Dengan tampilan yang menarik dan grafis yang berkualitas tinggi, pemain akan merasa seperti berada di kasino sungguhan. OLXTOTO juga menyediakan layanan pelanggan yang ramah dan responsif, siap membantu pemain dengan segala pertanyaan atau masalah yang mereka hadapi. Daftar =  https://surkale.me/Olxtotodotcom1
    • DAFTAR & LOGIN BIGO4D   Bigo4D adalah situs slot online yang populer dan menarik perhatian banyak pemain slot di Indonesia. Dengan berbagai game slot yang unik dan menarik, Bigo4D menjadi tempat yang ideal untuk pemula dan pahlawan slot yang berpengalaman. Dalam artikel ini, kami akan membahas tentang Bigo4D sebagai situs slot terbesar dan menarik yang saat ini banyak dijajaki oleh pemain slot online.
  • Topics

×
×
  • Create New...

Important Information

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