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.
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.
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
0
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.)
0
0
0
selfish? im happy to share anything!
but i dont want to get into e-fights with phanx again =P
0
i think the size limit is 256 by 512 as well or did that change in 3.0?
0
0
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?
0
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
0
no compilations fails, i love DLing them to see how they made certain bits etc.
very elitist coders!
0
indeed i tried making simple square border .tgas quite unsuccessfully..
share please!
0
0
i updated BT4 and its white now (yay) but i cant use dominos (boo)
0
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!
0
i was using pitbull but i often switch between addons for UF these days, but maybe a quick OUF example?
0
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: