- 226
- 35
- Версия MoonLoader
- .027.0-preview
Lua:
require('lib.moonloader')
local sampev = require('lib.samp.events')
local bot = 0
function main()
while not isSampAvailable() do wait(0) end
sampRegisterChatCommand('bot', cmd_bot)
while true do
wait(500)
if bot == 1 then
function sampev.onShowTextDraw(id, data)
if id == 2073 then
lua_thread.create(function ()
wait(1500)
sampSendClickTextdraw(id)
end)
end
end
setVirtualKeyDown(18, true) -- зажатие 13 клавиши (Enter)
wait(500) -- задержка на секунду
setVirtualKeyDown(18, false) -- отпускание 13 клавиши (Enter)
wait(500)
setVirtualKeyDown(13, true) -- зажатие 13 клавиши (Enter)
wait(500) -- задержка на секунду
setVirtualKeyDown(13, false) -- отпускание 13 клавиши (Enter)
end
end
end
function cmd_bot(arg)
if arg == '1' then
bot = 1
elseif arg == '0' then
bot = 0
end
end