- 15
- 5
Не работает скрипт когда игра в свернутом режиме,использую Anti AFK by AIR
кто шарит как пофиксить?
script:
require 'moonloader'
local sampev = require 'samp.events'
function main()
if not isSampLoaded() or not isSampfuncsLoaded() then return end
while not isSampAvailable() do wait(100) end
math.randomseed(os.time())
wait(-1)
end
function goKeyPressed(key)
setVirtualKeyDown(key, true)
wait(math.random(150, 200))
setVirtualKeyDown(key, false)
end
function sampev.onServerMessage(color, text)
if text:find("Депозит в банке") then
lua_thread.create(function()
goKeyPressed(VK_MENU) -- Alt
for i = 1, 3 do
goKeyPressed(VK_RETURN) -- Enter
end
end)
end
end