function main()
while not isSampAvailable do wait(100) end
sampRegisterChatCommand('as', auto)
while true do
wait(0)
if state then
setVirtualKeyDown(0x46, true)
wait(5000) -- задержку можно меньше поставить.
setVirtualKeyDown(0x46, false)
-- или setGameKeyState(15, 1) (не прожимается вне игры, что есть +)
end
end
end
function auto()
state = not state
if state then
sampAddChatMessage('Включен', -1)
else
sampAddChatMessage('Выключен', -1)
end
end