按鍵精靈自動輸入,求按鍵精靈自動輸賬號密碼指令碼

2022-03-02 06:36:13 字數 1448 閱讀 9482

1樓:傳說彙總

saystring "輸入賬號"

keypress "tab", 1

saystring "輸入密

bai碼du"

keypress "enter", 1

把輸入賬號和密zhi碼改成自己的(不要去雙dao引號),儲存,專點一下賬號輸入框屬,然後啟動。

如何讓按鍵精靈自動輸入文件內的文字

2樓:

幫你寫好啦,直接copy上去執行即可,表太謝我~***********************************====

//讀取txt

word = plugin.file.readfileex("c:\1.txt")

//分割為行

dim hang

hang = split(hang, "|")//迴圈打出每一行

for i = 0 to ubound(hang)saystring hang(i)

delay 900

keypress "tab", 1

delay 500

//暫停,任意鍵繼續

waitkey

next

***********************************====

基本註釋已經寫好,還有不懂得追問我吧

希望對你有幫助!

3樓:進擊的小紅薯

lao = plugin.file.readfileex("e:\1.txt") //把 e:\1.txt 替換成你文件所在的位置,要全路徑

m= split(lao, "|")

n=0do

saystring m(n)

delay 100

n=n+1

loop n=ubound(m)

試試這個

4樓:匿名使用者

可能是printf ,或者 你用 模擬按鍵 輸入吧,先分割.然後用while 來輸入

用按鍵精靈,自動輸入txt文字的指令碼。

5樓:匿名使用者

i=0test=plugin.file.readfileex("c:\users\zen\desktop\文章.txt")

txtarray = split(test, "|")while len(txtarray(i))>=1re=txtarray(i)

saystring re

i=i+1

keypress "enter", 1

wend

輸出原始檔「文章」中每行的內容,然後按回車,直到遇上空行為止while len(txtarray(i))=0i=i+1

endwhile

下面這段是跳過空行的**,你可以自行考慮新增否,迴圈什麼的你看著弄吧

按鍵精靈自動喊話指令碼如何寫,求一個按鍵精靈自動喊話指令碼

a 999你可以自己改a 多少bai就迴圈多少,沒在遊戲中測試,我是按 回車du鍵 發訊息如有問題就加zhi延遲 或dao a 0 while a 1 keypress enter 1 saystring 按鍵精靈自動喊話 aa a 1 keypress enter 1 if a 999 then ...

求按鍵精靈密碼輸入子程式,求一個按鍵精靈密碼輸入子程式

sub shurumima strmima dim zf,strasc strasc 清空strasc for stri 1 to len strmima 迴圈strmima字元個數次數 zf mid strmima,stri,1 把每個字元賦值給zf if asc zf 96 and asc zf...

如何讓按鍵精靈自動輸入內的文字,如何讓按鍵精靈自動輸入文件內的文字

幫你寫好啦,直接copy上去執行即可,表太謝我 讀取txt word plugin.file.readfileex c 1.txt 分割為行 dim hang hang split hang,迴圈打出每一行 for i 0 to ubound hang saystring hang i delay ...