Skip to content

Latest commit

Β 

History

History
37 lines (30 loc) Β· 1.07 KB

File metadata and controls

37 lines (30 loc) Β· 1.07 KB

πŸ”Œ EzHitboxes

Hitboxes on Minecraft 1.16.5

⚑ How to configure?

  • Change Size
  • Rainbow Watermark (You can turn it off)
  • Easily To Configure

Binds:
I - Turn OFF Watermark
K - Add Size To Hitboxes
J - Reduce The Size Of Hitboxes

Tutorial: Click (in Russian)

❓ How it Works?

    public void onUpdate(RenderPlayerEvent e) {
        Entity player = e.getEntity();
        
        if (player != Minecraft.getInstance().player) {
            player.setBoundingBox(new AxisAlignedBB(
                            player.getX() - size,
                            player.getBoundingBox().minY,
                            player.getZ() - size,
                            player.getX() + size,
                            player.getBoundingBox().maxY,
                            player.getZ() + size
                    )
            );
        }
    }

πŸ“± Screenshots

Screenshot_20220524_201426