Results: 141Comments by: Paolo242
File: FreeUI12-22-11
Well I feel silly. Maybe I should h...
Posted By: Paolo242
Well I feel silly. Maybe I should have searched first... :o
File: FreeUI12-22-11
Hal, I saw in another UI that i...
Posted By: Paolo242
Hal, I saw in another UI that it was calculating the iLVL of my target and presenting it in the tooltip. Kind of a cool but potentially useless feature. Is this easy to implement?
File: FreeUI12-18-11
How do I show macro text and keybin...
Posted By: Paolo242
How do I show macro text and keybinds on action bars? And show the micro menu? I can't seem to find the option to make either show up. The macros and keybinds are in the options menu if I'm remembering right. The micro menu is listed under "hide" in action bars.lua change hide to show.
File: DerpyUI (alpha)12-15-11
I'm loving the paperframe backgroun...
Posted By: Paolo242
I'm loving the paperframe background. If you have time, can you release it as a standalone? Awesome work!
File: FreeUI12-15-11
auto repair function doesn't work,...
Posted By: Paolo242
auto repair function doesn't work, not sure why check the options.lua and make sure it's enabled.
File: FreeUI12-12-11
You can add more on the panel. But...
Posted By: Paolo242
You can add more on the panel. But you just have to hard code each data set in. For example. -- Count Free Bags Free Slots function st:bagsSlotsFree() local free = 0 for i = 0, NUM_BAG_SLOTS do free = free + GetContainerNumFreeSlots(i) end return free end
File: FreeUI12-12-11
Naw, We have to make him work for o...
Posted By: Paolo242
Naw, We have to make him work for our "votes" ;)
File: FreeUI12-12-11
Thanks buddy. :)
Posted By: Paolo242
Thanks buddy. :)
File: FreeUI12-12-11
Hal, For the most recent changes...
Posted By: Paolo242
Hal, For the most recent changes do you recommend a full re-install? Which files were modified?
File: FreeUI12-09-11
Good deal. I had no idea it was dep...
Posted By: Paolo242
Good deal. I had no idea it was dependent upon the platform you're on.
File: FreeUI12-09-11
During the Deathwing fight on LFR m...
Posted By: Paolo242
During the Deathwing fight on LFR my extra action button was there but as the fight progressed it disappeared. That's not normal right?
File: FreeUI12-08-11
Hal, How do I set it so if ther...
Posted By: Paolo242
Hal, How do I set it so if there is nothing in an action bar it doesnt show? For example, when I'm healing I use two action bars, when I'm ret I use 3. Instead of having to toggle one each time, can I have it so it's there but invisible when empty?
File: FreeUI12-08-11
I noticed that when I broke the pal...
Posted By: Paolo242
I noticed that when I broke the paladin bar... I updated my post. It seems to work now. Edit: I'm a noob. But it works now. That's cause for celebration!
File: FreeUI12-08-11
http://img205.imageshack.us/img205/...
Posted By: Paolo242
http://img205.imageshack.us/img205/7018/wowscrnshot120811082530.jpg OK, well now that amateur hour is over. if C.general.shapeshift == true or (select(2, UnitClass("player")) == "SHAMAN" and C.classmod.shaman == true) then local numshift = NUM_SHAPESHIFT_SLOTS local shiftbar = CreateFrame("Frame", "FreeUI_StanceBar", UIPa...
File: FreeUI12-07-11
I can't seem to figure it out. Here...
Posted By: Paolo242
I can't seem to figure it out. Here's what I have so far... if C.general.shapeshift == true then local numshift = NUM_SHAPESHIFT_SLOTS local shiftbar = CreateFrame("Frame", "FreeUI_StanceBar", UIParent, "SecureHandlerStateTemplate") shiftbar:SetWidth(NUM_SHAPESHIFT_SLOTS * 27 - 1) shiftbar:SetHeight(26) shiftbar:SetPoi...
File: FreeUI12-07-11
You already posted it :p if sele...
Posted By: Paolo242
You already posted it :p if select(2, UnitClass("player")) == "SHAMAN" then ... end Well... :o
File: FreeUI12-07-11
Hal, For this code.. I'm runnin...
Posted By: Paolo242
Hal, For this code.. I'm running into issues with the totem bar. So for my Paladin I have moved the minimap to the top right and have anchored the Aura bar to the minimap. For the shaman, I want it to be down below. How would I add an exception if it's a totem bar? if C.general.shapeshift == true or (select(2, UnitClass("pl...
File: FreeUI12-07-11
Hal, I'm using your ui with nin'...
Posted By: Paolo242
Hal, I'm using your ui with nin's ouf layout. I modified your buff.lua script to show the debuffs, but they aren't highlighted and I would like them to be highlighted. but i have no idea how to do such a thing :( thats why im looking through other code that does the highlighting ... I also use Ouf_Nin and have found that it...
File: FreeUI12-06-11
@ Sophonax; Have you ran the cha...
Posted By: Paolo242
@ Sophonax; Have you ran the chat section of the installer? I always clean up my WTF folder and run the installer whenever updating FreeUI. This doesn't change anything when it comes to placement. I will also try out the code above to see if this will solve my issue with reforging. Edit: It would seem like the code below fi...
File: FreeUI12-05-11
Not too bad. Just work work work an...
Posted By: Paolo242
Not too bad. Just work work work and trying not to buy myself too many presents so that I'm broke when holiday shopping comes along.
File: FreeUI12-05-11
No rush, How's it going man?
Posted By: Paolo242
No rush, How's it going man?
File: FreeUI12-05-11
Hal, The good news if the extra...
Posted By: Paolo242
Hal, The good news if the extra action button works. The bad news is it seems to stay with me even then it shouldn't http://img26.imageshack.us/img26/5038/wowscrnshot120511095241.jpg
File: FreeUI12-02-11
PetActionBarFrame:SetParent(petbar)...
Posted By: Paolo242
PetActionBarFrame:SetParent(petbar) PetActionBarFrame:SetHeight(0.001) for i = 1, numpet do local button = _G local cd = _G button:ClearAllPoints() if i == 1 then button:SetPoint("BOTTOMLEFT", petbar, 0,0) else local previous = _G button:SetPoint("LEFT", previous, "RIGHT", 1, 0) end cd:SetAllPoints(bu...
File: ColdUI12-02-11
Is there any way to get the + - f...
Posted By: Paolo242
Is there any way to get the + - for action bars back ? Or to move the action bars ? EDIT: Nevermind, i'm an idiot There's no such thing as a stupid question. :)
File: FreeUI12-02-11
Is it possible to change the width...
Posted By: Paolo242
Is it possible to change the width on the unitframes, if its possible can you link me the 'Code' It's all in Unitframes.lua But be careful, there are a lot of areas where width is defined.