Skip to content

ScriptLineStudios/terrainer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

terrainer

An up to date Minecraft dirt terrain height tool. Terrainer uses a modified version of cubiomes.

Updated version of this tool - https://github.com/pseudogravity/DirtHeight

//Search the first 1M seeds for 7 high dirt columns at 0 0

#include <stdio.h>
#include <stdint.h>

#include "height.c"

int main(void) {
    for (uint64_t seed = 0; seed < 1000000; seed++) {
        int height = height_at(seed, 0, 0);
        if (height == 7) {
            printf("%ld\n", seed);
        }
    }

    return 0;
}

Running this gives us the following output:

...
940276
944200
948707
979242
986421
992942
999588

Loading up the seed 999588 in Minecraft 1.20.4 and heading to 0 0, we sure enough do find a 7 height dirt column! 2024-01-01_13 08 56

About

An up to date Minecraft terrain height tool

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages