I have been trying everything and cant seem to get this to work. I would love to have this relay to RW but not sure if this is possible. Anyone know if this can be done?
Printable View
I have been trying everything and cant seem to get this to work. I would love to have this relay to RW but not sure if this is possible. Anyone know if this can be done?
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 ChatTypeID, 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:
And try replacing it with 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
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.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