So Im trying to make my own bot on my own for the sole purpose of learning and I thought I had it down with AutoIT but it always says script paused, can someone tell me where I went wrong?
heres the script
WinActivate("[Conquer2.0]")
Do
$count = 0
$count = $count + 1
ControlClick("", "??", 1 , "left", 1)
$ControlID = 1
$ControlID = $ControlID + 1
Do
ControlClick("", "??", $ControlID, "right", 2)
Until $ControlID = 1800
$ControlID2 = 1
$ControlID2 = $ControlID2 + 1
Do
ControlClick("", "???", $ControlID2, "Right", 2)
Until $ControlID2 = 1800
$ControlID3 = 1
$ControlID3 = $ControlID3 + 1
Do
ControlClick("", "????", $ControlID3, "right", 2)
Until $ControlID3 = 1800
Until $count = 100000
Exit
If Send("{Del}") Then
Exit
EndIf
I realize its pretty short for a bot but I couldnt understand how to make it click pixels so I tried to make it work by Control Clicking Incrementals so any tips or tricks as to make this work?
heres the script
WinActivate("[Conquer2.0]")
Do
$count = 0
$count = $count + 1
ControlClick("", "??", 1 , "left", 1)
$ControlID = 1
$ControlID = $ControlID + 1
Do
ControlClick("", "??", $ControlID, "right", 2)
Until $ControlID = 1800
$ControlID2 = 1
$ControlID2 = $ControlID2 + 1
Do
ControlClick("", "???", $ControlID2, "Right", 2)
Until $ControlID2 = 1800
$ControlID3 = 1
$ControlID3 = $ControlID3 + 1
Do
ControlClick("", "????", $ControlID3, "right", 2)
Until $ControlID3 = 1800
Until $count = 100000
Exit
If Send("{Del}") Then
Exit
EndIf
I realize its pretty short for a bot but I couldnt understand how to make it click pixels so I tried to make it work by Control Clicking Incrementals so any tips or tricks as to make this work?