Thread Tools Display Modes
06-10-08, 04:57 AM   #1
Berrian
A Murloc Raider
Join Date: Nov 2007
Posts: 8
Chronometer issues

I recently had this problem kick up again. I could not seem to use the old fix to make it go away so I just started over and deleted all mods and my my wtf file.
I remazzled and I STILL have the problem of my Chronometer bars all writing over each other, in the middle of the hud, with no way to activate the anchor.
I would love it if someone could help me out with this issue.

Also, Obsidian mentioned in another thread the issue with tinytip as well. Seems the ttip options are missing or don't mazzify? I have the old ttip download on my desktop and just copy it over each time to get it to work.
  Reply With Quote
06-10-08, 08:07 AM   #2
Maddot
A Fallenroot Satyr
Join Date: Jan 2008
Posts: 23
If it's the bars on top of your HuD display, it's not the Chronometer. It's an add on called, Antagonist. You can access this by typing: /ant

From there you can lock/unlock it to move (3) anchors over to the right, adjacent to the chronometer's timer bars....or wherever your heart desires.
  Reply With Quote
06-10-08, 10:04 AM   #3
RedbullVDK
A Deviate Faerie Dragon
Join Date: Nov 2007
Posts: 11
I have the exact same issue. The bar on top is part of antagonist. Also it has a 2nd bar. that lines up perfectly with the chrono bar. I can't get either 1 of those bars to move. They are too high anyway sitting in the middle of the HUD but on top of each other is not cool. Any help would be cool

Also not sure what this is part of but in the center of the HUD some texts pop up that tells me what anything is doing around me. What addon is this?

Thanks
  Reply With Quote
06-10-08, 10:10 AM   #4
DocEVL
A Cobalt Mageweaver
 
DocEVL's Avatar
AddOn Author - Click to view addons
Join Date: Apr 2008
Posts: 232
Originally Posted by RedbullVDK View Post
Also not sure what this is part of but in the center of the HUD some texts pop up that tells me what anything is doing around me. What addon is this?
This is WitchHunt. If you have downloaded 1.17 and the new addon pack you can safely Mazzify WitchHunt now.
  Reply With Quote
06-10-08, 10:19 AM   #5
RedbullVDK
A Deviate Faerie Dragon
Join Date: Nov 2007
Posts: 11
Thank you for the name i do have all the new core and such. I assume i can move where it shows and such. Once its all back on line I will make it happen

You should get some sleep.

Thanks
  Reply With Quote
06-10-08, 05:39 PM   #6
Berrian
A Murloc Raider
Join Date: Nov 2007
Posts: 8
Originally Posted by Maddot View Post
If it's the bars on top of your HuD display, it's not the Chronometer. It's an add on called, Antagonist. You can access this by typing: /ant

From there you can lock/unlock it to move (3) anchors over to the right, adjacent to the chronometer's timer bars....or wherever your heart desires.
Thanks for this info, I'll try it for Antagonist, but I'm positive that it's chronometer that is my problem. As I stated in the OP, I had this problem pop up before, but the old stand-by fix didn't do so this time.
  Reply With Quote
06-10-08, 09:12 PM   #7
j_W
A Kobold Labourer
Join Date: Jun 2008
Posts: 1
I am having the same problem and have tried to fix it. Its not antagonist. Like the OP said i can't get the anchor to come up to move. I hit test and alot of bars on top of wach other start counting down.
  Reply With Quote
06-10-08, 09:34 PM   #8
DocEVL
A Cobalt Mageweaver
 
DocEVL's Avatar
AddOn Author - Click to view addons
Join Date: Apr 2008
Posts: 232
Originally Posted by j_W View Post
I am having the same problem and have tried to fix it. Its not antagonist. Like the OP said i can't get the anchor to come up to move. I hit test and alot of bars on top of wach other start counting down.
It is definetly Chronometer. It buts the bars on top of each other and unfortunately it does not seem to allow the achor to come up for moving. I have disabled it for now on my system. I am currently investigating a replacement (ne ideas).
  Reply With Quote
