按键精灵某点颜色超过一定时间直接运行下一步怎么写
Rem打怪MoveTointX,intYDelay200RightClick1Delay2000KeyPress"1",1Delay1500KeyPress"2",1De...
Rem 打怪
MoveTo intX, intY
Delay 200
RightClick 1
Delay 2000
KeyPress "1", 1
Delay 1500
KeyPress "2", 1
Delay 1000
IfColor 318, 166, "2F3244", 0 Then
Goto 打怪
Else
Goto 寻怪
End If
以上找色那一步,如果时间超过限制,比如15秒,就直接执行下一步,该怎么弄 展开
MoveTo intX, intY
Delay 200
RightClick 1
Delay 2000
KeyPress "1", 1
Delay 1500
KeyPress "2", 1
Delay 1000
IfColor 318, 166, "2F3244", 0 Then
Goto 打怪
Else
Goto 寻怪
End If
以上找色那一步,如果时间超过限制,比如15秒,就直接执行下一步,该怎么弄 展开
1个回答
展开全部
//在源文件下,复制以下代码:
时间 = 0
Rem 打怪
MoveTo intX, intY
Delay 200
RightClick 1
Delay 2000
KeyPress "1", 1
Delay 1800
KeyPress "2", 1
Delay 1000
If 时间 >= 3 Then //前面耗时5秒,乘以3就是15秒
TracePrint "进行下一步"
时间 = 0
Else
IfColor 318, 166, "2F3244", 0 Then
时间 = 时间 + 1
Goto 打怪
Else
Goto 寻怪
End If
End If
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询