local sampev = require('samp.events')
-- событие срабатывает каждый раз, когда открывается диалоговое окно
function sampev.onShowDialog(dialogId, style, title, button1, button2, text)
-- выводим информацию о открытом диалоге: его серверный id, title (заголовок) и т.д.
print(dialogId, style, title, button1, button2, text)
end