Skip to content

DesktopFolder/WitchHuts

Folders and files

NameName
Last commit message
Last commit date

Latest commit

b9db7fb · May 14, 2022

History

22 Commits
Dec 21, 2021
Dec 22, 2021
Dec 21, 2021
May 14, 2022
Dec 22, 2021
Dec 26, 2021
Dec 26, 2021
Dec 26, 2021
May 14, 2022
Dec 26, 2021
Dec 26, 2021

Repository files navigation

Witch Hut Finder (C++)

A port & partial (WIP) reimplementation of hube12/WitchHutFinder in C++ for Minecraft version 1.18.

To build, you will want CMake and a working C++ compiler.

# Clone the repository, and Cubiomes (required dependency)
git clone --recursive https://github.com/DesktopFolder/WitchHuts && cd WitchHuts
# Create the build directory (for cleanliness)
mkdir build && cd build
# Generate the build files & build the project
# -DOPTIMIZE_SEED=1234 (for example seed 1234) if you know the seed prior to running the tool
# Otherwise, see below for using the CLI to specify a seed
cmake .. -DOPTIMIZE_SEED=YOURSEED && make
# Run the finder
./WitchHutFinder

Quick Documentation

Providing an output file:

# --output/-o
./WitchHutFinder -o output_file
# Will print progress indicators every 10 huts found.

Providing a seed:

# --seed/-s
./WitchHutFinder -s some_seed