Thorate wrote: Mon Jul 27, 2026 5:49 pm
I really like this addon. I am wondering if there is a way to turn off the automatic announcements? I don't see any option to do that. I will use it regardless, I just don't feel the need to announce in guild chat that I am attuned to SM Cathedral, etc.
Thank you! I have no option for it but you can do the below to remove it..
in the Core.lua remove this section of code or comment it out.
function RA:AnnounceCompletion(att)
if not att or not att.name then return end
if not RelationshipsAttuneCharDB.announced then
RelationshipsAttuneCharDB.announced = {}
end
if RelationshipsAttuneCharDB.announced[att.id] then return end
RelationshipsAttuneCharDB.announced[att.id] = true
local inGuild = false
if IsInGuild then
local ok, res = pcall(IsInGuild)
if ok and res then inGuild = true end
end
if not inGuild and GetGuildInfo then
local ok, gname = pcall(GetGuildInfo, "player")
if ok and gname and gname ~= "" then inGuild = true end
end
local msg = "Attunement Complete: " .. (RA.playerName or "I")
.. " has fully completed the " .. att.name .. " attunement!"
if inGuild and SendChatMessage then
pcall(SendChatMessage, msg, "GUILD")
end
RA.print(msg)
end
Relationship The Feral Druid. You Can Find Me On N'Zoth.