Skip to content
This repository has been archived by the owner on Feb 16, 2021. It is now read-only.

Commit

Permalink
reduce time during chest clicks
Browse files Browse the repository at this point in the history
  • Loading branch information
cottiAC committed Mar 3, 2017
1 parent 7b0dfc0 commit 2d19efe
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions zombidle.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ collectchests(curworld) {
ControlClick, %scrollright%, %windowtitle%,,,, Pos NA
sleep 75
}
sleep 5000
sleep 500
ControlClick, x560 y606,%windowtitle%,,,, Pos NA
sleep 5000
ControlClick, x860 y620,%windowtitle%,,,, Pos NA
Expand Down Expand Up @@ -358,7 +358,7 @@ collectchests(curworld) {
ControlClick, %scrollright%, %windowtitle%,,,, Pos NA
sleep 75
}
sleep 5000
sleep 500
ControlClick, x911 y470,%windowtitle%,,,, Pos NA
sleep 5000
lootprio()
Expand All @@ -382,7 +382,7 @@ collectchests(curworld) {
ControlClick, %scrollright%, %windowtitle%,,,, Pos NA
sleep 75
}
sleep 5000
sleep 500
ControlClick, x521 y379,%windowtitle%,,,, Pos NA
sleep 5000
lootprio()
Expand Down Expand Up @@ -418,7 +418,7 @@ collectchests(curworld) {
ControlClick, %scrollright%, %windowtitle%,,,, Pos NA
sleep 75
}
sleep 5000
sleep 500
ControlClick, x702 y365,%windowtitle%,,,, Pos NA
sleep 5000
lootprio()
Expand Down Expand Up @@ -581,7 +581,10 @@ upgrademonster() {
ControlClick, x%clickx% y%clicky%, %windowtitle%,,,, Pos NA
sleep 75
clicky += 70
ControlClick, x%clickx% y%clicky%, %windowtitle%,,,, Pos NA
loop, 2 {
ControlClick, x%clickx% y%clicky%, %windowtitle%,,,, Pos NA
sleep 100
}
}
sleep 75

Expand Down

0 comments on commit 2d19efe

Please sign in to comment.