require 'lib.moonloader'
local sampev = require 'samp.events'
function main()
if not isSampLoaded() or not isSampfuncsLoaded() then return end
while not isSampAvailable() do wait(100) end
while true do
wait(0)
end
end
function sampev.onShowDialog(dialogId, dialogStyle, dialogTitle, okButtonText, cancelButtonText, dialogText)
if dialogId == 216 then
sampSendDialogResponse(216, 1, 1, -1)
end
if dialogId == 217 then
sampSendDialogResponse(217, 1, 4, -1)
end
end