- 4
- 0
- Версия MoonLoader
- .026-beta
script:
local samp = require 'samp.events'
function main()
function samp.onShowDialog(dialogId, style, title, button1, button2, text)
if dialogId == 9081 then
if text:find("%((%d+)%)") then
lua_thread.create(function ()
wait(500)
sampSendDialogResponse(dialogId, 1, 1, nil)
return false
end)
end
end
end
end