script_author('bottom_text')
function main()
while not isSampAvailable() do wait(100) end
sampRegisterChatCommand('Keydown', function() act = not act sampAddChatMessage( act and '{7affff}AutoKeyDown {ffffff}activated' or '{7affff}AutoKeyDown {ffffff}deactivated', -1) end)
while true do wait(0)
if act and not sampIsCursorActive() then
setVirtualKeyDown(70, true) -- Клавишу изменять тут
wait(500) -- Задержку тут
setVirtualKeyDown(70, false)
end
end
end