Skip to main content

Documentation Index

Fetch the complete documentation index at: https://mintlify.com/Flyingbacen/Sols-Biome-Randomizer-Macro/llms.txt

Use this file to discover all available pages before exploring further.

The macro is distributed in two forms: a precompiled EXE that bundles the AutoHotkey v2 runtime (no separate installation required), and the raw AHK source that you run directly under AutoHotkey v2. Both forms share the same settings.ini file for configuration and must have it present in the same folder at launch.
1

Download the EXE

Go to the latest releases page and download Biome randomizer.exe.
2

Download settings.ini

From the same releases page (or directly from the repository), download settings.ini and place it in the same folder as the EXE. The macro reads all configuration from this file at startup and will not run without it.
3

Place both files in the same folder

Your folder should look like this:
SolsMacro/
├── Biome randomizer.exe
└── settings.ini
4

Launch the macro

Double-click Biome randomizer.exe. The control window will open immediately. No installer or administrator privileges are required.
The AHK source version uses #Include OCR.ahk, #Include CaptureScreen.ahk, and #Include CreateFormData.ahk at the top of the script. If any of those files is missing or in a different folder, AutoHotkey will throw a file-not-found error at launch. Keep all files together in one directory.

Required Files

FileVersionDescription
Biome randomizer.ahk / Biome randomizer.exeBothThe main script (AHK version) or compiled executable (EXE version). Entry point for the entire macro.
settings.iniBothStores all configuration: inventory coordinates, crafting coordinates, cooldown values, AFK interval, toggles, and Discord webhook details. Written back to disk on exit.
CaptureScreen.ahkAHK onlyScreen-capture helper library used to take a PNG screenshot of the Roblox window for upload when Eden is detected.
OCR.ahkAHK onlyWrapper around the Windows OCR engine (Windows.Media.Ocr). Used to read inventory item names and detect Eden on-screen.
CreateFormData.ahkAHK onlyBuilds the multipart/form-data request body used when uploading screenshot files to Catbox.

Build docs developers (and LLMs) love