Jump to content

TheCrafter4000

Forge Modder
  • Posts

    33
  • Joined

  • Last visited

Everything posted by TheCrafter4000

  1. You must make a new instance of a BlockPos with the three Integer: new BlockPos( x, y, z )
  2. Your onBlockActivated methode has not the right arguments: onBlockActivated(World worldIn, int x, int y , int z, IBlockState state, EntityPlayer playerIn, EnumFacing side, float hitX, float hitY, float hitZ) Right is: onBlockActivated(World worldIn, BlockPos pos, IBlockState state, EntityPlayer playerIn, EnumFacing side, float hitX, float hitY, float hitZ)
  3. Your BasicBlock#getFacingFromEntity() Method is empty
  4. Write a second class that extends your TileEnity and register it.
  5. You must Override the getActualState() Methode in your Block class
  6. http://bedrockminer.jimdo.com/modding-tutorials/basic-modding-1-8/blocks-dropping-special-items/
×
×
  • Create New...

Important Information

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