Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/scriptlinestudios/terrainer
An up to date Minecraft terrain height tool
https://github.com/scriptlinestudios/terrainer
Last synced: about 1 month 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 1 year ago)
- Default Branch: main
- Last Pushed: 2024-01-01T11:25:52.000Z (about 1 year ago)
- Last Synced: 2024-01-01T12:20:10.353Z (about 1 year ago)
- Language: C
- Size: 12.7 KB
- Stars: 0
- Watchers: 1
- 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!
![2024-01-01_13 08 56](https://github.com/ScriptLineStudios/terrainer/assets/85095943/f8aa50f1-b743-4fc5-9dc2-18b09fb49fcd)