Hey,
I need help with my AUTO IT script for a trigger bot for the game called Gunz
To explain, i'm using a picture
[Only registered and activated users can see links. Click Here To Register...]
As you can see the name above the x-hair, and I would just like to make it so that with pixel search when it finds words above the x-hair, you shoots (or left click)
What's what I have atm :/ but it sucks Please help :P
I need help with my AUTO IT script for a trigger bot for the game called Gunz
To explain, i'm using a picture
[Only registered and activated users can see links. Click Here To Register...]
As you can see the name above the x-hair, and I would just like to make it so that with pixel search when it finds words above the x-hair, you shoots (or left click)
Code:
While True
Local $coord = PixelSearch(0, 0, 20, 300, 0xFF0000, 10)
If Not @error Then
MouseClick("Left") ;It found the color so it does this
Sleep(30)
EndIf
WEnd