function se.onShowDialog(id, style, title, but_1, but_2, text)
text = string.gsub(text, "{%x+}", "") -- Избавимся от цветов
for line in string.gmatch(text, "[^\n]+") do
local key, value = string.match(line, "([^\t]+):\t([^\n]+)")
if key and value then
-- code
end
end
end