Posted January 31, 20178 yr Hi again. Does anyone know how exactly the Block/item registering in 1.8.9 works? The Problem I have with this, is that addVariantName is depreceated (doesn't work anymore) and replaced by registerItemVariants, like in 1.9. But most of 1.9's API like manual Registration (setRegistryName etc.) isn't implemented yet. At the moment I have: the actual block registration on server and client side in the pre-init phase: GameRegistry.registerBlock(block, ModWoodItem.class, name, block, subblockNames.toArray(new String[subblockNames.size()])); //name = Blockstatename ...the Item Variant Model Registration on the client side in the pre-init phase: ModelBakery.registerItemVariants(Item.getItemFromBlock(block), new ResourceLocation(iconName)); //iconName = modid:unwrappedandunlocalizedname_variant and the "Block-To-Model" Registration on the Client side in the pre-init phase: for (DefinesWood type:subBlocks()) { final String subName = type.speciesName(); final int dMD=((ModWoodBlock.EnumType)type.woodSubBlockVariant()).getId(); final String iconName = getUnlocalizedName().substring(getUnlocalizedName().indexOf('.')+1)+"_"+subName; // iconName = modid:unwrappedandunlocalizedname_variant ModelLoader.setCustomModelResourceLocation(Item.getItemFromBlock(this),dMD,new ModelResourceLocation(iconName,"inventory")); } The Blocks are registered, but the Models are not and forge says Model definition for location dendrology:planks0#variant=acemus not found ... Model definition for location dendrology:planks_acemus#inventory not found ... I know it must be something simple I overlooked (like the last time), but I just don't get it So I post it here. "Driven by hope that there is hope again" - random guy in an RPG Maker Trashgame The fact that there isn't ANYTHING about 1.8.8 and 1.8.9 on the web except finished mods bothers me for some reason... Sincerely, A13XIS
January 31, 20178 yr Author I'm updating an old Mod and I would like to update it to EVERY version. Already finished with 1.8. So 1.8.8 or 1.8.9 are next. Sincerely, A13XIS
January 31, 20178 yr Author Sorry. You know how we germans are But seriously. I just want to know. Every knowledge can be useful, even how to mod outdated MC versions Sincerely, A13XIS
January 31, 20178 yr Every knowledge can be useful, even how to mod outdated MC versions Uh, no. The stuff that hasn't changed may be useful, but you can learn it just as well on a newer version. The stuff that has changed is useless to learn precisely because it has changed. Don't make mods if you don't know Java. Check out my website: http://shadowfacts.net Developer of many mods
February 1, 20178 yr Author Yes it does. I'm talking about research, man. If I selled the mod, I would just need to know how to work with the newest version, since there are more people using it, but as a gamedev I want to learn how the different versions of forge/minecraft work. Not by looking at the deobfuscated code, the practical way. Alright, since this version is not supported anymore, I will ask the question in an unofficial forum, no problem. Thank you nevertheless. Sincerely, A13XIS
February 1, 20178 yr We never said that version isn't supported anymore Classes: 94 Lines of code: 12173 Other files: 206 Github repo: https://github.com/KokkieBeer/DeGeweldigeMod
February 1, 20178 yr Author No. As far as I know 1.8 is still supported. It's just that moderators normally don't try to persuade you to use newer versions, if the one you are working for is still supported. Sincerely, A13XIS
February 1, 20178 yr They're telling you, that if you want to learn how it works it's just better to learn it for the newest version, so you don't have to throw (almost) everything you know away everytime you get a step closer to the newest version... Classes: 94 Lines of code: 12173 Other files: 206 Github repo: https://github.com/KokkieBeer/DeGeweldigeMod
February 1, 20178 yr Author You are right. I'd still rather make a mod for every MC release having a stable Forge version. Since I plan to "resurrect" more mods and there are people, who can't or don't want to play the newer versions (e.g. because of modpack compatibility), I need to know how mod in 1.8 as well Sincerely, A13XIS
February 2, 20178 yr Author All right. Found a solution. Learning by example is more interesting, than pure theory after all. Edited February 2, 20178 yr by TheA13X Sincerely, A13XIS
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.