vanilla-wow-addons – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 CountDoom v0.48
2 author: Justin Milligan
3 updated by: Scrum (Kilrogg server - Horde)
4  
5 CountDoom is an Add-On for warlocks. Originally, it only displayed a counter on the screen whenever a demon is enslaved. The goal was to give the warlock a warning as enslave approaches its maximum duration.
6  
7 CountDoom can play sounds at specific times to grab your attention. Currently, a sound may be played when a spell is getting close to wear off and when it finally wears off.
8  
9 In order for CountDoom to play user defined sounds, you must place the .wav files in the
10 Interface/AddOns/CountDoom/ folder. NOTE: In the original version, the .WAV files were located in /world of warcraft/Data folder. The older folder is no longer used by this AddOn. This zip contains 2 sample sound files, but feel free to use your own.
11  
12 To tell CountDoom which sound files to play, you use the /countdoom or /cd commands:
13  
14 To enable or disable CountDoom
15 /countdoom <enable|disable>
16  
17 To toggle whether or not a sound is played at warning and end marks
18 /countdoom play
19  
20 To toggle whether or not a message is displayed in the text window. It cycles through 'never', 'local', 'party', 'raid' and 'all'. Added in v48, ability to announce to a 'channel'.
21 /countdoom announce
22  
23 To toggle whether or not a timer will flash when warning time exceeded.
24 /countdoom flash
25  
26 To display spell information
27 /countdoom <spellabbreviation>
28  
29 To toggle a spell timer (useful for disabling DoTs if tracked by another addon):
30 /countdoom <spellabbreviation> toggle
31  
32 To move the timers around, you need to unlock the timer display. This can only be accomplished via
33 /countdoom <unlock|lock>
34  
35 To test out a timer without without expending mana or wasting a shard
36 /countdoom <spell abbreviation> <start|end>
37  
38 To cycle through various layouts. Cycles through horizontal, vertical and textonly layouts
39 /countdoom layout
40  
41 To cycle through 3 different sizes (horizontal and vertical layouts only)
42 /countdoom scale
43  
44 ##NEW IN 48##
45 To add a delay before removing timers after leaving combat.
46 /countdoom ooc <seconds>
47  
48 To add a delay before removing timers after expiration.
49 /countdoom expire <seconds>
50  
51 To toggle enabling/disabling of fractional seconds display in timers.
52 /countdoom hseconds
53  
54 To set the channel for announcing timer events
55 /countdoom channel <channel name>
56  
57  
58 DEBUG:
59 To test out the timer without wasting a shard.
60 /countdoom enslave <start|end>
61  
62 Spell abbreviations:
63 banish - banish
64 coa - curse of agony
65 cod - curse of doom
66 coe - curse of elements
67 coex - curse of exhaustion
68 corruption - corruption
69 cos - curse of shadow
70 cot - curse of tongues
71 cow - curse of weakness
72 enslave - enslave
73 fear - fear
74 howl - howl
75 immolate - immolate
76 siphon - siphon life
77 coil - death coil
78 seduce - Succubus seduction
79 spelllock - Felhunter spell lock support
80  
81  
82 v0.48 updates:
83 - Support for 1.10 client.
84 - Removed CameraOrSelectOrMoveStart hooking since it is no longer viable.
85 - Hopefully, fixed icon problems causing crashes.
86 - Added fractional seconds support courtesy of FuNkY MoOsE. This is short term logic. Longer term will be customizable text capabilities.
87 - Added a script function to check if your target has a timed debuff. TargetHasMyDebuff( spellAbbreviation ) will return true if you have an outstanding timer for your current target otherwise false. Courtesy of guildmate Hexanna.
88 - Added a delay for out of combat. It will wait N seconds before removing a timer. During this time, the timer will go negative. /
89 - Added channel announce support. see /countdoom channel <channel name> and /countdoom announce.
90 - Added felhunter spell lock support
91 - Fixed problems with retrieving spell name and rank from tooltips in 1.10.
92 - Fixed some problems detecting curses on some non-english clients.
93 - Added support for conflagrate to remove immolate timers. (untested)
94  
95 v0.47 updates:
96 - Support for 1.9 client
97 - Add text only timer descriptions. Use /cd layout to cycle through layout modes.
98 - Add scale support. Use /cd scale to cycle through 3 different scales.
99 - Add explicit deletion of timers. Can shift-left click to delete a timer.
100 - Added GUI support for dragging / cycling layouts.
101 - Added different duration support for rank 1 versus rank 2 spells such as Banish.
102 - WAV files for timers now start with the spell abbreviation plus a suffix. Example: enslavewarning.wav and enslaveend.wav
103  
104 v0.46 updates:
105 - Resists and Immunes are better detected though not perfect.
106 - Added enable support
107 - Succubus seduction timing based on effect not casting.
108 - Support for 1.8 client.
109 - Added DeathCoil timer
110 - Added seduction timer changes based on Improved Succubus. (Thanks Morbain)
111 - Fixed several problems with spells in macros.
112 - A few compatibility fixes.
113  
114  
115 v0.45 updates: DOA.
116  
117 v0.44 updates:
118 - Added preliminary support for Succubus Seduction. Might work for French UIs. Need German translation.
119  
120 v0.43 updates:
121 - Fixed problem with rapid spell casting losing a timer.
122 - added support for casting via macros using CastSpellByName.
123 - added 'Resist' support for spells. See known issues below.
124  
125 v0.42 updates:
126 - Fixed problem with interrupting a spell still showing timers.
127 - Fixed problem with targetting. Targetting first tries last enemy then cycle 10 nearest enemies until and name/level match.
128 - added ability to toggle text flashing. '/cd flash' toggles flashing.
129 - added color coding to timer text.
130  
131 v0.41 updates:
132 - Added German/French localization changes from user feedback.
133 - Updated README.TXT for command usage.
134  
135 v0.40 updates:
136 - Added banish and DoT timers.
137 - Immune spell timers are removed.
138 - Resisted spell timers are NOT removed. Fixed in near future.
139 - Debuffs bumped off mobs are NOT removed and likely won't ever be.
140 - Added untested German / French client support.
141 - Added version 1600 client support.
142  
143 v0.35 updates:
144 - Fixed compatibility issues with latest client patch.
145 - Added icon support.
146 - Changed architecture to support more warlock duration items (i.e. DoTs, etc.)
147 - Changed the commands to better align with future directions.
148 - Renamed the WAVs to better support future directions. (minute->warning) (break->end)
149  
150 v0.3 updates:
151 - Fixed compatibility issues with latest client patch.
152 - Added a few debug commands to assist in testing w/o wasting a shard.
153 - Improved layout and text of counter.
154 - Added support for moving the counter to a new location.
155 - Moved .WAV file location to the AddOns/CountDoom folder.
156  
157 Known issues:
158 - Banish that occurs immediately after a preceding banish (aka chain banishing) is sometimes discarded from the timers list because the banish detection logic checks debuffs on the target which could be late relative to the banish action wearing off.
159 - The method to remove timers for 'Resist' and 'Immune' key off chat combat messages. If you are too far from the target, the message won't be seen and the timer won't be removed.
160 - Some spells are not being timed in all languages. Banish, Enslave Demon, Curse of Elements and Curse of Agony have been reported not working on the French version.
161  
162 Todo:
163 - Add 'Evade' support. 'Your <spell> was evaded by <mob>.'
164  
165 Credits:
166 Thanks to Justin for this valuable addon. Also, thanks go out to the authors of the CT_timer mod. I lifted the mouse dragging logic from that addon into this one. Also, thanks to all the other addon makers out there. Without yours, I surely wouldn't have updated this one.
167  
168 Final Note:
169 To my fellow warlocks out there on Kilrogg server, give me a hollar if you find my updates useful. I have a few ideas on extensions to this but I'll wait to see if there is interest in this base addon.