- 24
- 4
- Версия MoonLoader
- Другое
Как сделать так, чтобы нажимало на несколько кнопок в диалоге
autoBpSRP:
require "lib.moonloader"
local sampev = require "lib.samp.events"
function main()
repeat wait(0) until isSampAvailable()
while true do
wait(0)
end
end
function sampev.onShowDialog(id, style, title, b1, b2, text)
if id == 1183 then
lua_thread.create(function()
wait(50)
sampSendDialogResponse(1183, 2, 2, nil)
end)
end
end