MCPcopy Index your code
hub / github.com/19MisterX98/SeedcrackerX

github.com/19MisterX98/SeedcrackerX @2.16

Chat with this repo
repository ↗ · DeepWiki ↗ · release 2.16 ↗ · + Follow
442 symbols 1,321 edges 70 files 1 documented · 0%
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

SeedCrackerX [Github All Releases]

Readme Language

中文 Русский Українська Türkçe

I'm active on:

Version Tab

Minecraft Version SeedCrackerX version Dependencies
26.1 2.16.0 Fabric mod loader 0.14.0+
1.21.11 2.15.6 Fabric mod loader 0.14.0+
1.21.9-1.21.10 2.15.5 Fabric mod loader 0.14.0+
1.21.6-1.21.8 2.15.4 Fabric mod loader 0.14.0+
1.21.5 2.15.3 Fabric mod loader 0.14.0+
1.21.4 2.15.2 Fabric mod loader 0.14.0+
1.21.2-1.21.3 2.15.1 Fabric mod loader 0.14.0+
1.21-1.21.1 2.15.0 Fabric mod loader 0.14.0+
1.20.6 2.14.7 Fabric mod loader 0.14.0+
1.20.4 2.14.6 Fabric mod loader 0.14.0+
1.20.2 2.14.5 Fabric mod loader 0.14.0+
1.20-1.20.1 2.14.4 Fabric mod loader 0.14.0+
1.19.4 2.14.2 Fabric mod loader 0.14.0+
1.19.3 2.13.1 Fabric mod loader 0.14.0+
1.19-1.19.2 2.13 Fabric mod loader 0.14.0+
1.18.2 2.12 Fabric mod loader
1.18-1.18.1 2.11.4 Fabric mod loader
1.17-1.17.1 2.10.1 Fabric mod loader
1.16.5 2.7 Fabric mod loader, Fabric API, Mod Menu

Installation

Download and install the fabric mod loader

Download the latest release or pre-release of SeedCrackerX

put the .jar file in your mod directory, either %appdata%/.minecraft/mods/ folder for the vanilla launcher or your own instance folder.

Optional

Download the latest release of Multiconnect or ViaFabric to connect to servers on lower MC versions

Database

Since the mod is used by many people, I have decided to create a Google sheet for server seeds. If you enable the database option in the config gui the mod will send cracked seeds from 10+ player servers directly to the Google sheet. You also need a minecraft license

The Sheet

Usage

1.17.X and below

Overworld

Run around in the world until the mod finds a dungeon. After the mod found one the cracking process starts automatically. If it doesn't give you a world seed, you may need to find another dungeon.

The Nether

Run around in the warped fungus biome until the mod finds big fungus and starts cracking.

The End

You have to find 5 (or more) end cities or end gateways and then return to the center of the end dimension to obtain the pillar seed, after that cracking should begin.

Video guides:

### Supported Decorators - Dungeon - End Gateway - Desert Well - Emerald Ore - Warped Fungus

1.18.X and higher

Dungeon cracking, fungus cracking don't work anymore.

Overworld

Go to the config menu via "/seedcracker gui" (1.19.3+) or "/seed gui" (before 1.19.3) and make sure that Emeralds, Gateways, Biomes, Desert wells and Warped fungi are disabled since they aren't updated and can give wrong data.

For cracking, you now need to get 40 bits of liftable structures and 32 regular bits from the listed ones:

### Supported Structures

- Igloo - 9 regular and liftable bits
- Desert Pyramid - 9 regular and liftable bits
- Jungle Temple - 9 regular and liftable bits
- Swamp Hut - 9 regular and liftable bits
- Shipwreck - 8 regular and liftable bits
- Pillager Outpost - 9 liftable bits
- Ocean Monument - 9 regular bits

Any combination is valid. For example: 3 shipwrecks, 1 pyramid and 1 igloo. You can track your process with "/seed data bits" (look at the bits count for liftable structures) A structure is found when there is an outline around it. After you get enough, the cracking process starts automatically. This process takes around 1-5 mins. The mod may ask you to find additional structures after this. It's more likely to happen with fewer bits and structures of the same type. After reducing your structure seeds, the mod will brute force your world seed via dungeon positions or hashed seed.

The Nether

Fungus cracking don't work anymore, so there are no way to find nether seed using SeedcrackerX, however you can try to crack it yourself by using Nether_Bedrock_Cracker

The End

You have to find 5 (or more) end cities (fill up regular bits) and then return to the center of the end dimension to obtain the pillar seed, after that cracking should begin.

  • You need to disable end gateways!

Commands

If version of your mod is older than 2.13.1, use prefix - /seed instead of /seedcracker

### GUI Command - /seedcracker gui

Opens the config gui where you can modify settings like the server mc-version, all finders, database and rendermode. There are command alternatives for most of this, but they shouldn't be used anymore.

### Finder Reload Command - /seedcracker finder reload

Rescans the loaded Chunks to find structures that weren't found before.

