| Updated: | 10-15-08 03:51 PM |
| Created: | unknown |
| Downloads: | 11,549 |
| Favorites: | 53 |
| MD5: |

![]() |
Comment Options |
|
|
|
|
This addon is great. Would it be possible to prevent it from going off if I break the sheep myself, or to have that as an option?
|
|
|
|
|
|
|
|
A Kobold Labourer
Forum posts: 0
File comments: 4
Uploads: 0
|
me again.. do you plan on updating this for 2.3?
|
|
|
|
|
|
|
After WoW patch 2.2.2, sound appears to be working natively again. If it does not work for you, please try the fix below.
|
|
|
|
|
|
|
|
A Kobold Labourer
Forum posts: 0
File comments: 4
Uploads: 0
|
Thank you very much, it now works again
![]() |
|
|
|
|
|
|
Yes, the sound file does not always play since 2.2, this is a Blizzard problem that affects many addons.
Here is a temporary workaround that has been reported to work, but I haven't been able to test it myself: Open the file CCBreakWarner.lua in a text editor (Notepad is fine) - Go to line 95 (second to last line) - Before the line "PlaySoundFile("Sound\\Doodad\\CollectorTubeShutdown.wav");", add the line "PlaySound("igMiniMapZoomIn");" - After this, the end of the file should look like: Code:
function CCBreakWarnerNotify(TextMessage)
Print(TextMessage);
if (UIErrorsFrame) then
UIErrorsFrame:AddMessage(TextMessage, 1, 1, 0, 1.0, UIERRORS_HOLD_TIME);
end
PlaySound("igMiniMapZoomIn");
PlaySoundFile("Sound\\Doodad\\CollectorTubeShutdown.wav");
end
|
|
|
|
|
|
|
|
A Kobold Labourer
Forum posts: 0
File comments: 4
Uploads: 0
|
Thanks for the last reply, I never came back to tell you thanks
BUT HOWEVER... since the new patch, there is no longer a sound file when the CC breaks. Does this have something to do with the fact that Blizz has messed with the sound related things to help support their chat system?? Thanks for the help |
|
|
|
|
|
|
You can easily change the sound to whatever you like, with a little editing. Belleboom posted a few comments on how to do this on the AddOn's curse-gaming page.
|
|
|
|
|
|
|
|
A Kobold Labourer
Forum posts: 0
File comments: 4
Uploads: 0
|
Is it possible to change the
I was wondering if it is possible to change the break sound. Sometimes in the raids, I have my ear trained on voices in vent and it is hard to hear the break sound. Can I change this?? Thanks for your help
|
|
|
|
|
|
|
A Kobold Labourer
Forum posts: 0
File comments: 5
Uploads: 0
|
Re: Re: Request: Breaking Soon Message
That's why I said it was a tangent. I was wondering if there was a way to identify the raid icon in use on your focus target so you could announce it to other people. Obviously you could just assign one on purpose and announce it, but very often things don't happen the way you plan and you find yourself controlling a different target than you expected. As a rule, I find it bad form to change the raid icons in the middle of a fight.
Anyway, if you're avoiding warning broadcasts via chat, there's no point in looking into that.
Last edited by vaedin : 06-21-07 at 02:44 PM.
|
|
|
|
|
||
|
Re: Request: Breaking Soon Message
Well, the main purpose of the mod is to alert you, the CC caster, than your CC has broken, so your attention can be elsewhere instead of babysitting your mob.
Given how many great timer mods there are that can show you the time left on a CC, I will probably not add that feature. For example Natur's Enemy Cast Bars will show me the expected duration of all CC spells cast by party members. I am hesitant to add an announce feature to this mod since it can be spammy if the CC keeps breaking, and again, the primary goal is to alert oneself. I do realize that Sap is unique, I may have to think about that. Regarding raid targets, you can add lines to your macro: /script SetRaidTargetIcon("target", 4); /say Casting my CC spell on green triangle! (you can use one through 8)
|
||
|
|
|
|
|
|
A Kobold Labourer
Forum posts: 0
File comments: 5
Uploads: 0
|
Request: Breaking Soon Message
Sorry if any of this is already covered, but I haven't had the time or opportunity to try out the addon just yet.
Sap cannot be reapplied and it is more useful for the tank to know when it is going to break rather than when it is broken. It would be very cool to have the option to tell your party or raid that "Sap on <focus target's name> is breaking in X seconds." where X is configurable or just a static number like 5 or 10. Now off on a tangent. Is it possible to get the raid icon assigned to the focus target? Reporting that in text could also be useful. "<CC> on <COLOR SHAPE> broke! Pick it up!" |
|
|
|
|
||
/cast Polymorph /run for i=1,GetNumRaidMembers()-1 do local u,t="raid"..i,"target"if UnitIsUnit(u..t,t)then SendChatMessage("Change targets! Trying to sheep...","WHISPER",nil,UnitName(u)) end end So a macro may be useful if you desire this functionality. |
||
|
|
|
|
||
|
||
|
|
![]() |