отправка нажатия клавиши Enter каждую минуту, и еще команда для активации /ent . Спасибо)
Lua:
require "lib.moonloader"
require "lib.vkeys"
function main()
while not isSampAvailable() do wait(0) end
while sampGetCurrentServerName() == 'SA-MP' do wait(0) end
sampAddChatMessage('Твой скрипт загружен!', -1)
active = false
sampRegisterChatCommand('ent', start) -- Регистрация команды /ent
while true do
wait(0)
if active then
setVirtualKeyDown(VK_RETURN, true) -- Enter
wait(200)
setVirtualKeyDown(VK_RETURN, false)
wait(60000) -- задержка в 60 секунд
end
if isKeyJustPressed(VK_F5) then -- F5 деактивирует работу
stop()
end
end
end
function start()
sampAddChatMessage('Нажимаю Enter!', -1)
active = true
end
function stop()
sampAddChatMessage('Прекращаю работу скрипта!', -1)
active = false
end
Последнее редактирование: