Logged Out
Create an Account
Login:
Password:

Forgot your password?
Outgoing GRSS whispers

Outgoing GRSS whispers
[Back to Index]
Thread Tags
Primary: [Support]
Secondary: None

I have it set up so I can see outgoing whispers from the GRSS system--works well for me in the way we use our loot system. (Someone whispers me with !dkp to indicate interest in the item--I see their whisper and the amount of DKP they have).

However, others in my guild can't get it set up to show outgoing GRSS whispers. And I can't remember how I changed that setting.

Anyone know the command to NOT hide GRSS whispers?
That actually requires tweaking the mod itself in code, a far as I know.

Look for the following code in the GuildRaidSnapShot.lua file in the Addons folder. It's around line 116:

  1. function GRSS_ChatFrame_OnEvent_Hook(event)  
  2.     if event == "CHAT_MSG_WHISPER" then  
  3.         if ( GRSS_IsWhisperGRSSWhisper(arg1) ) then  
  4.             return  
  5.         end  
  6.     elseif event == "CHAT_MSG_WHISPER_INFORM" then  
  7.         if string.find(arg1,"^"..GRSS_Prefix) then  
  8.             return  
  9.         end  
  10.     end  
  11.     GRSS_ChatFrame_OnEvent_Original(event, arg1, name);  
  12. end  


And change it to this

  1. function GRSS_ChatFrame_OnEvent_Hook(event)  
  2.     if event == "CHAT_MSG_WHISPER" then  
  3.         if ( GRSS_IsWhisperGRSSWhisper(arg1) ) then  
  4.             return  
  5.         end  
  6.     end  
  7.     GRSS_ChatFrame_OnEvent_Original(event, arg1, name);  
  8. end  


That should allow all outgoing GRSS whispers to display to you as well.


--
It's all in the reflexes.
Thanks!

I never made that change, so I have no idea why I see the whispers. It *may* be because I use WIMaddon to manage whispers.
Quote
I never made that change, so I have no idea why I see the whispers. It *may* be because I use WIMaddon to manage whispers.


It's possible that another addon can be interfering, but if the GRSS is the only addon you're running, that's the change you'll have to make.


--
It's all in the reflexes.


[Back to Index]