• 0

    posted a message on Bartender 4 Glitch
    blizzard keybindings menu.

    press escape, enter keybindings.. go to toggle action page list or what ever it is called and unbind them all.

    or you can bind shift 1-9 to other stuff like moves (which is useful.)
    Posted in: AddOn HELP!
  • 0

    posted a message on UI Screenshots - Show us what you use!
    i think you can take minimalisim too far sometimes.. just not practical
    Posted in: General Chat
  • 0

    posted a message on Bartender 4 Glitch
    unbind shift 1-9 from action bar switcing in keybindings menu.
    Posted in: AddOn HELP!
  • 0

    posted a message on Addons in compilations
    Quote from StormFX
    They are free. To use. For yourself.



    Very selfish/arrogant/greedy/disrespectful user.


    selfish? im happy to share anything!

    but i dont want to get into e-fights with phanx again =P
    Posted in: General Chat
  • 0

    posted a message on Guide: WoW Compatible Images
    should list paint.net up there but idd very nice

    i think the size limit is 256 by 512 as well or did that change in 3.0?
    Posted in: Tips, FAQs, and Guides
  • 0

    posted a message on Forum for Guides
    XN view is one the nicest programs for addonholics around i think
    Posted in: General Chat
  • 0

    posted a message on UI Screenshots - Show us what you use!
    Quote from Phanx
    http://forums.wowace.com/showthread.php?t=1799#post235809



    Fix your chatframe and unitframe font. It doesn't match everything else in your UI. :(


    the UF and chat fonts all both default wow friz. but idd its not con sistent with my statblocks font of avant garde or SCT of the same but i like it that way.

    just meh i do that when im fed up with pitbull :D

    but obble i never really wanted one that i had to code into the addons, i wanted a border file that would work for it but ive learned that is impossible due to the pixle size restrictions

    but i could edit AZCB to use setpoint .6 colours etc? dont like co ords as-well cos im ever changing my bars.

    also ant1pathy, which font is that?
    Posted in: General Chat
  • 0

    posted a message on UI Screenshots - Show us what you use!
    Quote from ObbleTemp
    It seems i have to convert it's format, so just download + rip it from oUF_squared.


    they are space specific! cant resize them etc. or apply them as a border from sharedmedia kind of thing?

    i have an example tga i made but i cant upload it here sigh but ill get pic of it in action:

    http://i39.tinypic.com/14wamfm.jpg

    as you can see it works out ok, but i had to make it rather monotone unlike the simple square border itself.

    ill upload the tga to filefront if any1 wants it though but meh it was hard to make it 4 pixels wide for blizzard =[ did my best with paint.net

    and meh on topic:

    http://i43.tinypic.com/259wmqo.jpg
    Posted in: General Chat
  • 0

    posted a message on Addons in compilations
    free ware should be free ware!

    no compilations fails, i love DLing them to see how they made certain bits etc.

    very elitist coders!
    Posted in: General Chat
  • 0

    posted a message on UI Screenshots - Show us what you use!
    Quote from Phanx
    Mind attaching it? I'm lazy and don't want to open Photoshop. :p


    indeed i tried making simple square border .tgas quite unsuccessfully..

    share please!
    Posted in: General Chat
  • 0

    posted a message on Binding text issue
    ah, thats strange, the addon selects this i assume? also can you tell the font from it? i dont think its calibri bold somehow
    Posted in: AddOn HELP!
  • 0

    posted a message on Binding text issue
    no the first is like pure white, and the 2nd is very grey

    i updated BT4 and its white now (yay) but i cant use dominos (boo)
    Posted in: AddOn HELP!
  • 0

    posted a message on Binding text issue


    i have an issue since 3.0 really, when i was using bartender 3 and other mods my font was always very white (As seen in the pic).

    now it is very grey:



    i know this isnt a big deal but meh, i hate it!

    im using BT4 and dominos lately and might see if macaroon does the same thing.

    also i use clearfont alot of the time to make the font on buttons look much nicer but when i combine it with custom fonts in the wow folder it dusnt work too well.

    anyway help would be nice!
    Posted in: AddOn HELP!
  • 0

    posted a message on omni cc - own buffs only
    lame, i thought it would be more maluable then that.

    i was using pitbull but i often switch between addons for UF these days, but maybe a quick OUF example?
    Posted in: Lua Code Discussion
  • 0

    posted a message on omni cc - own buffs only
    im trying to make a way for omni cc to only time my debuffs (and buffs?) like it did pre 3.0, but so far ive only ever ripped apart neals nbuff and pitbull odds and ends so i need help.

    i thought one of you might have done this before, using an If function debuff = self or something similar? thought it would go in this code:

    --[[
    Timer Code
    --]]

    function OmniCC:StartTimer(cooldown, start, duration)
    local timer = timers[cooldown] or self:CreateTimer(cooldown)
    if timer then
    if not showers[cooldown] then
    self:CreateShower(cooldown)
    end

    timer.start = start
    timer.duration = duration
    timer.shouldPulse = duration > 30
    timer.nextUpdate = 0
    timer:Show()
    end
    end

    --shower: a frame used to properly show and hide timer text without forcing the timer to be parented to the cooldown frame (needed for hiding the cooldown frame)
    do
    local function Shower_OnShow(self)
    local timer = timers[self:GetParent()]
    if timer.wasShown then
    timer:Show()
    end
    end

    local function Shower_OnHide(self)
    local timer = timers[self:GetParent()]
    if timer:IsShown() then
    timer.wasShown = true
    timer:Hide()
    end
    end
    Posted in: Lua Code Discussion
  • To post a comment, please or register a new account.