### Data Command - /seedcracker data clear

Clears all the collected data without requiring a relog. This is useful for multi-world servers.

  • /seedcracker data bits

Display how many bits of information have been collected. Normal bits are used for end pillar + structure cracking. Cracking starts at 32 bits. Lifting bits are used for liftable structure cracking. Cracking starts at 40 bits.

  • /seed data restore

When you leave a world, the mod will save currently collected structure information in a file of the .minecraft/config directory. After rejoining, you can restore it with this command.

### Debug Command - /seedcracker cracker debug

Additional info is shown

### Database Command - /seedcracker database

Opens a google sheet that is maintained by the mod

Video Tutorials

Neil's: - 1.15 - 1.16

Dyiing's - 1.18

Mine: - Dungeon cracking & end pillar cracking - Nether cracking - Structure cracking

Setting up the Workspace

-Clone the repository.

-Run gradlew genSources <idea|eclipse>.

Building the Mod

-Update the version in build.gradle and fabric.mod.json.

-Run gradlew build.

API for other mods

  • Include seedcracker-api and jitpack in your build.gradle

    repositories { mavenCentral() maven { url "https://jitpack.io" } }

    dependencies { implementation (include('com.github.19MisterX98.SeedcrackerX:seedcrackerx-api:master-SNAPSHOT')) {transitive = false} }

  • Add a class that implements the api interface

    package misterx.myMod.seedManagemnet.SeedCrackerEP

    import kaptainwutax.seedcrackerX.api.SeedCrackerAPI;

    public class SeedCrackerEP implements SeedCrackerAPI { @Override public void pushWorldSeed(long seed) { //do something Foo.bar(seed) } }

  • Tell fabric.mod.json where your entrypoint is

    "entrypoints": { "main": [...], "client": [...], "server": [...], "seedcrackerx": [ "misterx.myMod.seedManagemnet.SeedCrackerEP" ] },

Contributors

KaptainWutax - Author of the original mod

neil - Video Tutorials

Nekzuris and [ItzSkyReed](https://g

Extension points exported contracts — how you extend this code

FinderBuilder (Interface)
(no doc) [8 implementers]
src/main/java/kaptainwutax/seedcrackerX/finder/FinderBuilder.java
DataAddedEvent (Interface)
(no doc) [1 implementers]
src/main/java/kaptainwutax/seedcrackerX/cracker/DataAddedEvent.java
SeedCrackerAPI (Interface)
(no doc)
src/main/java/kaptainwutax/seedcrackerX/api/SeedCrackerAPI.java

Core symbols most depended-on inside this repo

addBlock
called by 232
src/main/java/kaptainwutax/seedcrackerX/finder/structure/PieceFinder.java
add
called by 142
src/main/java/kaptainwutax/seedcrackerX/finder/BlockUpdateQueue.java
fillWithOutline
called by 100
src/main/java/kaptainwutax/seedcrackerX/finder/structure/PieceFinder.java
get
called by 65
src/main/java/kaptainwutax/seedcrackerX/config/Config.java
add
called by 53
src/main/java/kaptainwutax/seedcrackerX/cracker/decorator/Decorator.java
offset
called by 44
src/main/java/kaptainwutax/seedcrackerX/render/Cuboid.java
warn
called by 39
src/main/java/kaptainwutax/seedcrackerX/util/Log.java
get
called by 38
src/main/java/kaptainwutax/seedcrackerX/SeedCracker.java

Shape

Method 360
Class 75
Enum 4
Interface 3

Languages

Java100%

Modules by API surface

src/main/java/kaptainwutax/seedcrackerX/cracker/storage/DataStorage.java19 symbols
src/main/java/kaptainwutax/seedcrackerX/finder/Finder.java17 symbols
src/main/java/kaptainwutax/seedcrackerX/cracker/decorator/Decorator.java15 symbols
src/main/java/kaptainwutax/seedcrackerX/finder/structure/PieceFinder.java13 symbols
src/main/java/kaptainwutax/seedcrackerX/cracker/storage/TimeMachine.java13 symbols
src/main/java/kaptainwutax/seedcrackerX/cracker/decorator/WarpedFungus.java13 symbols
src/main/java/kaptainwutax/seedcrackerX/cracker/decorator/Dungeon.java12 symbols
src/main/java/kaptainwutax/seedcrackerX/finder/structure/TrialChambersFinder.java10 symbols
src/main/java/kaptainwutax/seedcrackerX/finder/decorator/EndPillarsFinder.java10 symbols
src/main/java/kaptainwutax/seedcrackerX/finder/decorator/DungeonFinder.java10 symbols
src/main/java/kaptainwutax/seedcrackerX/cracker/decorator/EmeraldOre.java10 symbols
src/main/java/kaptainwutax/seedcrackerX/cracker/decorator/DeepDungeon.java10 symbols

For agents

$ claude mcp add SeedcrackerX \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact

Ask about this repo answers extend the page