Fix orb coordinates from pixel-level analysis: health center x=400, mana center x=1550

This commit is contained in:
Hoid 2026-02-14 12:01:38 +00:00
parent 35a1944179
commit 957629ec2e
9 changed files with 32 additions and 32 deletions

View file

@ -35,12 +35,12 @@ func main() {
// Define regions for 1080p (from config.go — calibrated from botty reference)
regions := map[string]image.Rectangle{
"health_globe": image.Rect(240, 870, 600, 1080),
"mana_globe": image.Rect(1330, 870, 1690, 1080),
"health_slice": image.Rect(415, 915, 425, 1060),
"mana_slice": image.Rect(1505, 915, 1515, 1060),
"health_orb": image.Rect(240, 870, 600, 1080),
"mana_orb": image.Rect(1330, 870, 1690, 1080),
"health_globe": image.Rect(325, 915, 470, 1040),
"mana_globe": image.Rect(1475, 900, 1655, 1055),
"health_slice": image.Rect(395, 920, 405, 1040),
"mana_slice": image.Rect(1505, 900, 1515, 1055),
"health_orb": image.Rect(325, 915, 470, 1040),
"mana_orb": image.Rect(1475, 900, 1655, 1055),
"xp_bar": image.Rect(0, 1058, 1920, 1080),
"belt": image.Rect(500, 990, 900, 1040),
"minimap": image.Rect(1600, 0, 1920, 320),