Xray Hacks For: Eaglercraft

Yes and no. It depends entirely on the server’s anti-cheat setup.

Communities like "Eaglercraft Client" or "Raven B+ for Eaglercraft" have released compiled HTML files that come pre-packaged with toggles for Xray, Fullbright, Killaura, and Fly hacks.

How to get them:

The truth: Most of these are malware traps. Since Eaglercraft runs locally in your browser, a malicious HTML file can steal your Discord token, browser cookies, or crypto wallets. Only run client files from sources you 100% trust.

If you have a water bucket, pour it into deep ravines. The water clears lava pockets, revealing exposed ores without risk of burning. xray hacks for eaglercraft

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

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.

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).


Some Eaglercraft servers run older builds that have a JavaScript injection bug via chat/books.

Steps (only works on vulnerable servers): Yes and no

Why this fails: Most modern Eaglercraft servers patch this exploit. Do not paste random code from strangers – it could be malicious.

Eaglercraft has taken the Minecraft community by storm. For the uninitiated, Eaglercraft is a fascinating project that allows you to play Minecraft directly in your web browser—no Java, no Bedrock launcher, no installation required. It runs entirely on JavaScript and WebGL, making it the go-to choice for school Chromebooks, locked-down work computers, or anyone who wants a quick, no-fuss Minecraft fix.

However, with its rising popularity, a specific curiosity has emerged among its player base: X-Ray hacks. In standard Minecraft, X-Ray mods and texture packs are infamous for giving players an unfair advantage by making the world see-through, revealing ores, dungeons, and player bases.

But do X-Ray hacks work in Eaglercraft? If so, how can you use them? And what are the real consequences of trying? This 2,000+ word deep dive covers everything you need to know. The truth: Most of these are malware traps


Before we dig into hacks, let’s establish the battleground. Eaglercraft is a community-driven project that recreated Minecraft (specifically version 1.5.2 and 1.8.8) to run entirely within a web browser using JavaScript and WebGL. Unlike the official Minecraft: Java Edition, Eaglercraft does not require a Mojang account, a launcher, or a local installation. You simply open a URL in Chrome, Edge, or Firefox, and you are playing.

Because it runs on different architecture (JavaScript vs. Java), traditional Minecraft hacks—like modified .jar files or Forge mods—do not work on Eaglercraft. This is the primary point of confusion for new players. You cannot download an "Xray mod" from CurseForge and drop it into Eaglercraft.