Jump to content

Recommended Posts

Posted

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!

Posted

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.

Posted

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.

Posted
  On 5/11/2016 at 6:40 AM, jeffryfisher said:

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

 

  Quote

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!

Posted

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/

Posted
  On 5/12/2016 at 2:54 AM, SuperGeniusZeb said:

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!

Posted

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.

Posted
  On 5/13/2016 at 5:04 PM, jeffryfisher said:

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.

Posted
  On 5/13/2016 at 5:08 PM, Choonster said:

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.

Posted
  On 5/13/2016 at 10:51 PM, jeffryfisher said:

  Quote

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.

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

    • Short Term Loans Online: A Reliable Source of Fast Cash   If you are experiencing financial difficulties, you don't have to worry about this challenge. This is the quickest and best method for handling financial catastrophes. You can pick short term loans online without reluctance, and you can apply for the payday loan you want online and have it the same day without any issues. With two to four weeks to repay the loan, you may often borrow between $100 and $1000 without having to offer any collateral.   As implied by the title, those with bad credit histories—defaults, arrears, foreclosure, late or missed payments, judgments against you, insolvency or IVA, etc.—are welcome to apply for online short term loans without having to go through any challenging procedures. Interest rates are a bit high in comparison to other loans. A thorough internet search can be used to determine the greatest rate for a financed loan.   You don't have to waste your precious time searching the internet for short term funding payday loans. In just a few minutes, you can apply for the finance you desire by completing a brief online application. The lender will approve the loan once he has verified that you have provided accurate information on this brief form. This loan is carefully deposited into your bank account in the least amount of time. You can utilize the money in a number of ways without running into any problems. Usually, the money can be used to settle debts like credit card balances, overdue bank overdrafts, tuition or school fees for children, energy bills, housing costs, and more.   Loans Lucre makes it simple to apply for short term loans online, so there's no need to drive across town. Additionally, you won't have to wait weeks for a response from us. Additionally, having bad credit shouldn't be a deal-breaker. We evaluate your entire financial history rather than just your FICO score. We approve many debtors who had been rejected by banks.   Once you are approved, Loans Lucre puts your online installment loans directly into your bank account, giving you instant access to your funds. The repayment plan is broken down into simple, reasonably priced monthly installments. Loans Lucre also rejects rollovers. Instead, we help borrowers get back on track when they encounter difficulties with the repayment process. Borrowers who regularly make their payments on time are eligible for lower annual percentage rates (APRs) on their subsequent these loans. That is truly win-win!   You will be communicating with the lender whether you apply for online personal loans through a cash advance broker or directly from the lender. The cost and duration of the transaction will be increased by any third parties you deal with through the direct lender. This will lead to a faulty perception of the "instant approval" of your payday loan, in addition to raising the cost of your transaction. When asking for a payday loan, it is therefore essential that you work with a trustworthy direct lender; a lender with a solid online reputation and satisfied clients is a wise choice.   You can apply for a short term loans online through internet platforms in addition to conventional lenders. A quicker and more convenient application process is frequently provided by these platforms. In the end, it is feasible to get a $500 loan with low credit or no credit at all, but it will need effort and careful evaluation of your financial possibilities. The lender's requirements will always determine approval, so be careful to give accurate information and look into several lenders to determine which one best suit your needs. https://loanslucre.com/  
    • Apply For Fast Cash Loans Online Today To Get Money Right Away   Do you have to deal with your money issues right away? You don't need to go anywhere because you can get fast cash loans online with just a computer and an internet connection. This suggests that you don't need to waste any time applying for these loans. All you have to do is fill out the form accurately and submit it to the lender online. They will check it and determine whether to approve the loan within the specified time frame. The money is moved to your bank account shortly after approval.   The same-day financing loan facility offers the most beneficial cash assistance in quantities ranging from $100 to $1000, with a flexible payback period of 2-4 weeks from the date of acceptance. You can use the borrowed funds to cover your child's tuition or school fees, small vacation expenses, past credit card payments, laundry costs, minor house repairs, your mother's checkups, and other emergencies.   To be qualified for same day funding loans, you must meet specific conditions regardless of your credit score—fair or low. A valid proof of domicile and proof of residence for the last 12 months, a current bank account with an SSN, being employed permanently with a monthly wage of at least $1000, and being at least eighteen years of age are prerequisites. If you satisfy the qualifications, you can apply for same-day payday loans directly without undergoing a credit check if you have bankruptcy, CCJs, IVAs, foreclosure, arrears, or defaults. As a result, getting a loan is fairly easy in the current credit market.   You must complete an application with information about your bank account and job in order to apply for a fast cash loan online from a physical payday lender. You also need to provide the lender with postdated checks that will be deposited on the scheduled repayment date. In return, you get paid right away.   Applicants can apply for same day payday loans at any time, from the comfort of their homes, eliminating the need to travel across town to a payday loan outlet. However, online payday lenders do not frequently provide same-day loans. Instead, payouts are made straight into borrowers' bank accounts via the Automated Clearing House (ACH) system; processing for this method takes at least one business day.   You must think about if you can pay back the loan in full within the allotted time because same day payday loans may have payback periods as little as one week or ten days. If you are unable to pay the full amount due, the lender might accept a token payment from you. The remaining sum will be restructured as a rollover, which is a new loan with fresh interest and administrative costs and the same short payback period. After a few rollovers, a significant number of little payday loans accumulate to the point that debtors still owe more than they originally borrowed, even after making consistent payments for months or years.   You should be ready to submit the required paperwork and supporting proof when applying for a payday loans online same day with bad credit. Usually, lenders will evaluate your present financial state, work status, and loan-repayment capacity. Many lenders specialize in bad credit loans and are willing to take on the risk of lending to those with poor credit, despite the difficulties presented by a low credit score. This implies that you are not automatically denied a loan because of poor credit or no credit at all. https://nuevacash.com/
    • I have removed stevekunglib and it is still crashing again https://pastebin.com/9vE8pji0
    • It looks like an issue with stevekunglib or a mod requiring it
  • Topics

×
×
  • Create New...

Important Information

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