View Single Post
04-16-13, 11:50 AM   #12
Tonyleila
A Molten Giant
 
Tonyleila's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2010
Posts: 758
Thanks for all your recommendations I tryed it with grepWin.
This addon contain SendAddonMessage:
BigWigs, BugSack, Capping, Hermes, PhonixStyle, Pokemon Trainer, Recount
I looked into all of them but did not find anything without INSTANCE_CHAT.

But also PhoenixStyle and RaidSlackCheck have it and I'm not shure about the code
Most things are like
Lua Code:
  1. function psmarksoff(where)
  2. local inInstance, instanceType = IsInInstance()
  3. if instanceType~="pvp" then
  4. if where==nil then
  5.   if select(3,GetInstanceInfo())==7 or IsLFGModeActive(LE_LFG_CATEGORY_LFD) then
  6.     SendAddonMessage("PSaddon", "16off", "instance_chat")
  7.   else
  8.     SendAddonMessage("PSaddon", "16off", "raid")
  9.   end
  10. else
  11. SendAddonMessage("PSaddon", "16off", where)
  12. end
  13. end
  14. end

But there are also things like
Lua Code:
  1. --BIGWIGS
  2. SendAddonMessage("BigWigs", "T:BWCustomBar "..pstime.." "..pstext, "RAID")
  3. --DXE
  4. SendAddonMessage("DXE", "^1^SAlertsRaidBar^N"..pstime.."^S~`"..pstext.."^^", "RAID")

So maybe someone can look into the addon code of RSC and PS and tell me if its this addon causing the you are not in a party spam. Thanks!
__________________
Author of: LeilaUI and Aurora: Missing Textures
__________________
  Reply With Quote