Jump to content

SanaRinomi

Members
  • Posts

    72
  • Joined

  • Last visited

Everything posted by SanaRinomi

  1. Here are the screenshots: http://imgur.com/a/1p9Rv And here's the log I don't see how this didn't come to my mind earlier, but the thing is you didn't apply the directional properties to your block because you used your BasicBlocks class instead of a custom one that applies those properties. You need to implement Block#getMetaFromState(...), Block#getStateFromMeta(...), and Block#createBlockState(). Oh! That was my problem! Thanks a million for the help!
  2. Here are the screenshots: http://imgur.com/a/1p9Rv And here's the log
  3. Yes. Could you post your Block class? Sure! Here!
  4. I'm pretty sure, because I put the treeTap files where I usually have the rest of my blocks Is the name of your blockModel the same as the name it is looking for. As the pictures you posted makes me think that they are not even getting the model. But the item model is. The block model was always in mymod:models/block and the item model is really just this: { "parent": "morethingsmod:block/treeTap" }
  5. Here are some screenshots: http://imgur.com/a/kG0Sl
  6. I'm pretty sure, because I put the treeTap files where I usually have the rest of my blocks
  7. So what do you recommend I do? I'm just trying to render the block from my model .json file.
  8. Hey, there! I don't know if I'm being stupid or what, but my Tree Tap block doesn't texture properly. Here is the code: Thank you in advanced for any help! <3
  9. I'm looking for an easy to understand tutorial on sub blocks for 1.10.2. Thanks in advanced.
  10. Thx again. But now I have a different problem... When adding elements to the List they add null and not the item. The code between adding items and adding blocks are very similar so I'll just give you the block one because it's the first one called: https://github.com/SanaRinomi/More_Things_Mod_Minecraft_Forge/blob/master/main/java/com/holydevils/blocks/ModBlocks.java
  11. Thats not how ANY of this works. The list you are passed in is empty, you're supposed to fill it with items... Go look at the default implementation of that function it's pretty freaking obvious. I went thought minecraft whole Creative Tab registry already.
  12. At the beginning, yes, but I need a function that I can call after it because the list will only contain the things I want after they've been registered and I can't move the Creative Tabs function after registering the items/blocks because sid items/blocks won't show up in the tabs. Thus I need to have a function I can use after registering the items/blocks to resort the creative tabs.
  13. I have multiple creative tabs that I initialize before I create items/blocks. Now, my question is how I can reorder said blocks and items after I've created both the creative tabs and items/blocks (because the List<> that organizes the creative tabs gets fleshed out during the registration process, I'll leave a link to the item registry as an example)? Here's my code if your wondering. Main class: https://github.com/SanaRinomi/More_Things_Mod_Minecraft_Forge/blob/master/main/java/com/holydevils/main/MainRegistry.java Creative Tabs folder: https://github.com/SanaRinomi/More_Things_Mod_Minecraft_Forge/tree/master/main/java/com/holydevils/creativetabs Item registry: https://github.com/SanaRinomi/More_Things_Mod_Minecraft_Forge/blob/master/main/java/com/holydevils/items/ModItems.java
  14. But how could it be calling it with nothing if the method already requires the same item/block that itemOrder and blockOrder need.
  15. I was ordering my items in my creative tabs by when they were registered and now my game crashes upon registering items or blocks. Game crash items: Game crash blocks: My itemReg code: https://github.com/SanaRinomi/More_Things_Mod_Minecraft_Forge/blob/master/main/java/com/holydevils/items/ModItems.java My blockReg code: https://github.com/SanaRinomi/More_Things_Mod_Minecraft_Forge/blob/master/main/java/com/holydevils/blocks/ModBlocks.java
  16. Hi, I was just hoping someone could tell me how I can organize my creative tabs by order that they are registered?
  17. Yeah I didn't notice this before, but making a github is recommended for later posts. Ok, Thx!
  18. I made a GitHub just now and I've uploaded the main folder, here: https://github.com/SanaRinomi/More_Things_Mod_Minecraft_Forge
×
×
  • Create New...

Important Information

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