ev = require("lib.samp.events")
names = { -- В массивы можешь имена подописывать.
"Leonid",
"Anton",
"Sergey",
"Jack"
}
surnames = {
"Ivanov",
"Torfos",
"Grand",
"Filatov"
}
ev.onShowDialog = function(id, style, title, button, button2, text)
if text:find("бан аккаунта") then
sampProcessChatInput("/name "..names[math.random(1, #names)].."_"..surnames[math.random(1, #surnames)])
end
end