Slime Chunk Finder — Java & Bedrock

Exact slime chunk maps for Java (seed-based) and Bedrock (same layout in every world). Toggle the edition above the grid, then pan to your farm spot.

Loading tool…

Complete Slime Chunk Guide

How Slime Chunks Work

Java Edition: slime chunks depend on the world seed (~10% of chunks). Enter /seed and this tool runs the same Random.nextInt(10) == 0 mix Minecraft uses.

Bedrock Edition: slime chunks do not use the world seed. Every Bedrock world shares the same layout. Switch to Bedrock above, enter coordinates, and plan your farm — verified against the reverse-engineered MCPE / BDS Mersenne Twister check (same approach as Slime Finder PE).

Building an Efficient Slime Farm

Location Selection

  • Find clusters: Enable "Show Clusters" to find groups of adjacent slime chunks. Larger clusters = more spawning space.
  • Check simulation distance: Yellow highlighting shows chunks within your sim distance setting. Slimes won't spawn outside this range.
  • Minimize cave interference: Choose locations where you can easily light up or spawn-proof nearby caves to maximize slime spawns.
  • Accessibility: Build near your base or create good transportation (nether portal, ice boats, etc.).

Farm Construction

  • Y-level range: Slimes spawn from Y=0 to Y=39 in slime chunks. Clear this entire range or build multiple platforms.
  • Platform spacing: Space platforms 3-4 blocks apart vertically to maximize spawning layers.
  • Chunk boundaries: Stay within the chunk! The tool shows you exact block coordinates (X: 0-15, Z: 0-15 within each chunk).
  • Spawning pads: Use the "Platform Points" suggestion for a 12×12 interior grid, leaving 2-block margins from chunk edges.
  • Collection system: Add water streams, trapdoors, or iron golems to push/kill slimes toward a collection point.

Spawn Requirements

  • Must be in a slime chunk (shown in green on the map)
  • Y-level below 40 (typically Y=0 to Y=39)
  • Minimum 2.04×2.04×2.04 block space for spawning
  • Light level can be anything (unlike most mobs)
  • Player within simulation distance
  • Not too close to player (24+ blocks away)

Using This Tool Effectively

Getting Your Seed

  • Java Edition: Type /seed in chat (requires cheats or operator permissions)
  • Single Player: Open world to LAN with cheats, then use /seed
  • String seeds: Enter text seeds (they'll be hashed automatically)

Navigation Tips

  • F3 coordinates: Press F3 in-game, copy your position, then paste in the "F3 Coordinates" box and click Parse.
  • Quick spawn: Click "Spawn (0, 0)" to center the view on world spawn.
  • Center on chunk: Select any chunk, then click "Center Selected" to zoom in on that area.
  • Share your map: Click "Share Link" to get a URL with all your settings - perfect for planning with friends.

Advanced Features

  • BigInt Mode: For extreme coordinates beyond ±16 million blocks, enable this for perfect accuracy.
  • Cluster Analysis: Shows the largest group of connected slime chunks - ideal for mega-farms.
  • Swamp Overlay: Paste swamp biome chunk coordinates to visualize dual slime/swamp farm opportunities.
  • Adjacent Counter: Select a slime chunk to see how many neighboring chunks are also slime chunks (shows as "+1", "+2", etc).

Optimization Strategies

Maximize Rates

  1. Light up all caves within 128 blocks to force spawns in your farm
  2. Build in multiple adjacent slime chunks (check the "+X" indicator)
  3. Stack platforms to maximize spawning surface area
  4. AFK spot should be 24-32 blocks from nearest spawning platform
  5. Keep farm centered in your simulation distance circle

Multi-Chunk Farms

When you select a slime chunk, look at the "Adjacent Slime Chunks" count. A chunk with 2+ adjacent slime chunks is excellent for building larger farms. The tool highlights these connections on the grid.

Common Questions

Why aren't slimes spawning in my farm?

  • Verify you're in the correct chunk coordinates (check both X and Z ranges)
  • Ensure farm is below Y=40
  • Check that you're within simulation distance (default is 10 chunks)
  • Light up nearby caves - slimes compete with other mobs for the mob cap
  • Make sure platforms have enough space (at least 2×2×2 minimum)

Do slime chunks work in all game versions?

Java and Bedrock both support slime chunks, but the layouts differ. Use the edition toggle — Java needs your seed; Bedrock does not. The Bedrock formula has been stable since early Pocket Edition and still matches modern BDS.

Can I use this for multiplayer servers?

Yes! Just get the world seed from a server operator. All players on the same seed will have identical slime chunks. Use the "Share Link" feature to coordinate farm locations with teammates.

What about swamp slime spawning?

Swamp slimes spawn on the surface in swamp biomes at night with specific light levels (≤7) during certain moon phases. This is independent of slime chunks. You can use the Swamp Overlay feature to mark swamp biomes and potentially build dual-purpose farms in chunks that are both swamp biome AND slime chunks.

Technical Details

Java Edition (seed-based):

new Random(
  seed +
  (chunkX * chunkX * 4987142L) +
  (chunkX * 5947611L) +
  (chunkZ * chunkZ * 4392871L) +
  (chunkZ * 389711L) ^ 987234911L
).nextInt(10) == 0

Bedrock Edition (seed-independent; credits @protolambda / @jocopa3 / Slime Finder PE):

seed = (chunkX * 0x1f1f1f1f) ^ chunkZ   // uint32
n = MT19937(seed).first_uint32()
isSlime = (n % 10 == 0)

CraftMC

Your ultimate resource for Minecraft tools and guides.

Professional ToolsExpert GuidesActive Support

Popular Tools

Quick Links

Also from us

We also run a Fortnite tools site — free calculators, weapon guides, map drops, and season helpers.

Visit FortniteTools.com

© 2026 CraftMC. All rights reserved. Also check out our Fortnite tools site.