{"id":171440,"date":"2026-06-10T00:24:23","date_gmt":"2026-06-09T21:24:23","guid":{"rendered":"https:\/\/vpesports.com\/minecraft\/mods\/world-pre-generator\/"},"modified":"2026-06-10T00:24:23","modified_gmt":"2026-06-09T21:24:23","slug":"world-pre-generator","status":"publish","type":"mod","link":"https:\/\/vpesports.com\/minecraft\/mods\/world-pre-generator\/","title":{"rendered":"World Pre Generator"},"content":{"rendered":"<p>## Version 5.X.X<br \/>\nFor older versions of the mod, check the wiki.  <\/p>\n<p>This Mod can pre generate the Minecraft dimensions per command.<br \/>\nThe Mod is only needed on the server side, but can also be used on the client side.  <\/p>\n<p>&#8212;<\/p>\n<p>You need a server to play with friends? You don&#8217;t know how to set up one? Just rent an already configured server!  <\/p>\n<p>![BisectHosting Promotion Banner](https:\/\/raw.githubusercontent.com\/GeheimagentNr1\/Online_Mod_Data\/master\/images\/bisect_hosting_banner.png)  <\/p>\n<p>Click on the picture above, select a plan (with recommended at least 6 GB),<br \/>\nuse my code **agent** to get **25%** off your first month and enjoy playing with your friends!  <\/p>\n<p>&#8212;<\/p>\n<p>## Support<br \/>\n![Supported Versions Image](https:\/\/raw.githubusercontent.com\/GeheimagentNr1\/Online_Mod_Data\/master\/Supported_Versions.png)<br \/>\nMinecraft versions, for which the mod is not released, are not supported.<br \/>\nYou can find a text version here.  <\/p>\n<p>## Hints<br \/>\nThe pre generation tasks are executed one after the other.<br \/>\nThe pre generations are continued after restarts.<br \/>\nChunks already generated are skipped on pre-generation, if the forced flag is not true.<br \/>\nIf you run semi-parallel pre generation, you should set &#8220;max-tick-time&#8221; in the &#8220;server.properties&#8221;-file to -1 to prevent crashes, because the tick time gets too long.<br \/>\nIn semi-parallel pre generation mode, multiple tasks for pre generation are started in parallel, but the execution is done the Minecraft way. As of 1.20.1, this means, that only one chunk can be generated at a time.  <\/p>\n<p>## Server Config<br \/>\nThe config file can be found in the &#8220;serverconfig&#8221; folder in the &#8220;world&#8221; folder and is named &#8220;world_pre_generator-server.toml&#8221;. The name of the world folder is set for servers in the &#8220;server.properties&#8221; file and for clients it is the name of the world\/save game in the world list, and it can be found in the &#8220;saves&#8221; folder in the &#8220;.minecraft&#8221; folder.  <\/p>\n<p>* **send_feedback**<br \/>\nShall a pre generation feedback send to all online players?<br \/>\n* **generation**<br \/>\nParameters for generation<br \/>\n  * **type**<br \/>\n  Type of generation<br \/>\n  SERIAL: Every chunk one after another is generated.<br \/>\n  SEMI_PARALLEL: Multiple chunk generation tasks are created, but the generation is still serial (speed up the chunk generation).<br \/>\n  * **semi_parallel_task_count**<br \/>\n  How many chunk generation tasks shall be start in parallel?<br \/>\n  If the value is &#8220;0&#8221;, the number of processor cores is used.<br \/>\n* **delays**<br \/>\nDelays of the print and save tasks<br \/>\n  * **print**<br \/>\n  Time between 2 status prints<br \/>\n  * **save**<br \/>\n  Time between 2 saving events<\/p>\n<p>## Commands<br \/>\n* `\/pregen list` &#8211; Lists all running pre generation tasks.<br \/>\n* `\/pregen gen <dimension> start <block|chunk> <center> <radius> [<force>]` &#8211; Creates a pre generation task with the specified centre, radius and dimension. Optional, the force flag (true, false) can be set. If it is set to true, all chunks are loaded. If it is set to false, already generated chunks are skipped. If the force flag is absent, it is set to false.<br \/>\n  * **block**: The center coordinates and the radius are in blocks.<br \/>\n  If you want to generate a 4000&#215;4000 (2000 in the positive and negative direction) from the center of the world, the command would be:<br \/>\n  `\/pregen gen minecraft:overworld start block 0 0 2000`<br \/>\n  If you want to generate a 4002&#215;4002 (2001 in the positive and negative direction) from x = 100, z = 150 of the world, the command would be:<br \/>\n  `\/pregen gen minecraft:overworld start block 100 150 2001`<br \/>\n  Hint: In the pregeneration list it will show up, with the following center and radius data, because the block data are calculated to chunk data and back:<br \/>\n  x = &#8220;round down&#8221;(100 \/ 16) * 16 = 96<br \/>\n  z = &#8220;round down&#8221;(150 \/ 16) * 16 = 144<br \/>\n  radius = &#8220;round up&#8221;(2001 \/ 16) * 16 = 2016<br \/>\n  * **chunk**: The center coordinates and the radius are in chunks.<br \/>\n  If you want to generate a 4000&#215;4000 (2000 in the positive and negative direction) from the center of the world, the command would be:<br \/>\n  `\/pregen gen minecraft:overworld start chunk 0 0 125`<br \/>\n  If you want to generate a 4002&#215;4002 (2001 in the positive and negative direction) from x = 100, z = 150 of the world.<br \/>\n  &#8220;chunk x&#8221; = &#8220;round down&#8221;(100 \/ 16) = 6<br \/>\n  &#8220;chunk z&#8221; = &#8220;round down&#8221;(150 \/ 16) = 9<br \/>\n  &#8220;chunk radius&#8221; = &#8220;round up&#8221;(2001 \/ 16) = 126<br \/>\n  The command would be:<br \/>\n  `\/pregen gen minecraft:overworld start chunk 6 9 126`<br \/>\n* `\/pregen gen <dimension> resume` &#8211; Resumes the pre generation task of the dimension.<br \/>\n* `\/pregen gen <dimension> pause` &#8211; Pauses the pre generation task of the dimension.<br \/>\n* `\/pregen gen <dimension> cancel` &#8211; Cancels the pre generation task of the dimension.<br \/>\n* `\/pregen clear` &#8211; Cancels all pre generation tasks.<br \/>\n* `\/pregen sendFeedback` &#8211; Shows, if the progression feedback is enabled or disabled.<br \/>\n* `\/pregen sendFeedback <isFeedbackEnabled>` &#8211; Enables or disables progression feedback depending on isFeedbackEnabled. Generation start and finish feedback are not affected of that.<\/p>\n<p>## Progression State<br \/>\nThe progress state computed is in chunks.<br \/>\nYou get the following information in the generation messages: &#8220;A B\/C (D%) E chunks\/s&#8221;<br \/>\n* **Dimension (A)**<br \/>\n* **Chunk generated (B)**<br \/>\n* **Total chunks to generate (C)**<br \/>\n* **Percentage of chunks for which generation is finished (D)**<br \/>\n* **Rate of Chunks per second generated between this and the last message (E)**<\/p>\n<p>&#8212;<\/p>\n<p>Thanks for the logo to Muse31.<br \/>\nYou can use this mod in non-commercial modpacks without asking.<br \/>\nYou can find more mods from me on CurseForge and Modrinth.  <\/p>\n<p>![This is a Forge mod only until 1.21.1. This is a NeoForge mod only starting 1.21.1. There will be no Fabric version. It will not be backported.](https:\/\/raw.githubusercontent.com\/GeheimagentNr1\/Online_Mod_Data\/master\/images\/mod_loader_banner.png)  <\/p>\n","protected":false},"excerpt":{"rendered":"<p>Provides a pre-generator for Minecraft worlds.<\/p>\n","protected":false},"featured_media":171441,"template":"","meta":{"_minecraft_slug":"world-pre-generator","_minecraft_project_id":"daLkM863","_minecraft_author":"GeheimagentNr1","_minecraft_license":"LicenseRef-All-Rights-Reserved","_minecraft_downloads":17110,"_minecraft_follows":29,"_minecraft_client_side":"unsupported","_minecraft_server_side":"required","_minecraft_storage_type":"zip","_minecraft_archive_name":"world-pre-generator.zip","_minecraft_size_bytes":14513658,"_minecraft_version_count":13,"_minecraft_updated_at":"2026-05-17T01:30:05.182743Z","_minecraft_date_created":"2023-04-16T00:44:51.672088Z","_minecraft_date_modified":"2026-05-02T20:30:16.746561Z","_minecraft_project_url":"https:\/\/modrinth.com\/mod\/world-pre-generator","_minecraft_icon_attachment_id":171441,"_minecraft_imported_at":"2026-06-09T21:24:23+00:00","_minecraft_import_hash":"8ae71eeb02de3284917b37d7db8f42f9","_minecraft_versions":"","_minecraft_links":"","_minecraft_gallery":"","_minecraft_api_metadata":""},"mod_category":[104,158,90,92,159],"mod_loader":[106,160],"minecraft_version":[50,53,58,59,36,60,94,102,62,37,40,73,74,38,78,79,80,81,82],"class_list":["post-171440","mod","type-mod","status-publish","has-post-thumbnail","hentry","mod_category-forge","mod_category-neoforge","mod_category-optimization","mod_category-utility","mod_category-worldgen","mod_loader-forge","mod_loader-neoforge","minecraft_version-1-17-1","minecraft_version-1-18-2","minecraft_version-1-19-4","minecraft_version-1-20","minecraft_version-1-20-1","minecraft_version-1-20-2","minecraft_version-1-20-4","minecraft_version-1-20-6","minecraft_version-1-21","minecraft_version-1-21-1","minecraft_version-1-21-10","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"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>World Pre Generator - 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\/world-pre-generator\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"World Pre Generator - Minecraft\" \/>\n<meta property=\"og:description\" content=\"Provides a pre-generator for Minecraft worlds.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vpesports.com\/minecraft\/mods\/world-pre-generator\/\" \/>\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=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/world-pre-generator\\\/\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/world-pre-generator\\\/\",\"name\":\"World Pre Generator - Minecraft\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/world-pre-generator\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/world-pre-generator\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/world-pre-generator-icon-1a302e1a42ada65db7ed5d61796c922185f109b0_96.webp\",\"datePublished\":\"2026-06-09T21:24:23+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/world-pre-generator\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/world-pre-generator\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/world-pre-generator\\\/#primaryimage\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/world-pre-generator-icon-1a302e1a42ada65db7ed5d61796c922185f109b0_96.webp\",\"contentUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/world-pre-generator-icon-1a302e1a42ada65db7ed5d61796c922185f109b0_96.webp\",\"width\":96,\"height\":93},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/world-pre-generator\\\/#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\":\"World Pre Generator\"}]},{\"@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":"World Pre Generator - 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\/world-pre-generator\/","og_locale":"en_US","og_type":"article","og_title":"World Pre Generator - Minecraft","og_description":"Provides a pre-generator for Minecraft worlds.","og_url":"https:\/\/vpesports.com\/minecraft\/mods\/world-pre-generator\/","og_site_name":"Minecraft","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/vpesports.com\/minecraft\/mods\/world-pre-generator\/","url":"https:\/\/vpesports.com\/minecraft\/mods\/world-pre-generator\/","name":"World Pre Generator - Minecraft","isPartOf":{"@id":"https:\/\/vpesports.com\/minecraft\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/world-pre-generator\/#primaryimage"},"image":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/world-pre-generator\/#primaryimage"},"thumbnailUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/world-pre-generator-icon-1a302e1a42ada65db7ed5d61796c922185f109b0_96.webp","datePublished":"2026-06-09T21:24:23+00:00","breadcrumb":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/world-pre-generator\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vpesports.com\/minecraft\/mods\/world-pre-generator\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vpesports.com\/minecraft\/mods\/world-pre-generator\/#primaryimage","url":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/world-pre-generator-icon-1a302e1a42ada65db7ed5d61796c922185f109b0_96.webp","contentUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/world-pre-generator-icon-1a302e1a42ada65db7ed5d61796c922185f109b0_96.webp","width":96,"height":93},{"@type":"BreadcrumbList","@id":"https:\/\/vpesports.com\/minecraft\/mods\/world-pre-generator\/#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":"World Pre Generator"}]},{"@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\/171440","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\/171441"}],"wp:attachment":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media?parent=171440"}],"wp:term":[{"taxonomy":"mod_category","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_category?post=171440"},{"taxonomy":"mod_loader","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_loader?post=171440"},{"taxonomy":"minecraft_version","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/minecraft_version?post=171440"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}