Page 4 of 7

Re: [RELEASE] - VCB - Vanilla Consolidated Buff-Frames 2.9

PostPosted: Sat Oct 10, 2015 7:51 pm
by Geigerkind
Yes. I will look into it. Eventually I can solve it.

Re: [RELEASE] - VCB - Vanilla Consolidated Buff-Frames 2.9

PostPosted: Fri Oct 16, 2015 12:21 am
by TaurenRogue
Hallonkaka wrote:Your addons, both VCB and MPA, gives me this weird issue where my tooltip disappear whenever something happens in your addons, for example. if i gain or lose a buff, like mount, the tooltip disappear, so im im looking at an item and something happens in the addons, i have to re-hover the item to see the tooltip again. Im using Tinytip for my tooltips, but this happens even without it activated. it took me 40min of manually activating and disabling addons one by one to find out these two addons from you.

Do you know what might cause this?

same here...
not sure if its an interaction between these and some different addons or a standalone addon issue

Re: [RELEASE] - VCB - Vanilla Consolidated Buff-Frames 2.9

PostPosted: Sat Oct 17, 2015 1:55 pm
by Geigerkind
Hallonkaka wrote:Your addons, both VCB and MPA, gives me this weird issue where my tooltip disappear whenever something happens in your addons, for example. if i gain or lose a buff, like mount, the tooltip disappear, so im im looking at an item and something happens in the addons, i have to re-hover the item to see the tooltip again. Im using Tinytip for my tooltips, but this happens even without it activated. it took me 40min of manually activating and disabling addons one by one to find out these two addons from you.

Do you know what might cause this?


Fixed

Re: [RELEASE] - VCB - Vanilla Consolidated Buff-Frames 3.0

PostPosted: Mon Oct 19, 2015 1:02 am
by Fubbzy
Hey man, i really like this addon, pretty much exactly what i was looking for in order to track >1 minute buffs on myself (thats what im using it for atleast). Only problem I am having is that i cannot make the frames ascend, for example, bottom left to top right. The way i thought would work is the 'Invert Order' option, however that does not work. If you look at these screenshots...
Image
http://i.imgur.com/A0ctOCX.png
^before i invert
Image
http://i.imgur.com/9K1Y1dX.png
^ what it looks like after i invert (exactly how i want them to look, however on the next screenshot....)
Image
http://i.imgur.com/WWu7x8G.png
^locked the frames and tried it out, it does not appear where it was shown it would (as shown with number 1 paint skills). Instead of ascending like i want it to, it just takes your oldest active buff and pushes it to the next slot when a new buff comes in (the opposite of what normally happens.)

Not sure if that's how it is intended to work or not, but i would really appreciate an ascending option, or if one exists to point me to where it is if it exists and i'm just blind ^^

Re: [RELEASE] - VCB - Vanilla Consolidated Buff-Frames 3.0

PostPosted: Mon Oct 19, 2015 8:45 am
by Geigerkind
The invert order option does only invert the buffs you have. For example if you have 4 Buffs:
Inverted the order would be: 4,3,2,1
Not inverted: 1,2,3,4
That way you can have the newest aura always in the first slot. What you see in the unlocked mode is, if you had 32 auras on you.
But the behavior you describe is intended.

Re: [RELEASE] - VCB - Vanilla Consolidated Buff-Frames 3.0

PostPosted: Wed Oct 21, 2015 10:59 am
by Lardin
i have a problem with the timer text. i cant get it to work and it its the main reason i installed this addon.

Image

1) for some reason there will always be a black border around the timer text. if i change the font of the timer, the border will go away but then magically reappear.

2) when i change the timer font it will revert back to the default font after a short time

3) buff duration always shows an "m" after the time

those 3 lead to the problem you see in the picture: i can never see the full text, because it gets too big. i already increaced the buff bar itself in size but it doesn't help much.

my goal is to have the timer say "59:59" instead of 1h (blizz)

Re: [RELEASE] - VCB - Vanilla Consolidated Buff-Frames 3.0

PostPosted: Wed Oct 21, 2015 11:33 am
by modernist
just use this function for that:
Code: Select all
    function SecondsToTimeAbbrev(time)
        local hr, m, s, text
        if time <= 0 then
            text = ''
        elseif time >= 3600 then
            hr = floor(time/3600)
            m = floor(mod(time, 3600)/60 + 1)
            s = mod(time, 60)
            text = format('%d:%d:%d', hr, m, s)
        elseif time < 3600 and time > 60 then
            m = floor(mod(time, 3600)/60 + 1)
            s = mod(time, 60)
            text = format('%d:%d', m, s)
        elseif time <= 60 then
            m = floor(time/60)
            s = mod(time, 60)
            text = m == 0 and format('%d', s)
        end
        return text
     end


you don't need to install such a large addon in this instance

Re: [RELEASE] - VCB - Vanilla Consolidated Buff-Frames 3.0

PostPosted: Wed Oct 21, 2015 12:18 pm
by Lardin
how do i use a function?

Re: [RELEASE] - VCB - Vanilla Consolidated Buff-Frames 3.0

PostPosted: Wed Oct 21, 2015 12:33 pm
by Geigerkind
I will add some functions for your desire :>

You can get rid of the border here:
Image

This option is available in the consolidated auras and debuffs as well.
There you can also decrease its size.

Re: [RELEASE] - VCB - Vanilla Consolidated Buff-Frames 3.0

PostPosted: Wed Oct 21, 2015 12:45 pm
by modernist
Lardin wrote:how do i use a function?


just drop it into the lua file of an addon you already use, or go to this link:
http://addon.bool.no
and
- drop the code in the large box
- show advanced (toc) options
- change the line that reads
Code: Select all
## Interface: 60200

to
Code: Select all
## Interface: 11200

- download & use