looking for a mod to pre-generate a world map

  • Please make sure you are posting in the correct place. Server ads go here and modpack bugs go here
  • FTB will be shutting down this forum by the end of July. To participate in our community discussions, please join our Discord! https://ftb.team/discord

krustykrab

New Member
Jul 29, 2019
10
0
0
I am looking for something like Minecraft Land Generator (MLG). This tool basically generates your world with a given dimension size ( ie generate 1000x1000 area)

This will give you clean square or circle generated world maps that can be rendered in dynmap.

But MLG does not work so well with FTB/Monster. At least I was not very successful.

We don't use bukkit or MCPc+. Something like World Border would be nice.

This is for server side, but I can generate it on client side and move to serve if needed.

Other than flying around the world, what are my options?

Bonus if it generates other dimensions as well!

thanks
 

Bigpak

New Member
Jul 29, 2019
539
3
1
Why is prof mobius's mods so helpful and useful? :) I swear opis has helped me out so much finding lag.
 
Last edited:

krustykrab

New Member
Jul 29, 2019
10
0
0
Actually, I came up with something simple.

  • start server
  • login to server
  • op your user account from the minecraft server console (or you could die from falling!)
  • go to server, open powershell session
  • update this code with your username.

$z=-1500
$username = "nachosYUM"
do{
$x=-1500
do {
write-host"/tp $username $x 200 $z";
$x=$x+100;
}
while ( $x-le1510 )
$z=$z+100
}
while ( $z-le1510 )

  • it will generate something like this
/tp nachosYUM 500 200 1500
/tp nachosYUM 600 200 1500
/tp nachosYUM 700 200 1500
/tp nachosYUM 800 200 1500
/tp nachosYUM 900 200 1500

  • copy paste that into your minecraft server console.

it will teleport you around a area 3000x3000 (from -1500,-1500 to 1500,1500)

dynmap may take a server restart to kick back in. if you have multiple cpus, increase dynmap thread count and tile render counts.

quick and dirty.