Schedule1-Brute-Force is a brute-force tool designed to find the most profitable mix in Schedule I.
It uses two parameters: baseId and substanceCount.
Originally built with Bun, a fast JavaScript runtime, this tool also runs perfectly with Node.js.
To start the tool, run the following command:
bun index.js {baseId} {substanceCount}
# or
node index.js {baseId} {substanceCount}Replace {baseId} and {substanceCount} with the appropriate values. For example:
bun index.js 2 3
# or
node index.js 2 3This will return the most profitable mix using Green Crack as the base with 3 other substances.
0: OG Kush1: Sour Diesel2: Green Crack3: Grand Daddy Purp4: Cocaine5: Meth6: Shroom
- implementing CLI interaction with readline or inquirer
- adding gpu workers with gpu.js or other (not sure)