require "lib.moonloader"
function main()
while not isSampAvailable() do wait(100) end
while true do wait(0)
if wasKeyPressed(VK_F3) then
sampSendChat("/anim 9")
wait(500)
setVirtualKeyDown(VK_RETURN, true) --лень искать ид клавиш для setGameKeyState
wait(30)
setVirtualKeyDown(VK_RETURN, false)
end
end
end