網友評分: 5.5分
AutoHotkey魔獸世界多開工具是專門針對魔獸世界的腳本語言工具,用戶可以在出軟件中輸入自定義的代碼,讓你的每個鍵位都能夠發揮極大的作用,使WSAD能夠同步,還有鼠標移動位置同步雙開的,提高效率增加樂趣。
1、可以通過手工或使用宏錄制鼠標或鍵盤宏來實現鍵盤和鼠標自動化;
2、可以創建熱鍵鍵盤,操縱桿和鼠標,幾乎所有的關鍵按鈕和組合都可以成為一個熱鍵;
3、創建自定義數據錄入表格,用戶界面和菜單欄;
4、重映射你的鍵盤,游戲桿和鼠標上的按鍵和按鈕;
5、從手持遙控器通過WinLIRC的客戶端腳本響應信號;
6、運行加強現有的AutoIt v2的腳本。
控制兩個相同前綴窗口同步按鍵WASD(更改以下兩行記事本名為所需窗口名前綴)
窗口名=記事本
#IfWinActive,記事本
return
f1::
if (xh){
xh=0
}else{
xh++
}
if xh=0
ControlGet,AHK_ID,Hwnd ,,,%窗口名%
if xh=1
ControlGet,AHK_ID2,Hwnd ,,,%窗口名%
MsgBox,窗口1ID=%AHK_ID%窗口2ID=%AHK_ID2%
return
w::
ControlSend,ahk_parent,{w Down},ahk_id %AHK_ID2%
ControlSend,ahk_parent,{w Down},ahk_id %AHK_ID%
KeyWait,w
ControlSend,ahk_parent,{w up},ahk_id %AHK_ID2%
ControlSend,ahk_parent,{w up},ahk_id %AHK_ID%
return
a::
ControlSend,ahk_parent,{a Down},ahk_id %AHK_ID2%
ControlSend,ahk_parent,{a Down},ahk_id %AHK_ID%
KeyWait,a
ControlSend,ahk_parent,{a up},ahk_id %AHK_ID2%
ControlSend,ahk_parent,{a up},ahk_id %AHK_ID%
return
s::
ControlSend,ahk_parent,{s Down},ahk_id %AHK_ID2%
ControlSend,ahk_parent,{s Down},ahk_id %AHK_ID%
KeyWait,s
ControlSend,ahk_parent,{s up},ahk_id %AHK_ID2%
ControlSend,ahk_parent,{s up},ahk_id %AHK_ID%
return
d::
ControlSend,ahk_parent,{d Down},ahk_id %AHK_ID2%
ControlSend,ahk_parent,{d Down},ahk_id %AHK_ID%
KeyWait,d
ControlSend,ahk_parent,{d up},ahk_id %AHK_ID2%
ControlSend,ahk_parent,{d up},ahk_id %AHK_ID%
return
標簽: AutoHotkey 腳本語言