https://github.com/scriptlinestudios/terrainer
An up to date Minecraft terrain height tool
https://github.com/scriptlinestudios/terrainer
Last synced: 8 months ago
JSON representation
An up to date Minecraft terrain height tool
- Host: GitHub
- URL: https://github.com/scriptlinestudios/terrainer
- Owner: ScriptLineStudios
- License: mit
- Created: 2023-12-30T11:58:08.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-01-01T11:25:52.000Z (about 2 years ago)
- Last Synced: 2025-03-26T08:27:13.055Z (11 months ago)
- Language: C
- Size: 12.7 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 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
```C
//Search the first 1M seeds for 7 high dirt columns at 0 0
#include
#include
#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:
```bash
...
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!
