Hey people,
I'm really new to autoit, but I made this a while ago to use along with the neutral AH scam. All it does send a keystroke when the confirmation window in btmscan pops up. Anyway, here it is:
edit: Sorry if something like this has already been posted, I've had to stop following Calek's thread since it was moved to the contrib. section >.<Code:hotkeyset("{ESC}","terminate") while 1 = pixelgetcolor(yourx,youry) ; The coords of where you get the color in the next line if = 0x080000 Then ; The color of a point on the btmscan confirmation window send("1",1) EndIf wend func terminate () Exit endfunc
oh yeah, and thanks to Phygar for helping me figure this out
edit(again): Sorry if I didn't make myself clear enough, this script is used with btmscanner, not by itself. You'll also need this macro:
Bind that to whatever key this script clicks(1, by default). This is useful because unlike an autoclicker that clicks the macro every x seconds, this is completely undetectable, and won't show up in logs (if you're super paranoid) if anybody has any questions, just ask them and I'll try to clarify things.Code:/run if (BtmScan.Prompt:IsVisible()) then BtmScan.Prompt.Yes:Click() end