Skip to content

Bobastic/Recipinator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Path of Exile Recipinator

A calculator for optimizing recombinator crafting in Path of Exile.

Features

  • Calculate optimal recipes for any target item (up to 3p3s)
  • See expected costs, base items needed, and recombinator uses
  • Track your inventory of failed crafts to reduce costs
  • Visual step-by-step breakdown with probabilities
  • Collapsible repeated steps for clarity

Usage

Web App (Recommended)

uv run python app.py

Then visit http://localhost:8080 in your browser

Command Line

# Basic usage
uv run python recomb.py 3p1s

# With inventory
uv run python recomb.py 3p1s --inventory 2p1s 2p0s

# Custom costs
uv run python recomb.py 3p1s --base-cost 2.0 --dust-cost 0.5

How It Works

The calculator uses dynamic programming to find optimal crafting recipes:

  • Items are processed bottom-up by total mods (p+s)
  • Each item stores the top-K cheapest recipes
  • Inventory items let you skip steps you've already crafted
  • Only the first occurrence of each inventory item is used per recipe

Item Notation

  • 1p0s = 1 prefix, 0 suffix
  • 2p1s = 2 prefix, 1 suffix
  • etc.

Mostly vibecoded with Claude, I'll remake it properly one day.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages