代码没有错的噢.会循环200次啊. 想无限循环就在前后加个无限循环就好了
For 200
FindCenterColor 0,0,1024,768,B1ADFF,intX,intY
If intX > 0 And intY > 0 Then
MoveTo intX, intY
Delay 200
LeftClick 1
Delay 15000
End If
Next
你这段只判断了找到色的情况,如果没找到色200次空循环一下就走完了
For 200
rem A
FindCenterColor 0,0,1024,768,B1ADFF,intX,intY
If intX > 0 And intY > 0 Then
MoveTo intX, intY
Delay 200
LeftClick 1
Delay 15000
else
delay 100
goto A
End If
Next
改成这样的话,如果没找到图就会一直永远循环下去。。
前面改成
For 200
Rem A
FindCenterColor 0,0,1024,768,B1ADFF,intX,intY
If intX <1 or intY <1 Then
Goto A
End If
MoveTo intX, intY
Delay 200
LeftClick 1
Delay 15000
Next