Jump to content
  • Home
  • Files
  • Docs
Topics
  • All Content

  • This Topic
  • This Forum

  • Advanced Search
  • Existing user? Sign In  

    Sign In



    • Not recommended on shared computers


    • Forgot your password?

  • Sign Up
  • All Activity
  • Home
  • Mod Developer Central
  • Modder Support
  • [1.8.9] Items'n'Blocks - How to use the messed up api?
Currently Supported: 1.16.X (Latest) and 1.15.X (LTS)
Sign in to follow this  
Followers 0
TheA13X

[1.8.9] Items'n'Blocks - How to use the messed up api?

By TheA13X, January 31, 2017 in Modder Support

  • Reply to this topic
  • Start new topic

Recommended Posts

TheA13X    0

TheA13X

TheA13X    0

  • Tree Puncher
  • TheA13X
  • Members
  • 0
  • 30 posts
Posted January 31, 2017

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...

  • Quote

Sincerely,

A13XIS

Share this post


Link to post
Share on other sites

diesieben07    7697

diesieben07

diesieben07    7697

  • Reality Controller
  • diesieben07
  • Forum Team
  • 7697
  • 56420 posts
Posted January 31, 2017

Why are you using 1.8.9? You should be using 1.11.2.

  • Quote

Share this post


Link to post
Share on other sites

TheA13X    0

TheA13X

TheA13X    0

  • Tree Puncher
  • TheA13X
  • Members
  • 0
  • 30 posts
Posted January 31, 2017

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.

  • Quote

Sincerely,

A13XIS

Share this post


Link to post
Share on other sites

diesieben07    7697

diesieben07

diesieben07    7697

  • Reality Controller
  • diesieben07
  • Forum Team
  • 7697
  • 56420 posts
Posted January 31, 2017

That is most likely not worth it.

  • Quote

Share this post


Link to post
Share on other sites

TheA13X    0

TheA13X

TheA13X    0

  • Tree Puncher
  • TheA13X
  • Members
  • 0
  • 30 posts
Posted January 31, 2017

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

  • Quote

Sincerely,

A13XIS

Share this post


Link to post
Share on other sites

shadowfacts    100

shadowfacts

shadowfacts    100

  • Dragon Slayer
  • shadowfacts
  • Forge Modder
  • 100
  • 588 posts
Posted January 31, 2017

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.

  • Quote

Don't make mods if you don't know Java.

Check out my website: http://shadowfacts.net

Developer of many mods

Share this post


Link to post
Share on other sites

TheA13X    0

TheA13X

TheA13X    0

  • Tree Puncher
  • TheA13X
  • Members
  • 0
  • 30 posts
Posted February 1, 2017

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.

  • Quote

Sincerely,

A13XIS

Share this post


Link to post
Share on other sites

Kokkie    55

Kokkie

Kokkie    55

  • Dragon Slayer
  • Kokkie
  • Forge Modder
  • 55
  • 796 posts
Posted February 1, 2017

We never said that version isn't supported anymore

  • Quote

Classes: 94

Lines of code: 12173

Other files: 206

Github repo: https://github.com/KokkieBeer/DeGeweldigeMod

Share this post


Link to post
Share on other sites

TheA13X    0

TheA13X

TheA13X    0

  • Tree Puncher
  • TheA13X
  • Members
  • 0
  • 30 posts
Posted February 1, 2017

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.

 

 

  • Quote

Sincerely,

A13XIS

Share this post


Link to post
Share on other sites

Kokkie    55

Kokkie

Kokkie    55

  • Dragon Slayer
  • Kokkie
  • Forge Modder
  • 55
  • 796 posts
Posted February 1, 2017

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...

  • Quote

Classes: 94

Lines of code: 12173

Other files: 206

Github repo: https://github.com/KokkieBeer/DeGeweldigeMod

Share this post


Link to post
Share on other sites

TheA13X    0

TheA13X

TheA13X    0

  • Tree Puncher
  • TheA13X
  • Members
  • 0
  • 30 posts
Posted February 1, 2017

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

 

  • Quote

Sincerely,

A13XIS

Share this post


Link to post
Share on other sites

TheA13X    0

TheA13X

TheA13X    0

  • Tree Puncher
  • TheA13X
  • Members
  • 0
  • 30 posts
Posted February 2, 2017 (edited)

All right. Found a solution.

Learning by example is more interesting, than pure theory after all.

Edited February 2, 2017 by TheA13X
  • Quote

Sincerely,

A13XIS

Share this post


Link to post
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.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  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.

    • Insert image from URL
×
  • Desktop
  • Tablet
  • Phone
Sign in to follow this  
Followers 0
Go To Topic Listing



  • Recently Browsing

    No registered users viewing this page.

  • Posts

    • Luis_ST
      [1.16.5] Help with custom Backpack (slot background and mouse wheel move)

      By Luis_ST · Posted 1 minute ago

      it is an example of how the slot background should work   using a SimpleChannel?   and then send the change in the container to the server?
    • diesieben07
      When I try to run my mod after I just added Deferred Registries it crashes

      By diesieben07 · Posted 18 minutes ago

      You need to change one of them, yes.
    • ThisIsNotOriginal
      When I try to run my mod after I just added Deferred Registries it crashes

      By ThisIsNotOriginal · Posted 26 minutes ago

      so do i change the name in my ItemsList?
    • diesieben07
      [1.16.5] Help with custom Backpack (slot background and mouse wheel move)

      By diesieben07 · Posted 36 minutes ago

      I do not understand. How is the offhand slot relevant regarding the background color of your slot?   Assuming you want a keyboard key to open the GUI: Make a KeyBinding. Use ClientTickEvent to check if its pressed. If it is, send a packet to the server, which then calls NetworkHooks#openGui. You can preemptively also open it on the client to hide the latency of the two network roundtrips.
    • diesieben07
      When I try to run my mod after I just added Deferred Registries it crashes

      By diesieben07 · Posted 38 minutes ago

      That is not how you make a Git repo. At all.   This creates a BlockItem for all of your blocks. One of your blocks has the registry name "copper_ore", hence this will create a BlockItem with registry name "copper_ore". This then creates another Item with registry name "copper_ore". This is not allowed, registry names must be unique.
  • Topics

    • Luis_ST
      4
      [1.16.5] Help with custom Backpack (slot background and mouse wheel move)

      By Luis_ST
      Started Yesterday at 07:47 AM

    • ThisIsNotOriginal
      19
      When I try to run my mod after I just added Deferred Registries it crashes

      By ThisIsNotOriginal
      Started 16 hours ago

    • Extrupt
      5
      Forge won't fully download

      By Extrupt
      Started 1 hour ago

    • HDMI_Steckdose
      1
      Forge error Forge won't open

      By HDMI_Steckdose
      Started 47 minutes ago

    • Retsal
      7
      [1.16.x] Custom block as a shop

      By Retsal
      Started Yesterday at 01:04 PM

  • Who's Online (See full list)

    • Draco18s
    • Luis_ST
    • diesieben07
    • Rixie1213
    • ThisIsNotOriginal
    • AYISGTO
    • We Random
    • -MCS_Gaming-
    • Moohoy
    • PlasmaPig13
    • WooBoo
    • Katie328
  • All Activity
  • Home
  • Mod Developer Central
  • Modder Support
  • [1.8.9] Items'n'Blocks - How to use the messed up api?
  • Theme

Copyright © 2019 ForgeDevelopment LLC · Ads by Longitude Ads LLC Powered by Invision Community