Posted August 22, 201510 yr Hi, I would like to know if its possible to add a lore on a block with different types. Basically I want to add a lore on all the ores in my mod but i dont know how to specify which block to put the specific lore. (Kinda hard to explain). Please help!!
August 22, 201510 yr Create your own class that extends ItemBlock and overrides Item#addInformation . This method has an ItemStack argument, which has a metadata value. Register your Block using GameRegistry#registerBlock(Block, Class<? extends ItemBlock>, String) instead of GameRegistry#registerBlock(Block, String) . 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.
August 22, 201510 yr Author I made the ItemBlock class already but how do actaully implement the addInformation method in? (Sorry inexperienced here...)
August 22, 201510 yr You override the method... Don't PM me with questions. They will be ignored! Make a thread on the appropriate board for support. 1.12 -> 1.13 primer by williewillus. 1.7.10 and older versions of Minecraft are no longer supported due to it's age! Update to the latest version for support. http://www.howoldisminecraft1710.today/
August 22, 201510 yr I made the ItemBlock class already but how do actaully implement the addInformation method in? (Sorry inexperienced here...) Override the method and add a String to the List for each tooltip line. You should add the lines to your lang files and use StatCollector.translateToLocal to translate them to the client's language. 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.