{"id":136937,"date":"2026-06-08T05:11:13","date_gmt":"2026-06-08T02:11:13","guid":{"rendered":"https:\/\/vpesports.com\/minecraft\/mods\/seedmapper\/"},"modified":"2026-06-08T05:11:13","modified_gmt":"2026-06-08T02:11:13","slug":"seedmapper","status":"publish","type":"mod","link":"https:\/\/vpesports.com\/minecraft\/mods\/seedmapper\/","title":{"rendered":"SeedMapper"},"content":{"rendered":"<p>**Always** use the latest (stable) version of SeedMapper! If you want to play on an older version of Minecraft, use ViaFabricPlus. This mod allows you to use the latest features of SeedMapper, while still being able to play on older Minecraft versions.<\/p>\n<p># SeedMapper<br \/>\nIn-game Minecraft Fabric mod that allows you to do various things with the world seed. For reference, have a look at the [features](#features) this mod has. Keep in mind though, this mod requires you to have access to the seed. If the seed is not known, you could crack it using SeedCrackerX by 19MisterX98. For questions and support please head to my Discord.<\/p>\n<p>## Installation<br \/>\n1. Install the Fabric Loader.<br \/>\n2. Download the Fabric API and move it to your mods folder:<br \/>\n   &#8211; Linux\/Windows: `.minecraft\/mods`.<br \/>\n   &#8211; Mac: `minecraft\/mods`.<br \/>\n3. Download SeedMapper from the releases page and move it to your mods folder.<\/p>\n<p>## IMPORTANT<br \/>\nYou need to have at least Java 23 installed to use this mod. I recommend to get Java 23 (or higher) from adoptium.net. Next, configure your Minecraft launcher to use this release of Java.<\/p>\n<p>&#8211; Vanilla launcher: Go to `Installations` -> `Edit` -> `More options` -> `Java executable`.<br \/>\n&#8211; MultiMC: Go to `Edit Instance` -> `Settings` -> `Java` -> `Java Installation`.<br \/>\n&#8211; PrismLauncher: Go to `Settings` -> `Java` -> `Java Runtime` -> `Auto-Detect&#8230;`.<br \/>\n&#8211; Modrinth App: Go to `Instance settings` -> `Java and memory` -> `Custom Java installation` -> `Browse`<\/p>\n<p>Sometimes it may be necessary to click the option for skipping the Java compatibility check.<\/p>\n<p>If you are on Windows, make sure to select `javaw.exe`, not `java.exe`.<\/p>\n<p>If you run into issues, contact your launcher&#8217;s support.<\/p>\n<p>## Features<br \/>\nBefore using any of these commands, make sure the seed has been configured using `\/sm:config Seed set <seed>`.<\/p>\n<p>### Seed map<br \/>\nUsage: `\/sm:seedmap`<\/p>\n<p>Opens an explorable seed map based on the configured seed. You can move the map by dragging the mouse, and zoom in or out by using the scroll wheel. You can toggle what features are visible by clicking the feature toggles at the top of the screen. This command is especially useful in combination with the `\/sm:source` command!<\/p>\n<p>### Biome locating<br \/>\nUsage: `\/sm:locate biome <biome>`.<\/p>\n<p>Locates a given biome closest to the player. All biomes in all dimensions are supported.<\/p>\n<p>### Structure locating<br \/>\nUsage: `\/sm:locate feature <structure>[<pieces>]{<variants>}`.<\/p>\n<p>Locates a given structure closest to the player. All structures in all dimensions are supported. However, due to limitations in the underlying library, some structures (in particular desert pyramids, jungle temples and woodland mansions) may result in occasional false positives. For more advanced querying you can also use piece and variant data to further restrict the search. For example, the following command will search for end cities with ships: `\/sm:locate feature structure end_city[end_ship]`.<\/p>\n<p>### Ore vein locating<br \/>\nUsage: `\/sm:locate orevein (copper|iron)`.<\/p>\n<p>Locates an ore vein closest to the player. The coordinates of the first ore vein block found will be returned. After this, you can use [`\/sm:highlight orevein [chunks]`](#ore-vein-highlighting) to highlight the other ores.<\/p>\n<p>### Loot locating<br \/>\nUsage: `\/sm:locate loot <amount> <item> [<enchantment conditions>]`.<\/p>\n<p>Locates chest loot closest to the player. All versions from 1.13 onwards are supported. SeedMapper will search through the chest loot of structures to find loot that matches the item and enchantment conditions. Note that queries for unobtainable loot and illegal enchantment combinations are not prevented by the command. If a search is taking too long, you should probably cancel it using `\/sm:stoptask`.<\/p>\n<p>### Ore highlighting<br \/>\nUsage: `\/sm:highlight block <block> [chunks]`.<\/p>\n<p>Highlights the specified block in the world. All versions from 1.13 onwards are supported. Due to high dependence on the `OCEAN_FLOOR_WG` heightmap, coal, copper and emerald ore locations may be off.<\/p>\n<p>### Ore vein highlighting<br \/>\nUsage: `\/sm:highlight orevein [chunks]`.<\/p>\n<p>Highlights ore veins in the world. Raw ore blocks that generate as part of the ore vein are highlighted distinctly. Filler blocks are ignored.<\/p>\n<p>### Slime chunk locating<br \/>\nUsage: `\/sm:locate slimechunk`.<\/p>\n<p>Locates a slime chunk closest to the player. This will always be accurate.<\/p>\n<p>### Source mutation<br \/>\nUsage: `\/sm:source (run)|(as <entity>)|(positioned <position>)|(rotated <rotation>)|(in <dimension>)|(versioned <version>)|(seeded <seed>)`.<\/p>\n<p>Executes a given command from a modified source. For example, modifying the source&#8217;s position will execute the command as if you were in that position. This command is really powerful, use it!<\/p>\n<p>## Building from source<br \/>\nThis mod internally uses (a fork of) the C library cubiomes by Cubitect. Java bindings for this library were created with (also a fork of) jextract. The bindings use the Foreign Function &#038; Memory API from Project Panama. See CreateJavaBindingsTask.java for the Gradle task that automates this.<\/p>\n<p>To build the mod locally, follow these steps:<\/p>\n<p>1. Clone the repository:<br \/>\n   &#8220;`shell<br \/>\n   git clone &#8211;recurse-submodules https:\/\/github.com\/xpple\/SeedMapper<br \/>\n   cd SeedMapper<br \/>\n   &#8220;`<br \/>\n2. Compile cubiomes to a shared library. MSVC cannot be used to build the project! The following is for Windows:<br \/>\n   &#8220;`shell<br \/>\n   cd src\/main\/c\/cubiomes<br \/>\n   cmake -S . -B build -DCMAKE_BUILD_TYPE=Release<br \/>\n   cmake &#8211;build build &#8211;config Release<br \/>\n   cp build\/cubiomes.dll ..\/..\/resources\/cubiomes.dll<br \/>\n   cd ..\/..\/..\/..\/<br \/>\n   &#8220;`<br \/>\n3. Install LLVM (version 13.0.0 is recommended) and set the environment variable `LLVM_HOME` to the directory where LLVM was installed.<br \/>\n4. Compile jextract. Again, the following is for Windows:<br \/>\n   &#8220;`shell<br \/>\n   cd jextract<br \/>\n   .\/gradlew &#8211;stacktrace -Pjdk_home=&#8221;$env:JAVA_HOME&#8221; -Pllvm_home=&#8221;$env:LLVM_HOME&#8221; clean verify<br \/>\n   cd ..\/<br \/>\n   &#8220;`<br \/>\n5. Build the mod:<br \/>\n   &#8220;`shell<br \/>\n   .\/gradlew build<br \/>\n   &#8220;`<br \/>\n   You should find the Java bindings in `src\/main\/java\/com\/github\/cubiomes`.<\/p>\n<p>Lastly, you can also consult the GitHub Actions workflow file, which contains complete build instructions for each major OS.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In-game Minecraft Fabric mod that allows you to do various things with the world seed.<\/p>\n","protected":false},"featured_media":136938,"template":"","meta":{"_minecraft_slug":"seedmapper","_minecraft_project_id":"C4GbEnuY","_minecraft_author":"xpple","_minecraft_license":"LGPL-3.0-or-later","_minecraft_downloads":89083,"_minecraft_follows":229,"_minecraft_client_side":"required","_minecraft_server_side":"unsupported","_minecraft_storage_type":"zip","_minecraft_archive_name":"seedmapper.zip","_minecraft_size_bytes":223955805,"_minecraft_version_count":93,"_minecraft_updated_at":"2026-05-15T21:14:26.647253Z","_minecraft_date_created":"2021-05-25T19:12:48.761097Z","_minecraft_date_modified":"2026-05-14T20:11:14.911835Z","_minecraft_project_url":"https:\/\/modrinth.com\/mod\/seedmapper","_minecraft_icon_attachment_id":136938,"_minecraft_imported_at":"2026-06-08T02:11:14+00:00","_minecraft_import_hash":"64f7139904ecb15d0fc53472f25ae9c5","_minecraft_versions":"","_minecraft_links":"","_minecraft_gallery":"","_minecraft_api_metadata":""},"mod_category":[97,89,92,159],"mod_loader":[99],"minecraft_version":[48,49,50,51,52,53,54,55,56,57,58,59,36,60,93,94,101,102,62,37,40,801,41,73,74,38,78,79,80,81,82,83,167,163],"class_list":["post-136937","mod","type-mod","status-publish","has-post-thumbnail","hentry","mod_category-fabric","mod_category-game-mechanics","mod_category-utility","mod_category-worldgen","mod_loader-fabric","minecraft_version-1-16-5","minecraft_version-1-17","minecraft_version-1-17-1","minecraft_version-1-18","minecraft_version-1-18-1","minecraft_version-1-18-2","minecraft_version-1-19","minecraft_version-1-19-1","minecraft_version-1-19-2","minecraft_version-1-19-3","minecraft_version-1-19-4","minecraft_version-1-20","minecraft_version-1-20-1","minecraft_version-1-20-2","minecraft_version-1-20-3","minecraft_version-1-20-4","minecraft_version-1-20-5","minecraft_version-1-20-6","minecraft_version-1-21","minecraft_version-1-21-1","minecraft_version-1-21-10","minecraft_version-1-21-10-rc1","minecraft_version-1-21-11","minecraft_version-1-21-2","minecraft_version-1-21-3","minecraft_version-1-21-4","minecraft_version-1-21-5","minecraft_version-1-21-6","minecraft_version-1-21-7","minecraft_version-1-21-8","minecraft_version-1-21-9","minecraft_version-26-1","minecraft_version-26-1-1","minecraft_version-26-1-2"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>SeedMapper - Minecraft<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/vpesports.com\/minecraft\/mods\/seedmapper\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"SeedMapper - Minecraft\" \/>\n<meta property=\"og:description\" content=\"In-game Minecraft Fabric mod that allows you to do various things with the world seed.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vpesports.com\/minecraft\/mods\/seedmapper\/\" \/>\n<meta property=\"og:site_name\" content=\"Minecraft\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/seedmapper\\\/\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/seedmapper\\\/\",\"name\":\"SeedMapper - Minecraft\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/seedmapper\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/seedmapper\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/seedmapper-icon-046499defa3cd8d270be7b4fbcbcbfb74f5fff36_96.webp\",\"datePublished\":\"2026-06-08T02:11:13+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/seedmapper\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/seedmapper\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/seedmapper\\\/#primaryimage\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/seedmapper-icon-046499defa3cd8d270be7b4fbcbcbfb74f5fff36_96.webp\",\"contentUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/seedmapper-icon-046499defa3cd8d270be7b4fbcbcbfb74f5fff36_96.webp\",\"width\":96,\"height\":96},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/seedmapper\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Mods\",\"item\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"SeedMapper\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/\",\"name\":\"Minecraft\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"SeedMapper - Minecraft","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/vpesports.com\/minecraft\/mods\/seedmapper\/","og_locale":"en_US","og_type":"article","og_title":"SeedMapper - Minecraft","og_description":"In-game Minecraft Fabric mod that allows you to do various things with the world seed.","og_url":"https:\/\/vpesports.com\/minecraft\/mods\/seedmapper\/","og_site_name":"Minecraft","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/vpesports.com\/minecraft\/mods\/seedmapper\/","url":"https:\/\/vpesports.com\/minecraft\/mods\/seedmapper\/","name":"SeedMapper - Minecraft","isPartOf":{"@id":"https:\/\/vpesports.com\/minecraft\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/seedmapper\/#primaryimage"},"image":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/seedmapper\/#primaryimage"},"thumbnailUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/seedmapper-icon-046499defa3cd8d270be7b4fbcbcbfb74f5fff36_96.webp","datePublished":"2026-06-08T02:11:13+00:00","breadcrumb":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/seedmapper\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vpesports.com\/minecraft\/mods\/seedmapper\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vpesports.com\/minecraft\/mods\/seedmapper\/#primaryimage","url":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/seedmapper-icon-046499defa3cd8d270be7b4fbcbcbfb74f5fff36_96.webp","contentUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/seedmapper-icon-046499defa3cd8d270be7b4fbcbcbfb74f5fff36_96.webp","width":96,"height":96},{"@type":"BreadcrumbList","@id":"https:\/\/vpesports.com\/minecraft\/mods\/seedmapper\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/vpesports.com\/minecraft\/"},{"@type":"ListItem","position":2,"name":"Mods","item":"https:\/\/vpesports.com\/minecraft\/mods\/"},{"@type":"ListItem","position":3,"name":"SeedMapper"}]},{"@type":"WebSite","@id":"https:\/\/vpesports.com\/minecraft\/#website","url":"https:\/\/vpesports.com\/minecraft\/","name":"Minecraft","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/vpesports.com\/minecraft\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod\/136937","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod"}],"about":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/types\/mod"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media\/136938"}],"wp:attachment":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media?parent=136937"}],"wp:term":[{"taxonomy":"mod_category","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_category?post=136937"},{"taxonomy":"mod_loader","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_loader?post=136937"},{"taxonomy":"minecraft_version","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/minecraft_version?post=136937"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}