Quote Originally Posted by Jafula View Post
If you use addons that communicate over the addon channel and use ChatThrottleLib (which most addons should use), you will find that the addon messages between wow clients are further throttled when the fps is below 15. In order to get "full speed" addon communication I recommend a minimum FPS of 15 (or is it 16?).

Source: the source code for ChatThrottleLib.

http://www.wowwiki.com/ChatThrottleLib

ChatThrottleLib causes throttling to kick in at 20FPS, so your toons would need to be an average of 21 FPS to prevent throttling. Or you'd have to change those lines to a rate lower than what your average slave FPS is.

Code:
Search "ChatThrottleLib.MIN_FPS" (5 hits in 5 files)
  G:\WoW\World of Warcraft\Interface\AddOns\tomQuest2\libs\AceComm-3.0\ChatThrottleLib.lua (1 hits)
	Line 63: ChatThrottleLib.MIN_FPS = 20				-- Reduce output CPS to half (and don't burst) if FPS drops below this value
  G:\WoW\World of Warcraft\Interface\AddOns\SilverDragon\lib\ChatThrottleLib\ChatThrottleLib.lua (1 hits)
	Line 63: ChatThrottleLib.MIN_FPS = 20				-- Reduce output CPS to half (and don't burst) if FPS drops below this value
  G:\WoW\World of Warcraft\Interface\AddOns\Auc-Advanced\Modules\Auc-Util-AskPrice\ChatThrottleLib\ChatThrottleLib.lua (1 hits)
	Line 45: ChatThrottleLib.MIN_FPS = 20				-- Reduce output CPS to half (and don't burst) if FPS drops below this value
  G:\WoW\World of Warcraft\Interface\AddOns\Jamba\Libs\AceComm-3.0\ChatThrottleLib.lua (1 hits)
	Line 63: ChatThrottleLib.MIN_FPS = 20				-- Reduce output CPS to half (and don't burst) if FPS drops below this value
  G:\WoW\World of Warcraft\Interface\AddOns\PitBull4_VisualHeal\libs\LibHealComm-4.0\ChatThrottleLib.lua (1 hits)
	Line 63: ChatThrottleLib.MIN_FPS = 20				-- Reduce output CPS to half (and don't burst) if FPS drops below this value