Username: Password:

Forum Index > Interface AddOns/Modifications > Post your Interface!

Post new topic
Goto page Previous  1, 2, 3, ... 28, 29, 30  Next
embizon > "I TRIED MY BEST" (206) > 12/02/06 19:50
Reply with quote


but u got ab buff.

thats cheat
To not play wow, should be a crime
embizon > "I TRIED MY BEST" (206) > 18/02/06 05:23
Reply with quote


lol. only that .. phew nub! http://home.no/v4x0r/WoWScrnShot_121105_194139.jpg
To not play wow, should be a crime
Fifty > LESS THAN 250 TO GO! (824) > 01/03/06 05:21
Reply with quote
Juno posted this last night, i was like WTF!?
http://img160.imageshack.us/img160/8595/nefarianinterface1ty.jpg

Juno: ''Don't you have some kind of resriction in PoW like, you must atleast have 20 pixels visible on the screen?''



Another cool one from the wow-eu, UI pics thread:
http://img475.imageshack.us/img475/1967/uisetup0wi.jpg
ShaelTal > Guest () > 01/03/06 16:55
Reply with quote
Fifty wrote:
Another cool one from the wow-eu, UI pics thread:
http://img475.imageshack.us/img475/1967/uisetup0wi.jpg


lol, check top right corner.
Fenris > LOOT FTW LIKES ME (573) > 04/03/06 01:26
Reply with quote
http://www.lootftw.com/upload/ui.jpg
Silinde > Peon (13) > 04/03/06 12:37
Reply with quote
fenris? afk? =)
crul > "I TRIED MY BEST" (212) > 04/03/06 12:44
Reply with quote
My UI atm

http://www.tyard.nl/dump/UI_20060304.jpg
Guest > () > 03/04/06 12:06
Reply with quote
mine before 1.10, anyone knows if there is a new DAB available?

http://img296.imageshack.us/img296/4412/wowscrnshot0323060052283do.jpg
blem > WANNABE TROLL (1020) > 03/04/06 14:30
Reply with quote
Anonymous wrote:
anyone knows if there is a new DAB available?


the beta version should work with 1.10 iirc
Magere > Peon (42) > 04/04/06 11:59
Reply with quote
thanks.. (guest was me btw)
-- Sophisticate
Carbeaux |BrP| > Guest () > 02/05/06 02:59
Reply with quote


hi there,

i m a thirdgenerationserver b00n from Kult der Verdammten (EU) just sneaking around ur page ;D

cause my guild n me opend aq 3 days ago ... and some vids brought me here Very Happy

what mod do u use 4 the chatframes?

hideing butns and so on is dfm ?

thx alot 4yr
crul > "I TRIED MY BEST" (212) > 05/05/06 21:07
Reply with quote
I indeed use DFM to move the chatbuttons

To make them show on mouseover I use the "OnEvent"-scripts in DAB

OnEvent: Variables Loaded:

for frame=1,7 do
getglobal("ChatFrame"..frame.."BottomButton"):SetAlpha(0);
getglobal("ChatFrame"..frame.."DownButton"):SetAlpha(0);
getglobal("ChatFrame"..frame.."UpButton"):SetAlpha(0);
getglobal("ChatFrame"..frame.."BottomButton"):SetScript("OnEnter", function() this:SetAlpha(1); end);
getglobal("ChatFrame"..frame.."BottomButton"):SetScript("OnLeave", function() this:SetAlpha(0); end);
getglobal("ChatFrame"..frame.."DownButton"):SetScript("OnEnter", function() this:SetAlpha(1); end);
getglobal("ChatFrame"..frame.."DownButton"):SetScript("OnLeave", function() this:SetAlpha(0); end);
getglobal("ChatFrame"..frame.."UpButton"):SetScript("OnEnter", function() this:SetAlpha(1); end);
getglobal("ChatFrame"..frame.."UpButton"):SetScript("OnLeave", function() this:SetAlpha(0); end);
end

ChatFrameMenuButton:SetAlpha(0);
ChatFrameMenuButton:SetScript("OnEnter", function() this:SetAlpha(1); end);
ChatFrameMenuButton:SetScript("OnLeave", function() this:SetAlpha(0); end);
kharmuh > Guest () > 07/05/06 19:33
Reply with quote
mar wrote:
Here is my new UI! Tweak twak.

Also the screen is taken from Caverns of Time, Liaroner and me was there yesterday... pwns!

http://www.kaase.no/div/wowscr.png
http://www.kaase.no/div/wowscr2.png


mar i like the way you did your ui, question is about your chat frames. I like the four box seperation it was clean in your video. i like how the menu buttons are hidden too, what mod is that and howd u set it up?
Laz0r > Peon (3) > 08/05/06 05:58
Reply with quote
crul wrote:
I indeed use DFM to move the chatbuttons

To make them show on mouseover I use the "OnEvent"-scripts in DAB

OnEvent: Variables Loaded:

for frame=1,7 do
getglobal("ChatFrame"..frame.."BottomButton"):SetAlpha(0);
getglobal("ChatFrame"..frame.."DownButton"):SetAlpha(0);
getglobal("ChatFrame"..frame.."UpButton"):SetAlpha(0);
getglobal("ChatFrame"..frame.."BottomButton"):SetScript("OnEnter", function() this:SetAlpha(1); end);
getglobal("ChatFrame"..frame.."BottomButton"):SetScript("OnLeave", function() this:SetAlpha(0); end);
getglobal("ChatFrame"..frame.."DownButton"):SetScript("OnEnter", function() this:SetAlpha(1); end);
getglobal("ChatFrame"..frame.."DownButton"):SetScript("OnLeave", function() this:SetAlpha(0); end);
getglobal("ChatFrame"..frame.."UpButton"):SetScript("OnEnter", function() this:SetAlpha(1); end);
getglobal("ChatFrame"..frame.."UpButton"):SetScript("OnLeave", function() this:SetAlpha(0); end);
end

ChatFrameMenuButton:SetAlpha(0);
ChatFrameMenuButton:SetScript("OnEnter", function() this:SetAlpha(1); end);
ChatFrameMenuButton:SetScript("OnLeave", function() this:SetAlpha(0); end);


Could you maybe describe the process step by step?
Thanks
crul > "I TRIED MY BEST" (212) > 08/05/06 09:05
Reply with quote
Each chatframe (you can have max 7) has it's own scroll buttons,

a button to scroll down, scroll up, and one to directly got to the "bottom"

ChatFrameMenuButton is the button with the balloon in it Razz

What that script does is loop from the first to the seventh chatframes it's button and set some settings

Each loops looks like this:
Code:

ChatFrame3BottomButton:SetAlpha(0)
ChatFrame3DownButton:SetAlpha(0)
ChatFrame3UpButton:SetAlpha(0)

ChatFrame3BottomButton:SetScript("OnEnter", function() this:SetAlpha(1); end)
ChatFrame3BottomButton:SetScript("OnLeave", function() this:SetAlpha(0); end)

ChatFrame3DownButton:SetScript("OnEnter", function() this:SetAlpha(1); end)
ChatFrame3DownButton:SetScript("OnLeave", function() this:SetAlpha(0); end)

ChatFrame3UpButton:SetScript("OnEnter", function() this:SetAlpha(1); end)
ChatFrame3UpButton:SetScript("OnLeave", function() this:SetAlpha(0); end)


The first 3 lines will set the alpha from that button to 0 (== transparent)

After that 2 different "on-event"-scripts are set for each of the buttons. The "OnEnter"-script causes the button to set it's alpha to 1 (== visisble) when you move your mouse over the button. And ofc the "OnLeave"-script causes the button to set it's alpha back to 0 when you "leave the button"

I use DiscordActionBars -> "OnEvent Scripts" -> Select "Variables Loaded" and added the script in there, to execute this script when the game startsup
Laz0r > Peon (3) > 09/05/06 05:27
Reply with quote
Thanks for the help Very Happy
Laz0r > Peon (3) > 14/05/06 19:36
Reply with quote
Crul, would you mind explaining how you grouped your minimap buttons and made them show on mouseover?

Thanks.
Akron > TROLL (1560) > 13/06/06 13:40
Reply with quote
http://img150.imageshack.us/my.php?image=ui5zq.jpg

remade for the new pc Razz nothing impressive
Pero wrote:
fuckin nub! quit the job, not the guild!!!
Krissam > LOOT FTW LIKES ME (604) > 21/06/06 21:18
Reply with quote
http://img489.imageshack.us/my.php?image=krissamaui6ch.jpg

i'm missing an addon for showing castbar for aimed shot and timers on dots/traps, anyone got some suggestions?
Pinæs > Peon (3) > 25/06/06 02:17
Reply with quote
mar wrote:
Mine:

http://www.kaase.no/div/ui.png

(Made a link instead of img due to poor 50's connection. hahahah)
Still working on it


Mar, i hate you:P you got better looking screen than me:(
I want you in my next Strat Baron raid:P But unforutnately i cant play now:( VIRUS FTW^^

Pinæs now known as Pinaes;)
Do you really wanna touch me bitch?

Page 2 of 30
Goto page Previous  1, 2, 3, ... 28, 29, 30  Next
Post new topic

Jump to: