Sometimes we can't tell the faction, maybe we avoided the nameplate...

Still whisper
This commit is contained in:
2024-10-05 02:05:08 +02:00
parent a183bbcdc9
commit a1e34b3adf
2 changed files with 4 additions and 3 deletions

File diff suppressed because one or more lines are too long

View File

@@ -14,6 +14,7 @@ WeakAurasSaved.Cyka.Stinkies = {
["Залупотряс"] = false, -- Муркот: I understand if one of them killed the newbies. then you did everything right. they seem friendly but I also warned them not to hit the newbies
["Чмодвенк"] = false, -- Муркот: I understand if one of them killed the newbies. then you did everything right. they seem friendly but I also warned them not to hit the newbies
["Zawaz"] = nil,
["Totleta"] = nil,
}
local toNotify = { "Succpotato", "Extazyk", "Smokefire", "Smokemantra", "Хихихантер", "Муркот", "Растафаркрай" }
@@ -46,11 +47,11 @@ aura_env.RegisterKill = function(source, destination, spellName, overkill)
print("Death already reported")
end
local msg = string.format("Alliance %s убил %s с помощью %s с переполнением %d", source, destination, spellName, overkill)
if not aura_env.alliance[source] then
print("lol alliance died idiot")
local msg = string.format("Неизвестная фракция %s убил %s с помощью %s с переполнением %d", source, destination, spellName, overkill)
end
local msg = string.format("%s убил %s с помощью %s с переполнением %d", source, destination, spellName, overkill)
for k, v in pairs(toNotify) do
-- SendChatMessage(msg, "WHISPER", nil, v)
table.insert(aura_env.whisperQueue, { to = v, msg = msg })