Jump to content

[1.9] [Solved] Getting Item From Block?


LazerBeans

Recommended Posts

Hi all,

 

    I've been delving into 1.9 modding and am trying to create a simple cardboard block. Everything seems fine, except when I run my eclipse setup I get a null pointer exception during initialization. I can see that `item` is apparently null, is there a different way to do this render call? I've been following ChampionAsh5357's tutorial, and have noticed some issues earlier (namely with registry, but I've got that sorted out) if that helps any. Provided below are the error and the file in which the error occurs.

 

Error:

http://pastebin.com/uLGLwyrz

 

MineBoardBlocks.java:

http://pastebin.com/RJ5FU6Kq

 

Thanks in advance!

Developer of small, unreleased, basic, and incomplete mods since 2014!

Link to comment
Share on other sites

Was cardboard_block ever initialized? I see a method to do so, but I can't see that method being called.

The debugger is a powerful and necessary tool in any IDE, so learn how to use it. You'll be able to tell us more and get better help here if you investigate your runtime problems in the debugger before posting.

Link to comment
Share on other sites

Show MineBoard.java

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

Was cardboard_block ever initialized? I see a method to do so, but I can't see that method being called.

 

Show MineBoard.java

 

Yes it is, in my main PreInit().

 

MineBoard.java: http://pastebin.com/KLjKhLBY

 

I can show my ClientProxy as well, but it calls MineBoardBlocks.init() as well.

 

Another important thing to note is that the code is virtually identical to the code for items, which works, with the key difference being that I needed to change the Item parameter to a Block in the registerRender() function. And in my main mod file, init() is being called before registerRenders(), so there really shouldn't be any issue there.

Developer of small, unreleased, basic, and incomplete mods since 2014!

Link to comment
Share on other sites

If I had to guess, I'd say the problem originates at line 24 in MineBoardBlocks.java:

 

GameRegistry.register(cardboard_block.setRegistryName("cardboard_block"));

 

