Results: 94Comments by: Tifi
File: CooldownWatch12-21-08
Originally posted by Ceromus I kn...
Posted By: Tifi
Originally posted by Ceromus I know you said you're not going to put in autosorting but can you make it so the colors of the bars change based on how much time is left? Never gonna happen. Originally posted by Tyrrael Any chance you could implement debuff timer tracking? (e.g. dots up on your target) And displaying tenths of...
File: Pawn12-21-08
Good points. You're right, user-def...
Posted By: Tifi
Good points. You're right, user-defined functions would probably not be worth the time to implement. As for the trinkets: Sure, some effects are really complex and would be hard to convert. But then again, I don't think you should be concerned about users equipping on-kill trinkets in a boss fight, just because Pawn tells them to....
File: Pawn12-20-08
The only available rating formula i...
Posted By: Tifi
The only available rating formula is linear in the stats. When rating gear for DDs, I'd argue that DPS is non-linear for every single class in the game. For a caster it might look like this DPS = c0*(c1+)*(1+c2*)/(1+c3*)*(1+c4*) One feature I would like to see is an optional user-supplied evaluation function per rating profile. Paw...
File: Dominos12-14-08
I normally hide my main action bar,...
Posted By: Tifi
I normally hide my main action bar, as I'm using hotkeys anyways. Now I'd like to have this bar visible only when I'm possessing something/driving a vehicle. As a workaround I use in the Show States. It's working so far (tested w/ Mind Control and the plane flying daily), but I'm not sure if this is the best way. Sometimes there are...
File: CooldownWatch12-11-08
Glad you like the addon. At the mom...
Posted By: Tifi
Glad you like the addon. At the moment there's no option to mirror the layout. I'll think about adding it. I'm always a bit reluctant to add options I'm never going to use myself, but this one might be pretty straightforward.
File: CooldownWatch12-07-08
Originally posted by Ceromus 2nd up...
Posted By: Tifi
Originally posted by Ceromus 2nd update: Rebooting the computer fixed it. May I ask how long your computer has been running before to the reboot? Edit: I found a bug which would cause the addon to stop working if the computer was running for more than ~10 days. Rebooting the computer would fix it. I just posted a new version, I...
File: CooldownWatch12-05-08
Originally posted by Kerecha But...
Posted By: Tifi
Originally posted by Kerecha But this time is different, when i type /cw all cooldowns i have set up to track are showing in the list, but nothing happends when i trigger any of them. I remember you posting on curse. The SavedVar resetting should be fixed now. Unfortunately I don't know how to help you with your other problem. You...
File: WowLua11-18-08
The fix for Lombra's error is in my...
Posted By: Tifi
The fix for Lombra's error is in my last post. I just failed to include the error message.
File: CooldownWatch11-14-08
The new version is up. The new feat...
Posted By: Tifi
The new version is up. The new feature is debugging, in case something is not working. /cw debug 3 Enable debugging, then reload the interface /console reloadui You'll notice some debug messages getting printed, especially when a tracked cooldown is triggered. Then use /cw log A frame will pop up containing all those debug mes...
File: CooldownWatch11-08-08
Originally posted by nazrhyn Is t...
Posted By: Tifi
Originally posted by nazrhyn Is there some way in Lua I can trace the cooldown events as they bubble up through all the things that hook them? No, not really. Registering for events can't be the problem, addons do that independently of each other. It's more likely that I made a mistake. I'll try to get a release ready for tomorro...
File: CooldownWatch11-06-08
Frankly I have no idea. It sounds l...
Posted By: Tifi
Frankly I have no idea. It sounds like you did everything correctly. I assume you used spells with a noteworthy cooldown, the addon ignores cooldowns <=1.6s because of the GCD. You could disable all other addons to see if that helps at all. You could also try to hide/show the UI after using a spell (Alt-Y or Alt-Z, not sure). That's...
File: wowChess11-06-08
To make this work in 3.0 (and not s...
Posted By: Tifi
To make this work in 3.0 (and not screw up your chat) you just need to comment out lines 114 and 115 in wowChess.lua. --Called when its loaded function wowChess_OnLoad() -- Hook ChatFrame_OnEvent so we can examine messages --WoW_ChatFrame_OnEvent = ChatFrame_OnEvent; --ChatFrame_OnEvent = wowChess_ChatFrame_OnEvent; wowChes...
File: CooldownWatch11-04-08
I believe both Shadowmelt and Steal...
Posted By: Tifi
I believe both Shadowmelt and Stealth are working correctly. The bar appears as soon as the cooldown is triggered, even though it's not yet started. The same happens with potions, Inner Focus, Feign Death etc. I have to change some stuff for those spells anyways, and I guess it'd be ok if the addon only tracked cooldowns that are act...
File: CooldownWatch11-03-08
Ok, Blizzard's functions don't work...
Posted By: Tifi
Ok, Blizzard's functions don't work with "Faerie Fire (Feral)", but "Faerie Fire (Feral)()" works. Fixed in 1.11b, please tell me if it works for you.
File: CooldownWatch11-01-08
Today I came across an odd bug. Bli...
Posted By: Tifi
Today I came across an odd bug. Blizzard's Get*Cooldown() functions behaved unexpectedly when the cooldown started before the computer was rebooted. This is due to a limitation of the Windows API function GetTickCount(), which cannot return negative values. I fixed this in 1.11, and it's working here on Windows 2000. I would very...
File: WowLua11-01-08
local function dropDownFunc(page)...
Posted By: Tifi
local function dropDownFunc(page) WowLua:GoToPage(page) end needs to be changed to local function dropDownFunc(btn, page) WowLua:GoToPage(page) end Oh and could you please either remove the Undo button or implement a Redo? ATM this "Undo" just loads the previously saved version of the script. All this button ever did fo...
File: CooldownWatch10-27-08
Originally posted by Toran Does t...
Posted By: Tifi
Originally posted by Toran Does this also work for potions, etc? Interesting. I just tried, and potions didn't work correctly in combat because the cooldown doesn't start immediately. Same goes for spells like Inner Focus. Fixed in 1.10, thanks for the hint.
File: NotSimpleCombatLog09-12-08
If anyone has any idea how I can re...
Posted By: Tifi
If anyone has any idea how I can reorder the verbs so stuff like this: 23:37:16> ++ . 23:37:18> --. looks like this: 23:37:16> ++ . 23:37:18> -- . That should do the trick: ACTION_SPELL_AURA_REMOVED_BUFF_MASTER = "2"; ACTION_SPELL_AURA_APPLIED_BUFF = "++"; ACTION_SPELL_AURA_REMOVED_BUFF = "--"; ACTION_SPE...
File: SuperCombatLogConfig08-15-08
Now automatically fills in missing flags.
Posted By: Tifi
Hello, I'd like to have a filter that shows just the spells of my target. But this "automatically fills in missing flags" feature keeps getting in the way. I really just want my target, nothing else, but the addon won't let me set this single flag without enabling a bunch of other flags I don't want. What's the point of that feature...