-
Автор темы
- #1
Код:
local phrases = ui.create("Neverlose показал мозг")
phrases:switch("Killsay", false)
local phrases = {
"Изичь для text.lua",
"Изичь для text.lua",
"Изичь для text.lua",
"Изичь для text.lua",
"Изичь для text.lua",
"Изичь для text.lua",
"Изичь для text.lua",
"Изичь для text.lua",
"Изичь для text.lua",
"Изичь для text.lua",
"Изичь для text.lua",
"Изичь для text.lua",
"Изичь для text.lua"
}
local function get_phrase()
return phrases[utils.random_int(1, #phrases)]:gsub('"', '')
end
events.player_death:set(function(e)
local me = entity.get_local_player()
local attacker = entity.get(e.attacker, true)
if me == attacker then
utils.console_exec('say "' .. get_phrase() .. '"')
end
end)