Jump to content

Lewie

Members
  • Posts

    11
  • Joined

  • Last visited

Converted

  • Gender
    Undisclosed
  • Personal Text
    I am new!

Lewie's Achievements

Tree Puncher

Tree Puncher (2/8)

1

Reputation

  1. at maxpowa.ayriahud.handlers.RenderHandler.renderGameOverlayEventHandler(RenderHandler.java:75) This is telling you there is a problem with ayriahud, remove it.
  2. FYI: In 1.8 you have to do it like this: world.setBlockState(BlockPos, IBlockState); Example: IBlockState dirtBlock = Blocks.dirt.getDefaultState(); world.setBlockState(new BlockPos(x, y, z), dirtBlock); or with metadata IBlockState plankBlock = Blocks.planks.getStateFromMeta(3); //This will be a jungle plank world.setBlockState(new BlockPos(x, y, z), plankBlock); Hope this helps you when you decide to update to 1.8 . EDIT: Read what diesieben07 said.
  3. Sounds awesome No I haven't tried the mod yet unfortunately but I will as soon as I have time.
  4. Open source? or not? Structures are cool, they make minecraft less boring Do they have any loot inside? Or is that a future plan? Maybe you could make some traps too
  5. Does the game crash when you try (Post Error)? Or does it just not render at all?
  6. Are you calling the method which holds RenderingRegistry.registerEntityRenderingHandler(ArcanePowerMatrix.class, new RenderPowerMatrix(new ModelPowerMatrix(), 0F)); in your main class?
  7. Could you explain how you fixed your problem? I get the exact same error and it's likely I made the same mistake as you. Thanks. Edit:Fixed.
  8. Nobody is going to give you a block of code that tells you how to do it, that's not how you learn Post your code and people will be happy to give you hints in the right direction/tell you where you've gone wrong.
  9. I copied your code, put changeSettings() in PostInit and I did a quick test to mine diamond with a gold pick - it worked.
  10. All you need: @EventHandler public void postInit(FMLPostInitializationEvent event) { changeSettings() }
×
×
  • Create New...

Important Information

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