Well i have so far
i tried it with bypass, nothing happens. How do i make it focus in say blade and soul, to work. Works outside the game, inside does nothing. I know the game might still block autoit, not really advanced with program, just know basic stuff.Quote:
; Set the HotKeys
HotKeySet("q", "_2r")
HotKeySet("{ESC}", "On_Exit")
; Now keep the script active
While 1
Sleep(10)
WEnd
Func _2r()
; Unset the HotKey
HotKeySet("q")
; Send the keys
Send("2")
Sleep(10)
Send("r")
Sleep(10)
; Reset the HotKey
HotKeySet("q", "_2r")
EndFunc
Func On_Exit()
Exit
EndFunc






