This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include WindHumanMouse.ahk | |
#SingleInstance Force | |
return | |
1:: | |
PixelSearch, Px, Py, 0, 0, A_ScreenWidth, A_ScreenHeight, 0x00EAE5, 2, Fast RGB | |
if (!ErrorLevel) { | |
Send {F7} | |
click_box(1484, 901, 1519, 946) | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include WindHumanMouse.ahk | |
#SingleInstance Force | |
return | |
1:: | |
;Start with bank open empty inventory | |
;Look west vertical camera | |
;600 zoom | |
loop , 100 { | |
;Withdraw |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
expDropCheck: | |
expCheckFunction() | |
return | |
expCheckFunction() { | |
static expDropColor := "0x4DC34D" | |
static lastExp := A_TickCount | |
PixelSearch, x, y, 0, 0, % A_ScreenWidth/4, % A_ScreenHeight/4, expDropColor , 5, Fast RGB | |
if (ErrorLevel = 0) { | |
lastExp := A_TickCount |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#NoEnv | |
#SingleInstance, Force | |
return | |
; Incorrect, do not use | |
1:: | |
MouseGetPos x, y | |
Random, r, -20, 20 | |
x1 := x + r |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import api.Clicker; | |
import api.ClientContext; | |
import api.Components; | |
import api.PollingScript; | |
import api.antipattern_old.Antiban; | |
import api.antipattern_old.weighted_actions.actions.*; | |
import api.utils.Stats; | |
import api.utils.Timer; | |
import org.powerbot.script.Condition; | |
import org.powerbot.script.PaintListener; |