Jump to content

larsgerrits

Members
  • Posts

    3462
  • Joined

  • Last visited

  • Days Won

    17

Everything posted by larsgerrits

  1. The TNT Block extends the Block class, so you will be able to override the methods from the Block class which are not overridden in the TNT Block.
  2. JSON models can only rotate at multiples of 22.5 degrees. If you want a rotation value of anything but that, you'd have to use a Wavefront model (.obj).
  3. Minecraft 1.7.10 is no longer supported on this forum. Update to 1.10.2.
  4. Uhmm, wrong thread? Don't you mean this one: http://www.minecraftforge.net/forum/index.php?topic=42618.0?
  5. at mod.flatcoloredblocks.model.BakedVarientBlock.<init>(BakedVarientBlock.java:133) This is an issue with Flat Colored Blocks. Contact the mod author. Did you make sure you have installed the latest version?
  6. You have to ask yourself: is it necessary to optimize it right now? Is your mod causing lag right now? Is it causing a lot of unnecessary networking? If not, you most likely don't need any optimization.
  7. Try refreshing or rebuilding your project in Eclipse.
  8. Caused by: java.lang.NoClassDefFoundError: lib/item/ItemUtil at subaraki.telepads.handler.ConfigurationHandler.<init>(ConfigurationHandler.java:40) Not a Forge problem, report to the mod author.
  9. Update to 1.10.2, 1.7 is no longer supported here. It's even worse:
  10. For Eclipse, running gradlew setupDecompWorkspace and gradlew eclipse is enough to update Forge.
  11. 1.7.10 is no longer supported on this forum. Use 1.10.2.
  12. This topic has been moved to Off-topic. [iurl]http://www.minecraftforge.net/forum/index.php?topic=42645.0[/iurl]
  13. http://lmgtfy.com/?q=intellij+import+shortcut
  14. You have to check if ItemStack#getItem() is equal to Items.DYE IIRC, and check if ItemStack#getMetadata() is equal to the metadata of bonemeal, which is 15 as you already know. I don't have access to my IDE atm, so the method names might not be the exact names.
  15. Minecraft 1.7.10 is no longer supported on this forum, use 1.10.2.
  16. Try setting Block#useNeighborBrightness to true in your Block constructor.
  17. its not a block, its a Item :3 Derp... Even though, you should still change over to the registry name.
  18. Don't use getUnlocalizedName() for registering the block, either use the registry name ( getRegistryName() , or a custom name.
  19. I assume the following properties have the following amount of possibilities: - HALF: 3 possibilities (lower, middle and upper) - FACING: 4 possibilities (north, south, east, west) - OPEN: 2 possibilities (open or closed) This makes for a total of 3x4x2=24 possibilities you can have. Now, metadata can only have 16 different values (0-15), which is not enough to store the 24 possibilities you have. You probably want to use a TileEntity for your blocks.
  20. You can only use that on the client side, as the Minecraft class is client-side only.
  21. Client side != Singleplayer! In singleplayer there is still a server running, only accessible for you unless you open to LAN. World#isRemote is true on the client side (rendering side), and false on the server side (logical side).
  22. This topic has been moved to Support & Bug Reports. [iurl]http://www.minecraftforge.net/forum/index.php?topic=42614.0[/iurl]
  23. 1.7.10 is no longer supported on this forum.
  24. Thank you, this worked for me in 1.10. You do know this post is almost 2 years old? Don't reply to it then.
  25. TheGreyGhost has an implementation of a Block that takes over the model of the Block below here. You could adapt this for what you are trying to do.
×
×
  • Create New...

Important Information

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