==> Missing separator character after keyword.:
HotKeySet("E", _Click)
HotKeySet("E", _Click^ ERROR
HotKeySet работает только с клавиатурой, как способ можно попробовать так:clown сказал(а):а если немного переделать... при нажатии на ЛКМ будет нажиматься q q?
Код:HotKeySet("ЛКМ", "_Func") Func _Func() Sleep(300) Send("q") Sleep(300) Send("q") EndFunc
Так вот какой аргумент у ЛКМ?
#include <Misc.au3>
AdlibRegister('_click_wait', 30)
While 1
Sleep(25)
WEnd
Func _click_wait()
If _IsPressed('01') Then
Sleep(300)
Send("q")
Sleep(300)
Send("q")
EndIf
EndFunc
HotKeySet("{F5}", "_Func")
Func _Func()
while 1
Send("{F4}")
Sleep(10000)
Wend
EndFunc
#Include <Misc.au3>
While 1
If _IsPressed("74") Then bot()
WEnd
Func bot()
while 1
Send("{F4}")
Sleep(10000)
Wend
endfunc