Jump to content

Maksimka3168

Members
  • Posts

    5
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Maksimka3168's Achievements

Tree Puncher

Tree Puncher (2/8)

0

Reputation

  1. ... public ActionResultType use(BlockState stateBlock, World worldIn, BlockPos posBlock, PlayerEntity playerIn, Hand playerHand, BlockRayTraceResult traceBlock) { if (!worldIn.isClientSide) { worldIn.setBlock(new BlockPos(posBlock.getX(), posBlock.getY() + 1, posBlock.getZ()), Blocks.OBSIDIAN.defaultBlockState(), 1); } } ... If I do so, the block will spawn invisible
  2. For example, I will spawn a block under a certain condition (when clicking on the block), I need to compare both on the server and on the client, right? And also when I click, the tile value is checked, but for some reason it changes on the client, and the value remains default on the server.
  3. Thank you very much, now I will sit and figure out how it all works. Thanks again!
  4. If it's not difficult, could you give me an example of how custom networks packet should work.
  5. I have a block interface in which I use this.addButton(new Button(...)) to create buttons. I need that when clicking on any button, data is saved in Tileentity. The click check occurs in the Screen class, which is inherited from ContainerScreen<...>. How is it possible to get a Tile Entity in this class for further modification. Or are there any other ways?
×
×
  • Create New...

Important Information

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