A Windows overlay tool that automatically uses potions when your HP drops below a configurable threshold. Features a PyQt5 overlay, hotkey controls, and direct memory reading for reliable automation.
A few important notes:
- While it's not a guarantee of survival, it will save you most of the time. It works with any class or build, just make sure you always have enough potions!
- Because of how the game handles health and damage over time (DoT), if you take a lot of DoT or very fast hits, your HP can drop below the threshold very quickly, multiple times or stay below the threshold even with potion drinks.
- The potion will trigger as soon as your real HP drops below the threshold, but if the accumulated or incoming damage is higher than what a potion can heal, you might still die.
- Auto Potion: Automatically triggers a potion when HP falls below a set percentage.
- Potion log: The overlay displays a log of recent potion uses, showing HP values and timestamps for each use.
- Overlay UI: Movable, lockable PyQt5 overlay showing status, HP, and logs.
- Customizable Hotkeys: Easily change hotkeys for toggling, hiding, and closing the overlay.
- Safe & Configurable: All settings in a user-friendly config file.
You can use the tool in three ways:
- Download the latest release from the Releases page.
- Run the
.exefile directly.
- Clone the repository:
git clone https://github.com/leobrqz/AutoPot-DR
cd AutoPot-DR- Install dependencies:
pip install -r requirements.txtNow either run it natively via python or build the executable.
- Run the application:
python src/main.py- Build the executable with PyInstaller:
./build_release.sh- The executable will be in the
release/folder.
The application creates a config_user.ini file on first run with default settings. You can modify this file to customize the tool's behavior.
health_threshold(default:30.0)- The health percentage threshold at which the tool will automatically use a potion.
pos_x(default:200)pos_y(default:880)locked(default:False)- Whether the overlay is locked (cannot be moved) on startup.
Customize the global hotkeys used to control the tool:
hotkey_lock(default:home)- Toggle overlay lock/unlock (prevents moving the overlay).
hotkey_toggle(default:insert)- Toggle auto potion feature on/off.
hotkey_close(default:end)- Close the application.

