I was wondering what are the chances of getting banned for using this script in AHK, it looks for a spella icon in a particular place on the screen that displays in HEKILI and by pressing the number 1 he presses the corresponding buttons depending on what spella icons he finds.
in other words I hold the button and it clicks the corresponding buttons. Unless it is better to make the script stop at each click and it would require pressing again? only that in GnomeSequencer I have a macro set on the mouse to click 1 button so it is basically the same thing.
I've seen posts that people are posting about ahk being detected but not banned because too many people are using it, I've also seen GM's reply about ahk being allowed, all in all this script what I provided requires clicking anyway and that's all it does.
attached is a screen shot from lazy macro's page about AHK
Code:
#NoEnv
#MaxThreadsPerHotkey 2
SendMode Input
SetWorkingDir %A_ScriptDir%
SetBatchLines, -1
CoordMode Pixel
Random, rand, 150, 250
$1::
While GetKeyState("1","P") {
ImageSearch ,,, 934, 739, 985, 790, test.bmp
if !ErrorLevel {
Send, {6}
Sleep rand
}
ImageSearch ,,, 934, 739, 985, 790, test2.bmp
if !ErrorLevel {
Send, {7}
Sleep rand
}
}
return
$::Suspend







