Skip to content

Latest commit

 

History

History
45 lines (37 loc) · 1.78 KB

File metadata and controls

45 lines (37 loc) · 1.78 KB

Diablo II Ressurrected Auto Potion


Tool for Diablo 2: Resurrected written in GoLang. Based on d2rgo library by hectorgimenez
Automatically uses HP or Mana Potion when Low Life or Low Mana (also for the merc)
Parameter configuration on config/config.yaml

Instructions

- Windows Ready Binary

  • Windows .zip - Binary compiled for Windows (just run main.exe)

Or

- Build/Execute from Source

  • Download and Install GoLang
  • Clone repository:
git clone https://github.com/Hefero/D2R-AutoPotion-Go
  • Install Autohotkey and compile gui.ahk using Ahk v2
  • That can be done via below command line on windows prompt or right click on gui.ahk -> More options -> Compile script (GUI) and select V2 as base file
"C:\Program Files\AutoHotkey\Compiler\Ahk2Exe.exe" /in gui.ahk /base "C:\Program Files\AutoHotkey\v2\AutoHotkey64.exe"
  • Compile and execute main.exe:
cd D2R-AutoPotion-Go
go build -ldflags -H=windowsgui main.go
main.exe

Libraries

  • data - D2R Game data structures
  • memory - D2R memory reader (it provides the data structures)

Other Tools