Update tonotify with chad characters

This commit is contained in:
2024-10-05 01:39:40 +02:00
parent 9600411c79
commit a9ed6694a9

View File

@@ -16,13 +16,8 @@ WeakAurasSaved.Cyka.Stinkies = {
["Totleta"] = true,
}
local toNotify = {"Succpotato"}
-- Extazyk
-- Smokefire
-- Smokemantra
-- Хихихантер
-- Муркот
-- Растафаркрай
local toNotify = { "Succpotato", "Extazyk", "Smokefire", "Smokemantra", "Хихихантер", "Муркот", "Растафаркрай" }
-- local toNotify = { "Succpotato" }
aura_env.whisperQueue = {}
aura_env.alliancettl = 120
@@ -55,7 +50,7 @@ aura_env.RegisterKill = function(source, destination, spellName, overkill)
end
for k, v in pairs(toNotify) do
-- SendChatMessage(msg, "WHISPER", nil, v)
table.insert(aura_env.whisperQueue, {to=v, msg=msg})
table.insert(aura_env.whisperQueue, { to = v, msg = msg })
end
recentlyKilled[source] = GetTime()
end
@@ -71,7 +66,7 @@ aura_env.StinkyDetected = function(name)
for k, v in pairs(toNotify) do
local msg = string.format("%s в Оргриммаре!", name)
-- SendChatMessage(msg, "WHISPER", nil, v)
table.insert(aura_env.whisperQueue, {to=v, msg=msg})
table.insert(aura_env.whisperQueue, { to = v, msg = msg })
end
end
aura_env.localStinkies[name] = GetTime()