Skip to content

Latest commit

 

History

History
33 lines (27 loc) · 972 Bytes

README.md

File metadata and controls

33 lines (27 loc) · 972 Bytes

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