Eski bir web tarayıcısı kullanıyorsunuz. Bu veya diğer siteleri görüntülemekte sorunlar yaşayabilirsiniz.. Tarayıcınızı güncellemeli veya alternatif bir tarayıcı kullanmalısınız.
autohotkey is good
A long time ago I made a script for the game Airmech striker:
; AutoAim
; F5 ativa
; F6 desativa
#Persistent
SetTimer, AutoAimKey, 500
return
AutoAimKey:
if WinActive("ahk_class AirMech_Win32GameLoop")
{
Send {p down}
Sleep 500
Send {p up}
}
return
F5::
SetTimer...