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 sameDocumentation 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.
settings.ini file for configuration and must have it present in the same folder at launch.
- EXE Version
- AHK Source Version
Download the EXE
Go to the latest releases page and download
Biome randomizer.exe.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.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
| File | Version | Description |
|---|---|---|
Biome randomizer.ahk / Biome randomizer.exe | Both | The main script (AHK version) or compiled executable (EXE version). Entry point for the entire macro. |
settings.ini | Both | Stores all configuration: inventory coordinates, crafting coordinates, cooldown values, AFK interval, toggles, and Discord webhook details. Written back to disk on exit. |
CaptureScreen.ahk | AHK only | Screen-capture helper library used to take a PNG screenshot of the Roblox window for upload when Eden is detected. |
OCR.ahk | AHK only | Wrapper around the Windows OCR engine (Windows.Media.Ocr). Used to read inventory item names and detect Eden on-screen. |
CreateFormData.ahk | AHK only | Builds the multipart/form-data request body used when uploading screenshot files to Catbox. |