Quote Originally Posted by maqz',index.php?page=Thread&postID=40045#post40045]You wrote in the other thread that you tried to set the relaychannel to rw and party and so on. This function probably wants a [url='http://www.wowwiki.com/ChatTypeId
ChatTypeID[/url], like "RAID_WARNING". That should do it, but if you don't want all the messages in the /rw channel, or if it doesn't work for some reason, you can edit the file twoboxtoolkit.lua. Look for a function that looks like this:

Code:
function twoboxtoolkit:AUTOFOLLOW_END()
	isBroken = true
	if (isFollowing) then
    	--SendChatMessage("Follow is broken", "WHISPER", nil, self.db.profile.master);
    	if (self.db.profile.followwarning) then
        	twoboxtoolkit:relayMessage("Follow is broken")
    	end
    	isFollowing = false
	end
end
And try replacing it with this:

Code:
function twoboxtoolkit:AUTOFOLLOW_END()
	isBroken = true
	if (isFollowing) then
    	SendChatMessage("Follow is broken", "RAID_WARNING");
    	--if (self.db.profile.followwarning) then
    	--	twoboxtoolkit:relayMessage("Follow is broken")
    	--end
    	isFollowing = false
	end
end
Super great idea, I tried it thought and I did not work any other ideas? Thanks again for the great advice.