View Categories

Pre-generating Your World with Chunky

MINECRAFT: FORGE MODPACK

Generating the terrain ahead of time makes the game stutter less when players head into new land. If your modpack includes Chunky, this is something you can run yourself from the console.

About 6 min readUpdated 2026-09-07For Minecraft: Forge Modpack

What pre-generation is

Minecraft builds the terrain as players move into it. That work is heavy, so heading into unexplored land can make the game hitch.

Pre-generation gets that work out of the way in advance. Build the terrain while nobody is playing, and the load during play drops.

Check whether Chunky is available

Chunky is a mod that comes with the modpack. It is not something we install as standard. If your modpack does not include it, the commands on this page will not work.

Checking is easy. With the server running, type this on the Console screen.

chunky

If it prints a list of usage, you have it. A response such as Unknown command means the modpack does not include it.

Running it

With the server running, type these into the Console one line at a time. You do not need a leading /.

chunky world minecraft:overworld
chunky center 0 0
chunky shape square
chunky radius 3000
chunky start
CommandWhat it does
chunky world minecraft:overworldPicks the world to work on (the normal one)
chunky center 0 0Sets the centre point (the origin)
chunky shape squareSets the shape to generate
chunky radius 3000Sets the radius from the centre, in blocks
chunky startStarts it

Once it starts, the console shows Task running for minecraft:overworld along with the number of chunks processed. When it is done you get Task finished and the total time.

Pausing, resuming and cancelling

CommandWhat it does
chunky pausePauses
chunky continueCarries on from where it paused
chunky cancelCancels
You can widen the area later. Running again with a larger radius does not redo what is already generated — only the difference is built. Starting with a smaller radius and widening as you go is a sensible way to work.

How long it takes, roughly

RadiusChunksDiskTime
3,000about 140,000about 2 GBaround 10 hours
5,000about 390,000about 5 GBabout a day
10,000about 1,560,000about 21 GBfour to five days

These come from running chunky radius 500 in our own testing (4,225 chunks / 18 minutes 36 seconds / about 58 MB added, so roughly 13.96 KB per chunk). Your modpack and world settings will move these numbers.

Plan within the disk your plan gives you. A radius of 10,000 uses about 21 GB. The disk on each plan is listed on Minecraft: Forge Modpack dedicated servers. If it is not enough, you can change plan while keeping your data.

While it runs

The server gets heavy while this runs. Run it when nobody is playing — overnight, or on a day you are not on.
Taking a backup first is a good habit. See Backups and restoring.

Restarting the server stops the job. To pick it back up, run chunky continue once it is online again.

Scroll to top