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:

function GRSS_ChatFrame_OnEvent_Hook(event)
	if event == "CHAT_MSG_WHISPER" then
		if ( GRSS_IsWhisperGRSSWhisper(arg1) ) then
			return
		end
	elseif event == "CHAT_MSG_WHISPER_INFORM" then
		if string.find(arg1,"^"..GRSS_Prefix) then
			return
		end
	end
	GRSS_ChatFrame_OnEvent_Original(event, arg1, name);
end


And change it to this

function GRSS_ChatFrame_OnEvent_Hook(event)
	if event == "CHAT_MSG_WHISPER" then
		if ( GRSS_IsWhisperGRSSWhisper(arg1) ) then
			return
		end
	end
	GRSS_ChatFrame_OnEvent_Original(event, arg1, name);
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]