06-11-08, 11:17 AM   #9
Sierro
A Kobold Labourer
Join Date: Jun 2008
Posts: 1
DoTimer works well for me.
  Reply With Quote
06-11-08, 12:28 PM   #10
DocEVL
A Cobalt Mageweaver
 
DocEVL's Avatar
AddOn Author - Click to view addons
Join Date: Apr 2008
Posts: 232
Good news I have fixed the problem with Chronometer and it will be in the next release. It appears to work fine now.. I can move it (get anchor) and does not stack on top of each other.

For those who can not wait for the next core release here is the fix:

open !!MazzleUI_Preloader/mods/chronometer.lua:

Replace the entire (the whole file contents) with the following:
Code:
MazzleUI_Preloader["Chronometer"]= function()
    local BS = AceLibrary("Babble-Spell-2.2")
    function Chronometer:MageSetup2()
     local _, eclass = UnitClass("player")
     if eclass ~= "MAGE" then return end
 
     self:AddGroup(1, true, "MAGENTA")
     self:AddTimer(self.SPELL, BS["Summon Water Elemental"], 45, 0,0,1)
    end
    table.insert(Chronometer.dataSetup, Chronometer.MageSetup2)
end
That should take care of all the problems without having to completely rewrite Chronometer . Let me know if you do the above step and you have other issues.

Thanks!

Last edited by DocEVL : 06-11-08 at 04:01 PM.
  Reply With Quote
06-11-08, 12:57 PM   #11
trezy
A Cliff Giant
Join Date: Jan 2006
Posts: 72
so Doc... you're saying replace the whole file? or just the first segment?
  Reply With Quote
06-11-08, 01:09 PM   #12
DocEVL
A Cobalt Mageweaver
 
DocEVL's Avatar
AddOn Author - Click to view addons
Join Date: Apr 2008
Posts: 232
Originally Posted by trezy View Post
so Doc... you're saying replace the whole file? or just the first segment?
The WHOLE file. Basically getting rid of the second segment
  Reply With Quote
06-11-08, 03:27 PM   #13
trezy
A Cliff Giant
Join Date: Jan 2006
Posts: 72
Originally Posted by DocEVL View Post
The WHOLE file. Basically getting rid of the second segment
Ahh okay cool, thats what I figured.
  Reply With Quote
06-12-08, 05:19 AM   #14
Berrian
A Murloc Raider
Join Date: Nov 2007
Posts: 8
Excellent Doc! Much appreciated!
  Reply With Quote
06-14-08, 11:34 AM   #15
TheDude89
A Murloc Raider
Join Date: Mar 2008
Posts: 7
I replaced the whole file and mazzlefied, but now the bars are gone.. Any ideas how to fix this?
  Reply With Quote
06-14-08, 03:20 PM   #16
DocEVL
A Cobalt Mageweaver
 
DocEVL's Avatar
AddOn Author - Click to view addons
Join Date: Apr 2008
Posts: 232
Originally Posted by TheDude89 View Post
I replaced the whole file and mazzlefied, but now the bars are gone.. Any ideas how to fix this?
You don't have them disabled do you?
__________________
"Imagine all the people living life in peace" - J. Lennon


  Reply With Quote
06-15-08, 02:16 PM   #17
TheDude89
A Murloc Raider
Join Date: Mar 2008
Posts: 7
Originally Posted by DocEVL View Post
You don't have them disabled do you?
Nope, I checked to see if I missed anything. But, I did exactly what you said
  Reply With Quote
06-17-08, 10:53 AM   #18
Viciusan
A Cliff Giant
 
Viciusan's Avatar
Join Date: Nov 2007
Posts: 70
Arrow

Only thing i got goin on with Chrono is the timers won't stop after i killed the mob. So if i have to do CoS whole BT i end up with 10 bars full of countdowns CoS

Anny ideas ?
Now i just click ehm to get rid of ehm but it makes me a bit slow sometimes

Thanks in advance.

- ViCi -
__________________
  Reply With Quote

WoWInterface » AddOns, Compilations, Macros » AddOn Help/Support » Chronometer issues


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off