Xray Hacks For Eaglercraft Direct

X-Ray removes the thrill of exploration. Mining becomes a chore of walking from glowing blue dot to glowing blue dot. Most players who use X-Ray quit within a week out of boredom.


Download a pre-built Eaglercraft X-Ray client from trusted repositories (if any exist). However, these are rare because:

Safer option: Use a single-player world with the /effect command: xray hacks for eaglercraft

/effect give @p minecraft:night_vision 9999 1

(This isn't X-Ray but helps see in caves.)


The only reliable X-Ray for Eaglercraft is building a custom client with X-Ray built into the rendering engine. X-Ray removes the thrill of exploration

What you need:

Key code location: Find the RenderGlobal.java or ChunkRenderer.java equivalent in the Eaglercraft codebase. Modify the shouldRenderFace() method to hide all blocks except ores. Download a pre-built Eaglercraft X-Ray client from trusted

Example pseudocode change:

// Original: renders all blocks
// Modified: only render if block is ore or treasure
if (block == Blocks.diamond_ore || 
    block == Blocks.gold_ore || 
    block == Blocks.chest) 
    renderFace();
 else 
    skipRendering();  // makes block invisible

Compile and run:

./gradlew build
# Outputs an HTML/JS file you can host locally

This method gives you a true X-Ray that works offline or on any server (though other players won't see it – only you).


If you want to find ores without cheating (to keep the fun and your server reputation intact), try these: