View Single Post
12-16-06, 03:38 PM   #29
Zaldinar
A Kobold Labourer
Join Date: Dec 2006
Posts: 1
For the cooldown count people

Anyone who wants to disable the cooldown count, and who isn't afraid to edit the .lua on their own (heheh), heres what I found:


Go to the ~/addons/TrinityButtons/TrinityButtons.lua file, on line 2491 (in my version of the file at least, might vary) in the function 'Trinity_UpdateButton()' there's a check that looks like this:

'if ( start > 0 and duration > 4 and enable > 0) then'

to disable the numbers for the cooldown count, just add 'and false' to that check, so it now reads

'if ( start > 0 and duration > 4 and enable > 0 and false) then'

And bingo, no numbers. For the author, a configuration option for that would be awesome :-D