Maybe this is a 1.9 thing (I'm currently using 1.8.9) but don't you need to set an ItemBlock when you register any block? In 1.8.9 the line would be something like:

 

GameRegistry.registerBlock(cardboard_block, ItemBlockCardboard.class, "cardboard_block");

 

I'm actually updating my mod to 1.9 right now so I'll go see how it works in that version, but I think this might be why you're getting errors with the block but not the items.

Colore - The mod that adds monochrome blocks in every color of the rainbow!

http://www.minecraftforge.net/forum/index.php?topic=35149

 

If you're looking to learn how to make mods for 1.9.4, I wrote a helpful article with links to a lot of useful resources for learning Minecraft 1.9.4 modding!

 

http://supergeniuszeb.com/mods/a-helpful-list-of-minecraft-1-9-4-modding-resources/

Link to comment
Share on other sites

If I had to guess, I'd say the problem originates at line 24 in MineBoardBlocks.java:

 

GameRegistry.register(cardboard_block.setRegistryName("cardboard_block"));

 

Maybe this is a 1.9 thing (I'm currently using 1.8.9) but don't you need to set an ItemBlock when you register any block? In 1.8.9 the line would be something like:

 

GameRegistry.registerBlock(cardboard_block, ItemBlockCardboard.class, "cardboard_block");

 

I'm actually updating my mod to 1.9 right now so I'll go see how it works in that version, but I think this might be why you're getting errors with the block but not the items.

 

Thanks! This worked. Now I just need to get the inventory model working... :/

Developer of small, unreleased, basic, and incomplete mods since 2014!

Link to comment
Share on other sites

I have read that in 1.9, one must set registry name before registering a block. I don't know if nesting is recommended.

 

I see "init" methods being called in a "preInit" event handler. For clarity, I recommend either moving them to the "init" event handler or renaming them.

 

I don't think that an explicit ItemBlock need be set for every block (that's why there's a registration method without that parameter). The Vanilla ItemBlock class will be used for any block being registered without its own. However, if giving your own led you do re-order your set and registration lines, then you may have fixed another problem by accident.

 

The debugger is a powerful and necessary tool in any IDE, so learn how to use it. You'll be able to tell us more and get better help here if you investigate your runtime problems in the debugger before posting.

Link to comment
Share on other sites

I don't think that an explicit ItemBlock need be set for every block (that's why there's a registration method without that parameter). The Vanilla ItemBlock class will be used for any block being registered without its own. However, if giving your own led you do re-order your set and registration lines, then you may have fixed another problem by accident.

 

In 1.9, you have to register the

ItemBlock

yourself. You don't need to create your own class though,

ItemBlock

can still be used if you don't need any custom behaviour.

Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.

Link to comment
Share on other sites

In 1.9, you have to register the

ItemBlock

yourself. You don't need to create your own class though,

ItemBlock

can still be used if you don't need any custom behaviour.

Wow! That's going to F up almost every block in every mod!

 

As a ghostbuster once said, "OK, Important safety tip."

The debugger is a powerful and necessary tool in any IDE, so learn how to use it. You'll be able to tell us more and get better help here if you investigate your runtime problems in the debugger before posting.

Link to comment
Share on other sites

In 1.9, you have to register the

ItemBlock

yourself. You don't need to create your own class though,

ItemBlock

can still be used if you don't need any custom behaviour.

Wow! That's going to F up almost every block in every mod!

 

As a ghostbuster once said, "OK, Important safety tip."

 

It's trivial to fix once you know that the change has been made, just make sure your block registration method creates and registers the

ItemBlock

after registering the

Block

.

 

You can see my implementation of this here.

Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.

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

    • Slot deposit 3000 adalah situs slot deposit 3000 via dana yang super gacor dimana para pemain dijamin garansi wd hari ini juga hanya dengan modal receh berupa deposit sebesar 3000 baik via dana, ovo, gopay maupun linkaja untuk para pemain pengguna e-wallet di seluruh Indonesia.   DAFTAR & LOGIN AKUN PRO SLOT DEPOSIT 3000 ⭐⭐⭐ KLIK DISINI ⭐⭐⭐  
    • OLXTOTO: Menikmati Sensasi Bermain Togel dan Slot dengan Aman dan Mengasyikkan Dunia perjudian daring terus berkembang dengan cepat, dan salah satu situs yang telah menonjol dalam pasar adalah OLXTOTO. Sebagai platform resmi untuk permainan togel dan slot, OLXTOTO telah memenangkan kepercayaan banyak pemain dengan menyediakan pengalaman bermain yang aman, adil, dan mengasyikkan. DAFTAR OLXTOTO DISINI <a href="https://imgbb.com/"><img src="https://i.ibb.co/GnjSVpx/daftar1-480x480.webp" alt="daftar1-480x480" border="0" /></a> Keamanan Sebagai Prioritas Utama Salah satu aspek utama yang membuat OLXTOTO begitu menonjol adalah komitmennya terhadap keamanan pemain. Dengan menggunakan teknologi enkripsi terkini, situs ini memastikan bahwa semua informasi pribadi dan keuangan para pemain tetap aman dan terlindungi dari akses yang tidak sah. Beragam Permainan yang Menarik Di OLXTOTO, pemain dapat menemukan beragam permainan yang menarik untuk dinikmati. Mulai dari permainan klasik seperti togel hingga slot modern dengan fitur-fitur inovatif, ada sesuatu untuk setiap selera dan preferensi. Grafik yang memukau dan efek suara yang mengagumkan menambah keseruan setiap putaran. Peluang Menang yang Tinggi Salah satu hal yang paling menarik bagi para pemain adalah peluang menang yang tinggi yang ditawarkan oleh OLXTOTO. Dengan pembayaran yang adil dan peluang yang setara bagi semua pemain, setiap taruhan memberikan kesempatan nyata untuk memenangkan hadiah besar. Layanan Pelanggan yang Responsif Tim layanan pelanggan OLXTOTO siap membantu para pemain dengan setiap pertanyaan atau masalah yang mereka hadapi. Dengan layanan yang ramah dan responsif, pemain dapat yakin bahwa mereka akan mendapatkan bantuan yang mereka butuhkan dengan cepat dan efisien. Kesimpulan OLXTOTO telah membuktikan dirinya sebagai salah satu situs terbaik untuk penggemar togel dan slot online. Dengan fokus pada keamanan, beragam permainan yang menarik, peluang menang yang tinggi, dan layanan pelanggan yang luar biasa, tidak mengherankan bahwa situs ini telah menjadi pilihan utama bagi banyak pemain. Jadi, jika Anda mencari pengalaman bermain yang aman, adil, dan mengasyikkan, jangan ragu untuk bergabung dengan OLXTOTO hari ini dan rasakan sensasi kemenangan!
    • Slot deposit dana adalah situs slot deposit dana yang juga menerima dari e-wallet lain seperti deposit via dana, ovo, gopay & linkaja terlengkap saat ini, sehingga para pemain yang tidak memiliki rekening bank lokal bisa tetap bermain slot dan terbantu dengan adanya fitur tersebut.   DAFTAR & LOGIN AKUN PRO SLOT DEPOSIT DANA ⭐⭐⭐ KLIK DISINI ⭐⭐⭐  
    • Slot deposit dana adalah situs slot deposit dana minimal 5000 yang dijamin garansi super gacor dan gampang menang, dimana para pemain yang tidak memiliki rekening bank lokal tetap dalam bermain slot dengan melakukan deposit dana serta e-wallet lainnya seperti ovo, gopay maupun linkaja lengkap. Agar para pecinta slot di seluruh Indonesia tetap dapat menikmati permainan tanpa halangan apapun khususnya metode deposit, dimana ketersediaan cara deposit saat ini yang lebih beragam tentunya sangat membantu para pecinta slot.   DAFTAR & LOGIN AKUN PRO SLOT DEPOSIT DANA ⭐⭐⭐ KLIK DISINI ⭐⭐⭐  
    • Slot deposit pulsa adalah situs slot deposit pulsa tanpa potongan apapun yang dijamin garansi terpercaya, dimana kamu bisa bermain slot dengan melakukan deposit pulsa dan tanpa dikenakan potongan apapun sehingga dana yang masuk ke dalam akun akan 100% utuh. Proses penarikan dana juga dijamin gampang dan tidak sulit sehingga kamu tidak perlu khawatir akan kemenangan yang akan kamu peroleh dengan sangat mudah jika bermain disini.   DAFTAR & LOGIN AKUN PRO SLOT DEPOSIT PULSA TANPA POTONGAN ⭐⭐⭐ KLIK DISINI ⭐⭐⭐  
  • Topics

×
×
  • Create New...

Important Information

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