<?xml version="1.0" encoding="ISO-8859-1"?>
<rss version="2.0">
	<channel>
		<title>WoWInterface - Comments for kaylen's AddOn(s)</title>
		<link>http://www.wowinterface.com</link>
		<description>World of Warcraft Addons, Interfaces, Skins, Mods &amp; Community.</description>
		<language>en</language>
		<generator>WoWInterface</generator>
		<ttl>30</ttl>
		<copyright>Copyright 2006, WoWInterface</copyright>
		<image>
			<url>http://cdn.wow.mmoui.com/images/style_mmoi_wowi2/misc/rss.jpg</url>
			<title>WoWInterface</title>
			<link>http://www.wowinterface.com</link>
		</image>
		<webMaster>no-reply@WoWInterface</webMaster>
				<item>
			<title><![CDATA[Any chance for an update to 3.0.3 and or wotlk (CandyDice)]]></title>
			<link>http://www.wowinterface.com/downloads/info5338-108570.html#comments</link>
			<description>I hope this didn't sound rude, its just that Ive been using this addon for sometime now and as of the 3.0 patch the api changed for getting buffs, i tried the ever so popular discodice (hated it), classtimer (hate it) and many more. i even tried sitting down to find out what i need to change to get candydice to work again but it seems im just not up to it.&lt;br /&gt;If someone is using a version that works i would be very grateful if you could post the changed code or upload a zip. I just cant do without this addon.&lt;br /&gt;&lt;br /&gt;snip von wow forum:&lt;br /&gt;The various GetPlayerBuff functions have been removed and integrated into the appropriate unit functions, adding a new UnitAura function and updating the others: &lt;br /&gt;&lt;br /&gt;The new parameters and return values are: &lt;br /&gt;name, rank, icon, count, debuffType, duration, expirationTime, isMine, isStealable = UnitAura(&quot;unit&quot;,  or )</description>
			<author>Whysky</author>
			<category domain="http://www.wowinterface.com">Miscellaneous</category>
			<guid>http://www.wowinterface.com/downloads/info5338-108570.html#comments</guid>
			
			<pubDate>Wed, 12 Nov 2008 09:09:10 +0000</pubDate>
		</item>		<item>
			<title><![CDATA[Doesnt work (CandyDice)]]></title>
			<link>http://www.wowinterface.com/downloads/info5338-52250.html#comments</link>
			<description>I jsut installed thi saddon, and I am not using any other cooldown addons. I am using smartbuff and smartdebuff. When I try to use this mod, upon login it generates over 11 errors. Basically it cannot detect any of the class abilities for any class, then says candydice not detected. Its possible that some other addon I am using is conflicting, but I doubt it. Anyone know why this is happening?</description>
			<author>shiner421</author>
			<category domain="http://www.wowinterface.com">Miscellaneous</category>
			<guid>http://www.wowinterface.com/downloads/info5338-52250.html#comments</guid>
			
			<pubDate>Fri, 19 Oct 2007 22:48:37 +0000</pubDate>
		</item>		<item>
			<title><![CDATA[Woot! (CandyDice)]]></title>
			<link>http://www.wowinterface.com/downloads/info5338-36408.html#comments</link>
			<description>Awesome awesome mod man.  Tried all the cooldown timers mods and haven't found 1 yet that detected everything....until yours.  It is detecting all my pally abilities cooldowns flawlessly.  And being able to manually add abilities was a godsend.  Thank you:)</description>
			<author>Morgalm</author>
			<category domain="http://www.wowinterface.com">Miscellaneous</category>
			<guid>http://www.wowinterface.com/downloads/info5338-36408.html#comments</guid>
			
			<pubDate>Sun, 01 Apr 2007 23:39:14 +0000</pubDate>
		</item>		<item>
			<title><![CDATA[I can only guess but I think the ev... (CandyDice)]]></title>
			<link>http://www.wowinterface.com/downloads/info5338-34219.html#comments</link>
			<description>I can only guess but I think the event CHAT_MSG_SPELL_SELF_DAMAGE isn't fired when you sap someone.&lt;br /&gt;&lt;br /&gt;Maybe someone else has a clue?</description>
			<author>peperone</author>
			<category domain="http://www.wowinterface.com">Miscellaneous</category>
			<guid>http://www.wowinterface.com/downloads/info5338-34219.html#comments</guid>
			
			<pubDate>Mon, 05 Mar 2007 12:08:18 +0000</pubDate>
		</item>		<item>
			<title><![CDATA[For Clock of shadows, just add the... (CandyDice)]]></title>
			<link>http://www.wowinterface.com/downloads/info5338-34116.html#comments</link>
			<description>For Clock of shadows, just add the cool down yourself and it should work just fine. I use DeuceCommand for all my ace Addons, so it makes adding abilites really easy.&lt;br /&gt;&lt;br /&gt;As for Sap, i tried to add it myself since i haven't seen an update to the addon and i am having a problem. I basically copied the blind file, replaced every instance of the word &quot;blind&quot; with the word &quot;sap&quot;. I also changed the duration on Sap to 45. But the code doesn't seem to recognize the attack/ move.&lt;br /&gt;&lt;br /&gt;Here is the code i used:&lt;br /&gt;assert(CDRogueTimers)&lt;br /&gt;local BabbleSpell = AceLibrary(&quot;Babble-Spell-2.2&quot;)&lt;br /&gt;&lt;br /&gt;local Sap = CDRogueTimers:NewModule(&quot;Sap&quot;)&lt;br /&gt;&lt;br /&gt;Sap.category = &quot;Incapacitate&quot;&lt;br /&gt;&lt;br /&gt;function Sap:OnEnable()&lt;br /&gt;    self.rank = 1&lt;br /&gt;    self.parser:RegisterEvent(&quot;CDRogueTimersSap&quot;, &quot;CHAT_MSG_SPELL_SELF_DAMAGE&quot;, function(event, info)&lt;br /&gt;        return self:CHAT_MSG_SPELL_SELF_DAMAGE(event, info)&lt;br /&gt;    end)&lt;br /&gt;end&lt;br /&gt;&lt;br /&gt;function Sap:OnDisable()&lt;br /&gt;    self.parser:UnregisterAllEvents(&quot;CDRogueTimersSap&quot;)&lt;br /&gt;end&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;function Sap:CHAT_MSG_SPELL_SELF_DAMAGE(event, info)&lt;br /&gt;    if info.skill ~= BabbleSpell then return end&lt;br /&gt;    local duration = 45&lt;br /&gt;    self:StartBar(duration)&lt;br /&gt;end&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Can anyone help me to get this added to candy dice? I would rather not leave this addon if i don't have to.</description>
			<author>Roq</author>
			<category domain="http://www.wowinterface.com">Miscellaneous</category>
			<guid>http://www.wowinterface.com/downloads/info5338-34116.html#comments</guid>
			
			<pubDate>Sun, 04 Mar 2007 03:18:26 +0000</pubDate>
		</item>		<item>
			<title><![CDATA[Any support for Cloak of Shadows co... (CandyDice)]]></title>
			<link>http://www.wowinterface.com/downloads/info5338-33036.html#comments</link>
			<description>Any support for Cloak of Shadows cooldown? Also, for some reason I'm not getting Cheap Shot/Kidney Shot timers in PvP, is that a bug?</description>
			<author>Zyrxil</author>
			<category domain="http://www.wowinterface.com">Miscellaneous</category>
			<guid>http://www.wowinterface.com/downloads/info5338-33036.html#comments</guid>
			
			<pubDate>Tue, 20 Feb 2007 02:05:21 +0000</pubDate>
		</item>		<item>
			<title><![CDATA[Originally posted by Roq... (CandyDice)]]></title>
			<link>http://www.wowinterface.com/downloads/info5338-31834.html#comments</link>
			<description>Originally posted by Roq &lt;br /&gt;Hey any word on getting Sap added to this mod. I really like it alot and would rather not have to go find a new bar mod. I am not so concerned about PvP, but PvE. &lt;br /&gt;&lt;br /&gt;Couldn't you just check the Combat Log for when it was applied and count down from there? &lt;br /&gt;&lt;br /&gt;Sap support coming in next release, sometime this week.</description>
			<author>kaylen</author>
			<category domain="http://www.wowinterface.com">Miscellaneous</category>
			<guid>http://www.wowinterface.com/downloads/info5338-31834.html#comments</guid>
			
			<pubDate>Wed, 07 Feb 2007 13:37:02 +0000</pubDate>
		</item>		<item>
			<title><![CDATA[Hey any word on getting Sap added t... (CandyDice)]]></title>
			<link>http://www.wowinterface.com/downloads/info5338-31756.html#comments</link>
			<description>Hey any word on getting Sap added to this mod. I really like it alot and would rather not have to go find a new bar mod. I am not so concerned about PvP, but PvE. &lt;br /&gt;&lt;br /&gt;Couldn't you just check the Combat Log for when it was applied and count down from there?</description>
			<author>Roq</author>
			<category domain="http://www.wowinterface.com">Miscellaneous</category>
			<guid>http://www.wowinterface.com/downloads/info5338-31756.html#comments</guid>
			
			<pubDate>Tue, 06 Feb 2007 18:56:22 +0000</pubDate>
		</item>		<item>
			<title><![CDATA[Re: Re: Re: is there any chance... (CandyDice)]]></title>
			<link>http://www.wowinterface.com/downloads/info5338-31066.html#comments</link>
			<description>Originally posted by VincentSDSH &lt;br /&gt;That was the first thing I tried, didn't make any difference to the texture though. &lt;br /&gt;&lt;br /&gt;It should have worked before, but if it didn't, it should work now with the SurfaceLib integration. You can also register your texture with SurfaceLib and select it from the texture menu.</description>
			<author>kaylen</author>
			<category domain="http://www.wowinterface.com">Miscellaneous</category>
			<guid>http://www.wowinterface.com/downloads/info5338-31066.html#comments</guid>
			
			<pubDate>Thu, 01 Feb 2007 01:30:45 +0000</pubDate>
		</item>		<item>
			<title><![CDATA[Re: Re: is there any chance... (CandyDice)]]></title>
			<link>http://www.wowinterface.com/downloads/info5338-31056.html#comments</link>
			<description>Originally posted by kaylen The easiest way to change the texture is to just replace the texture file in the CandyDice directory. &lt;br /&gt;&lt;br /&gt;That was the first thing I tried, didn't make any difference to the texture though.&lt;br /&gt;&lt;br /&gt;Edit: once I updated the .toc to hook the supplied surface lib, I got more options than {Blizzard} for textures and was able to get the retexturing to work.</description>
			<author>VincentSDSH</author>
			<category domain="http://www.wowinterface.com">Miscellaneous</category>
			<guid>http://www.wowinterface.com/downloads/info5338-31056.html#comments</guid>
			
			<pubDate>Wed, 31 Jan 2007 23:02:07 +0000</pubDate>
		</item>		<item>
			<title><![CDATA[Re: is there any chance... (CandyDice)]]></title>
			<link>http://www.wowinterface.com/downloads/info5338-29714.html#comments</link>
			<description>Originally posted by Morgaloth &lt;br /&gt;that you can add a way to REMOVE abilites or cooldowns? I only want Kick and Blade flurry to show at the moment. am i just missing a way to do this?&lt;br /&gt;&lt;br /&gt;Also, how can you change textures? i've added some from another bar mod and it won't let me change them &lt;br /&gt;&lt;br /&gt;/cdice abilities &lt;ability&gt; delete. You can also change the cooldown &amp; buff scanning of each ability individually with /cdice abilities scanbuff|scancd.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;The easiest way to change the texture is to just replace the texture file in the CandyDice directory.</description>
			<author>kaylen</author>
			<category domain="http://www.wowinterface.com">Miscellaneous</category>
			<guid>http://www.wowinterface.com/downloads/info5338-29714.html#comments</guid>
			
			<pubDate>Sat, 20 Jan 2007 18:29:17 +0000</pubDate>
		</item>		<item>
			<title><![CDATA[is there any chance... (CandyDice)]]></title>
			<link>http://www.wowinterface.com/downloads/info5338-29573.html#comments</link>
			<description>that you can add a way to REMOVE abilites or cooldowns? I only want Kick and Blade flurry to show at the moment. am i just missing a way to do this?&lt;br /&gt;&lt;br /&gt;Also, how can you change textures? i've added some from another bar mod and it won't let me change them</description>
			<author>Morgaloth</author>
			<category domain="http://www.wowinterface.com">Miscellaneous</category>
			<guid>http://www.wowinterface.com/downloads/info5338-29573.html#comments</guid>
			
			<pubDate>Fri, 19 Jan 2007 09:59:48 +0000</pubDate>
		</item>		<item>
			<title><![CDATA[Re: waterelemental (CandyDice)]]></title>
			<link>http://www.wowinterface.com/downloads/info5338-28978.html#comments</link>
			<description>Originally posted by Vella &lt;br /&gt;hello, the water elemental lasts 45sec. after it was cast. no more no less  :D .&lt;br /&gt;no, it's no buff.&lt;br /&gt;&lt;br /&gt;what infos do you need? :) &lt;br /&gt;&lt;br /&gt;What's the exact name of the water elemental spell, as it shows up in your spellbook?&lt;br /&gt;&lt;br /&gt;When you have the water elemental out, do you have a pet tab in your spellbook? If so, what are the names of its abilities as shown there?</description>
			<author>kaylen</author>
			<category domain="http://www.wowinterface.com">Miscellaneous</category>
			<guid>http://www.wowinterface.com/downloads/info5338-28978.html#comments</guid>
			
			<pubDate>Sun, 14 Jan 2007 23:17:53 +0000</pubDate>
		</item>		<item>
			<title><![CDATA[waterelemental (CandyDice)]]></title>
			<link>http://www.wowinterface.com/downloads/info5338-28459.html#comments</link>
			<description>hello, the water elemental lasts 45sec. after it was cast. no more no less  :D .&lt;br /&gt;no, it's no buff.&lt;br /&gt;&lt;br /&gt;what infos do you need? :)</description>
			<author>Vella</author>
			<category domain="http://www.wowinterface.com">Miscellaneous</category>
			<guid>http://www.wowinterface.com/downloads/info5338-28459.html#comments</guid>
			
			<pubDate>Fri, 12 Jan 2007 14:57:29 +0000</pubDate>
		</item>		<item>
			<title><![CDATA[Originally posted by kayl... (CandyDice)]]></title>
			<link>http://www.wowinterface.com/downloads/info5338-27581.html#comments</link>
			<description>Originally posted by kaylen &lt;br /&gt;Kidney Shot Works For Me(tm). Can you give me any specifics?&lt;br /&gt;&lt;br /&gt;As I outlined in my edit below, it seems to trigger off a different event, I changed that and it's showing whereas it won't show at all using CHAT_MSG_SPELL_SELF_DAMAGE as it's coded.&lt;br /&gt;&lt;br /&gt;Edit: Heh, caught your edit below just now and it matches what I was expecting.  I noticed the duration problem being due to combo pts = 0 (I assumed they were 'used' by the time the event triggered) but didn't want to fight the 404 errors to try to edit the post.&lt;br /&gt;&lt;br /&gt;I came here to just that (and that I was going to try capping the combo pts from spell complete) but, heh, you'd updated.  :D &lt;br /&gt;&lt;br /&gt;Thanks again :)</description>
			<author>VincentSDSH</author>
			<category domain="http://www.wowinterface.com">Miscellaneous</category>
			<guid>http://www.wowinterface.com/downloads/info5338-27581.html#comments</guid>
			
			<pubDate>Wed, 10 Jan 2007 02:22:29 +0000</pubDate>
		</item>		<item>
			<title><![CDATA[Originally posted by Vinc... (CandyDice)]]></title>
			<link>http://www.wowinterface.com/downloads/info5338-27572.html#comments</link>
			<description>Originally posted by VincentSDSH &lt;br /&gt;Anyone else notice that KidneyShot doesn't trigger a duration bar? or that the stealth cooldown seems to go off somewhat at random? &lt;br /&gt;&lt;br /&gt;Kidney Shot Works For Me(tm). Can you give me any specifics?&lt;br /&gt;&lt;br /&gt;The stealth bar will sometimes show up when it should be suppressed. This is your client showing the cooldown wrong, usually because of lag. It should correct itself in a second or two.&lt;br /&gt;&lt;br /&gt;CandyDice seems to work fine under the new patch, I will post an updated version later this week (Monday at the latest) with the toc fixes below and an updated toc for the new patch.&lt;br /&gt;&lt;br /&gt;EDIT: Kidney Shot worked for me because I hadn't merged the fixes for it from my TBC branch. Because of the slowness of the site, I don't want to struggle through making a release but I will paste the updated file below. FYI, duration didn't work because the event now fires after your combo points are gone.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;assert(CDRogueTimers)&lt;br /&gt;local BabbleSpell = AceLibrary(&quot;Babble-Spell-2.2&quot;)&lt;br /&gt;&lt;br /&gt;KidneyShot = CDRogueTimers:NewModule(&quot;Kidney Shot&quot;)&lt;br /&gt;&lt;br /&gt;local KSName = BabbleSpell&lt;br /&gt;&lt;br /&gt;KidneyShot.category = &quot;Stun&quot;&lt;br /&gt;&lt;br /&gt;function KidneyShot:OnEnable()&lt;br /&gt;    --self:SetDebugging(true)&lt;br /&gt;    self.rank = nil&lt;br /&gt;    self:RegisterEvent(&quot;SPELLS_CHANGED&quot;, &quot;ScanSkills&quot;)&lt;br /&gt;    self:RegisterEvent(&quot;UNIT_SPELLCAST_SUCCEEDED&quot;)&lt;br /&gt;    self.parser:RegisterEvent(&quot;CDRogueTimersKidneyShot&quot;, &quot;CHAT_MSG_SPELL_PERIODIC_CREATURE_DAMAGE&quot;, function(event, info)&lt;br /&gt;        return self:CHAT_MSG_SPELL_PERIODIC_CREATURE_DAMAGE(event, info)&lt;br /&gt;    end)    &lt;br /&gt;end&lt;br /&gt;&lt;br /&gt;function KidneyShot:OnDisable()&lt;br /&gt;    self.parser:UnRegisterAllEvents(&quot;CDRogueTimersKidneyShot&quot;)&lt;br /&gt;end&lt;br /&gt;&lt;br /&gt;function KidneyShot:UNIT_SPELLCAST_SUCCEEDED(unit, spell)&lt;br /&gt;    if unit ~= &quot;player&quot; then return end&lt;br /&gt;    if spell ~= KSName then return end&lt;br /&gt;    self.combo = GetComboPoints()&lt;br /&gt;end&lt;br /&gt;&lt;br /&gt;function KidneyShot:CHAT_MSG_SPELL_PERIODIC_CREATURE_DAMAGE(event, info)&lt;br /&gt;    if info.skill ~= KSName then return end&lt;br /&gt;    if not self.rank then&lt;br /&gt;        self:ScanSkills()&lt;br /&gt;    end&lt;br /&gt;    if not self.rank then return end&lt;br /&gt;    if not self.combo then return end&lt;br /&gt;    local duration = self.combo + (self.rank-1)&lt;br /&gt;    self.combo = nil&lt;br /&gt;    self:StartBar(duration)&lt;br /&gt;end&lt;br /&gt;&lt;br /&gt;function KidneyShot:ScanSkills()&lt;br /&gt;    -- Scan spellbook to figure out what rank we have&lt;br /&gt;    for ii =1,MAX_SPELLS do&lt;br /&gt;        local name, rank = GetSpellName(ii, BOOKTYPE_SPELL)&lt;br /&gt;        --self:Debug(name)&lt;br /&gt;        if name == KSName then&lt;br /&gt;            --- wrong wrong wrong... parse the rank out of the string&lt;br /&gt;            local _,_,nrank = string.find(rank, 'Rank (%d)')&lt;br /&gt;            self.rank = nrank&lt;br /&gt;            return&lt;br /&gt;        end&lt;br /&gt;    end&lt;br /&gt;end&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;CheapShot = CDRogueTimers:NewModule(&quot;Cheap Shot&quot;)&lt;br /&gt;&lt;br /&gt;CheapShot.category = &quot;Stun&quot;&lt;br /&gt;&lt;br /&gt;function CheapShot:OnEnable()&lt;br /&gt;     self.parser:RegisterEvent(&quot;CDRogueTimersCheapShot&quot;, &quot;CHAT_MSG_SPELL_PERIODIC_CREATURE_DAMAGE&quot;, function(event, info)&lt;br /&gt;        return self:CHAT_MSG_SPELL_PERIODIC_CREATURE_DAMAGE(event, info)&lt;br /&gt;    end)&lt;br /&gt;end&lt;br /&gt;&lt;br /&gt;function CheapShot:OnDisable()&lt;br /&gt;    self.parser:UnRegisterAllEvents(&quot;CDRogueTimersCheapShot&quot;)&lt;br /&gt;end&lt;br /&gt;&lt;br /&gt;function CheapShot:CHAT_MSG_SPELL_PERIODIC_CREATURE_DAMAGE(event, info)&lt;br /&gt;    if info.skill ~= BabbleSpell then return end&lt;br /&gt;    if info.victim ~= UnitName(&quot;target&quot;) then return end&lt;br /&gt;    self:StartBar(4)&lt;br /&gt;end&lt;br /&gt;</description>
			<author>kaylen</author>
			<category domain="http://www.wowinterface.com">Miscellaneous</category>
			<guid>http://www.wowinterface.com/downloads/info5338-27572.html#comments</guid>
			
			<pubDate>Wed, 10 Jan 2007 02:07:51 +0000</pubDate>
		</item>		<item>
			<title><![CDATA[Anyone else notice that KidneyShot... (CandyDice)]]></title>
			<link>http://www.wowinterface.com/downloads/info5338-27562.html#comments</link>
			<description>Anyone else notice that KidneyShot doesn't trigger a duration bar? or that the stealth cooldown seems to go off somewhat at random?&lt;br /&gt;&lt;br /&gt;Edit: Ok, looks like KidneyShot throws a CHAT_MSG_SPELL_PERIODIC_CREATURE_DAMAGE instead of a CHAT_MSG_SPELL_SELF_DAMAGE event, I changed the event for KidneyShot and the duration timer started showing up again...now to get it to use the right duration...</description>
			<author>VincentSDSH</author>
			<category domain="http://www.wowinterface.com">Miscellaneous</category>
			<guid>http://www.wowinterface.com/downloads/info5338-27562.html#comments</guid>
			
			<pubDate>Wed, 10 Jan 2007 01:33:53 +0000</pubDate>
		</item>		<item>
			<title><![CDATA[Also glad to have you back in actio... (CandyDice)]]></title>
			<link>http://www.wowinterface.com/downloads/info5338-27555.html#comments</link>
			<description>Also glad to have you back in action Kaylen. Will give these a workout later this week.</description>
			<author>Loads</author>
			<category domain="http://www.wowinterface.com">Miscellaneous</category>
			<guid>http://www.wowinterface.com/downloads/info5338-27555.html#comments</guid>
			
			<pubDate>Wed, 10 Jan 2007 01:07:32 +0000</pubDate>
		</item>		<item>
			<title><![CDATA[Glad to see ya back, Kaylen :)J... (CandyDice)]]></title>
			<link>http://www.wowinterface.com/downloads/info5338-27393.html#comments</link>
			<description>Glad to see ya back, Kaylen :)&lt;br /&gt;&lt;br /&gt;Just fyi, in the 67 build, the .toc file has a problem, it should look like: &lt;br /&gt;&lt;br /&gt;Libs\AceModuleCore-2.0\AceModuleCore-2.0.lua&lt;br /&gt;Libs\ParserLib\ParserLib.lua&lt;br /&gt;&lt;br /&gt;(extra file ref removed and parselib pathname fixed)</description>
			<author>VincentSDSH</author>
			<category domain="http://www.wowinterface.com">Miscellaneous</category>
			<guid>http://www.wowinterface.com/downloads/info5338-27393.html#comments</guid>
			
			<pubDate>Tue, 09 Jan 2007 15:50:40 +0000</pubDate>
		</item>		<item>
			<title><![CDATA[I'm sorry for abandoning you guys,... (CandyDice)]]></title>
			<link>http://www.wowinterface.com/downloads/info5338-27275.html#comments</link>
			<description>I'm sorry for abandoning you guys, seeing all the posts motivate me a lot more to clean up what I have and release it. I've had a lot of work IRL and my guild disbanded so I haven't been playing much lately, kind of on hold until TBC ships.&lt;br /&gt;&lt;br /&gt;The CandyBar problem listed below - thanks for the fix. The CandyBar devs slipped a backwards incompatible API change in without upping the version number and I was hoping they'd fix it right away, but I will fix CandyDice to work properly with the new API.&lt;br /&gt;&lt;br /&gt;Non-refreshing timers: Blizzards fault, but CandyDice can work around it.&lt;br /&gt;&lt;br /&gt;RE:  CCWatch functionality. This is the purpose of the CandyDice-RogueTimers addon (part of CandyDice). It's still a beta state but will be working much better in the upcoming release.&lt;br /&gt;&lt;br /&gt;RE: Shadow priests: CandyDice can, out of the box, track any buff or cooldown. just add them to be tracked with /cdice abilities addnew. I add items to the defaults as it occurs to me, and I mainly play a rogue so those are the abilities I add. If anyone wants to contribute default files for any class or race, they are very easy to create - just edit the class files in the CandyDice folder. Copy existing entries, the color entry is a HTML format hex color.&lt;br /&gt;&lt;br /&gt;RE: Frost mages: The water elemental isn't a buff (I think?) so the core CandyDice mod won't work, but a CandyDice-RogueTImers module probably could. I don't have a 60 mage so someone else would need to write this or provide me with the information needed.&lt;br /&gt;&lt;br /&gt;Thank you all for all your support, I feel bad about letting you guys down. I have a new release incoming.</description>
			<author>kaylen</author>
			<category domain="http://www.wowinterface.com">Miscellaneous</category>
			<guid>http://www.wowinterface.com/downloads/info5338-27275.html#comments</guid>
			
			<pubDate>Tue, 09 Jan 2007 01:15:18 +0000</pubDate>
		</item>
	</channel>
</rss>