local waiting = 10 -- время в минутах
local active = false
function main()
while not isSampAvailable() do wait(0) end
sampRegisterChatCommand('screen', function()
active = not active
sampAddChatMessage(active and '{fff000}Активировано' or '{ff0000}Деактивировано', -1)
end)
while true do
wait(0)
while active do
sampSendChat('/time')
wait(100)
setVirtualKeyDown(119, true)
wait(100)
setVirtualKeyDown(119, false)
wait(waiting * 60000)
end
end
end