utils.print_dev_console("trash talk")
local first = {
'я видел твоего папу в казино',
'не играй больше хвх, игра 16+',
'ублюдок ебливый',
'что же ты делаешь, сон шлюхи выблядской',
'упала бедолага',
'идите наху, 1',
'ну что ты делаешь, долбоеб',
}
local tt = gui.add_checkbox("trashtalk", "lua>tab a")
function on_player_death(event)
if not tt:get_bool() then
return
end
local lp = engine.get_local_player();
local attacker = engine.get_player_for_user_id(event:get_int('attacker'));
local userid = engine.get_player_for_user_id(event:get_int('userid'));
if attacker == lp and userid ~= lp then
engine.exec(string.format("say \"%s\"", first[utils.random_int(1, #first)]))
end
end