按鍵精靈指令碼,無限迴圈先執行開頭,a迴圈然後找圖

2021-03-03 21:34:28 字數 1872 閱讀 7052

1樓:匿名使用者

rem begin

moveto 364, 221

delay 16

leftclick 1

call a迴圈

62616964757a686964616fe58685e5aeb931333335323364

sub a迴圈

i = 0

while i = 0

findpic 0,0,1680,1050,"c:\222.bmp",0.8,intx,inty

findpic 0,0,1680,1050,"c:\555.bmp",0.9,intx1,inty1

findpic 0, 0, 1680, 1050, "c:\333.bmp", 0.9, intx2, inty2

findpic 0, 0, 1680, 1050, "c:\444.bmp", 0.9, intx3, inty3

if intx > 0 or intx1 > 0 then

i=1delay 50

moveto intx+37, inty+34

leftclick 2

call b迴圈

elseif intx2 > 0 or intx3> 0 then

i=1delay 50

moveto intx+0, inty+0

leftclick 2

call b迴圈

endif

wend

end sub

sub b迴圈

i = 0

while i = 0

findpic 0,0,1680,1050,"c:\222.bmp",0.8,intx,inty

findpic 0,0,1680,1050,"c:\555.bmp",0.9,intx1,inty1

findpic 0, 0, 1680, 1050, "c:\333.bmp", 0.9, intx2, inty2

findpic 0, 0, 1680, 1050, "c:\444.bmp", 0.9, intx3, inty3

if intx < 0 or intx1 < 0 then

i=1delay 50

moveto intx+37, inty+34

leftclick 2

call a迴圈

elseif intx2 < 0 or intx3< 0 then

i=1delay 50

moveto intx+0, inty+0

leftclick 2

call a迴圈

endif

wend

end sub

按鍵精靈 先執行a指令碼,到了指定時間無限迴圈b指令碼

2樓:匿名使用者

你這裡有邏輯漏洞,因為你啟動指令碼有可能是晚上10點之後,你沒有交代專如果是晚上10點之後啟屬動指令碼,是執行a指令碼還是執行b指令碼,所以我只提供一個「晚上10點之前啟動指令碼」的**。

dim id

id = beginthread(a)

doif datediff("s", date & " 22:00:00", now) > 0 then

stopthread id

delay 200

beginthread b

exit do

end if

delay 400

loop

sub a

while true

'這裡寫a段**

wend

end sub

sub b

while true

'這裡寫b段**

wend

end sub

「按鍵精靈」指令碼怎麼設定A指令碼不停迴圈 B指令碼5分鐘一次

你的意思是執行 5分鐘抄a,然後執行1分鐘b 在執行b的過程中a不執行 t1 now rem 開始 t2 now a 這裡是執行a if datediff s t1,now 240 if datediff s t2,now 60 b 在這裡加入b執行b endif t1 now endif goto...

求按鍵精靈喊話指令碼,求按鍵精靈喊話指令碼?。

do until intx 0 findpic 0,380,563,768,attachment 發言框bai尋找du.bmp 0.9,intx,inty if intx 0 and inty 0 thenmoveto intx 10,inty 10leftclick 1 end if loop d...

按鍵精靈怎麼匯入指令碼,按鍵精靈 一個指令碼如何呼叫另一個指令碼?

關於使用 如果你看到的指令碼是一段語句,你可以把它複製下來,然後開啟按鍵精靈 點 增加 會開啟指令碼編輯器,在編輯區域 右下空白的地方 的上面一點有 普通 和 原始檔 兩個按鈕,點 原始檔 然後把你複製下來的語句貼上到下面編輯區,然後設定好上面的 指令碼描述 啟動熱鍵 中止熱鍵 和 迴圈 然後點儲存...