Download
(188Kb)
Download
Updated: 03-07-13 11:40 PM
Addon for:
Quse UI.
Pictures
File Info
Updated:03-07-13 11:40 PM
Created:02-14-12 01:22 AM
Downloads:7,898
Favorites:39
MD5:
Categories:Graphic UI Mods, Plug-Ins & Patches

Quse Boss Styles  Popular! (More than 5000 hits)

Version: v1.52
by: Qupe [More]

These are Boss-Mod stylings for

(although will work for anything, really)

This file includes DBM and BigWigs skinning that match Quse UI - anything with a pixel border!
* Both styles are standalone, the necessary media files are included in the download *

-----------

Skins are based on Wildbreath and Haleth's DBM style and !ninwigs by Nin. Credits belong to the appropriate authors and my thanks go to them!

HOW TO:
- Drag and drop your desired boss mod skin into your addon folder.
- Bananas!

NOTE:
- Fonts are hardcoded in their lua files to the pixel font that matches QuseUI. If you wish to change them, search for "rondaseven" and change the font path to whatever you prefer.
- DBM dummy bars in the options window will look funky, and the style won't stick properly (in test mode only) if you press "Drag Me" or start test bars more than once while they're running. This doesn't affect the style, just a visual bug while test mode/drag bars are up.

-----------

Any help is appreciated - and not at all required.

I do this for fun but if you enjoy my interface and would like to show your appreciation, click below:

Click here to lend your support!

v1.52
- TOC update.

v1.51
- Fixed a few other things - Thanks again, Funkydude.

v1.5
- Fixed font/texture paths - Thanks FunkyDude!

v1.41
- Updated to newest BigWigs changes.
Funkydude fixed all BigWigs changes in addition to streamlining - Thanks so much sir!

v1.4
- TOC update for 5.0.4

v1.3
- Changed background color and opacity of bars.
- Tweaked border, bar and background offsets - BigWigs bars should look like pixel borders now.

v1.23
- Fixed DBM style not always... being styled - Thanks p3lim!

v1.22
- Included a Media folder and changed file paths in styles so it no longer requires QuseUI to be installed.

v1.21
- BigWigs - Fixed style not registering under the name QuseUI.

v1.2
- BigWigs is now a style, not overwriting files when updating anymore.
- DBM style changed (it works now!), code based on Wildbreath/Haleth's style.

v1.1
- BigWigs - Fixed border issues (most likely).
- BigWigs - Fixed inability to change bar font.

v1.0
- Release!
Post A Reply Comment Options
Unread 02-15-12, 02:54 AM  
Zenjaa
A Deviate Faerie Dragon

Forum posts: 10
File comments: 53
Uploads: 0
yay. thanks for the fast reply.
i check on it right when the servers go live.
would be interested in the standalone solution too, if you dont mind nin


Originally Posted by Qupe
The border texture probably won't work if you don't have the sharedmedia file from QuseUI - I'm not sure if that's what your problem is but that's what it looks like? I'm not totally sure what could be causing that if the missing texture isn't the problem.

The text is set in the lua file, open it up and find this:
Code:
local f = media:Fetch("font", db.font)
	bar.candyBarLabel:SetFont("Interface\\AddOns\\SharedMedia\\fonts\\iflash705.ttf", 6, "OUTLINEMONOCHROME")
	bar.candyBarLabel:SetShadowOffset(0,0)
	bar.candyBarDuration:SetFont("Interface\\AddOns\\SharedMedia\\fonts\\iflash705.ttf", 6, "OUTLINEMONOCHROME")
	bar.candyBarDuration:SetShadowOffset(0,0)
Replace it with this:
Code:
local f = media:Fetch("font", db.font)
	bar.candyBarLabel:SetFont(f, 6, "OUTLINEMONOCHROME")
	bar.candyBarLabel:SetShadowOffset(0,0)
	bar.candyBarDuration:SetFont(f, 6, "OUTLINEMONOCHROME")
	bar.candyBarDuration:SetShadowOffset(0,0)
If you want to use whatever pixel font you have in your interface make sure you set "6" to whatever you want (note: 6 size is the correct setting for any pixel font with a native size of 8).

This was my mistake, will be fixed in the next update.

NiN:
I thought, this was basically the only way to include your own style (overwriting the bar plugin lua)? Found Game99's bigwig style on wowinterface and I think he did the same thing - just now his is included in the BigWigs download by default now - like the Tuk style.

EDIT: Acutally, shouldn't call any border file, I'm not sure why they look funny.
EDIT #2: Ok, think I found it, I'll toss a new update tonight with the fixed font/border issue!
Report comment to moderator  
Reply With Quote
Unread 02-14-12, 11:00 PM  
Qupe
A Warpwood Thunder Caller
 
Qupe's Avatar
AddOn Author - Click to view AddOns

Forum posts: 92
File comments: 523
Uploads: 3
Originally Posted by nin
I load "my" style in bigwigs as its own addon, so i dont have too think about loosing the "theme" when updating or adding / adjusting the plugin codes that are included with bigwigs.

I can send you the code whenever i get home if you want.
That would be amazing, guess I'm not surprised that it could be done the same way DBM styles can be done.
Report comment to moderator  
Reply With Quote
Unread 02-14-12, 10:04 PM  
nin
A Cobalt Mageweaver
AddOn Author - Click to view AddOns

Forum posts: 213
File comments: 83
Uploads: 1
I load "my" style in bigwigs as its own addon, so i dont have too think about loosing the "theme" when updating or adding / adjusting the plugin codes that are included with bigwigs.

I can send you the code whenever i get home if you want.
Report comment to moderator  
Reply With Quote
Unread 02-14-12, 08:20 PM  
Qupe
A Warpwood Thunder Caller
 
Qupe's Avatar
AddOn Author - Click to view AddOns

Forum posts: 92
File comments: 523
Uploads: 3
The border texture probably won't work if you don't have the sharedmedia file from QuseUI - I'm not sure if that's what your problem is but that's what it looks like? I'm not totally sure what could be causing that if the missing texture isn't the problem.

The text is set in the lua file, open it up and find this:
Code:
local f = media:Fetch("font", db.font)
	bar.candyBarLabel:SetFont("Interface\\AddOns\\SharedMedia\\fonts\\iflash705.ttf", 6, "OUTLINEMONOCHROME")
	bar.candyBarLabel:SetShadowOffset(0,0)
	bar.candyBarDuration:SetFont("Interface\\AddOns\\SharedMedia\\fonts\\iflash705.ttf", 6, "OUTLINEMONOCHROME")
	bar.candyBarDuration:SetShadowOffset(0,0)
Replace it with this:
Code:
local f = media:Fetch("font", db.font)
	bar.candyBarLabel:SetFont(f, 6, "OUTLINEMONOCHROME")
	bar.candyBarLabel:SetShadowOffset(0,0)
	bar.candyBarDuration:SetFont(f, 6, "OUTLINEMONOCHROME")
	bar.candyBarDuration:SetShadowOffset(0,0)
If you want to use whatever pixel font you have in your interface make sure you set "6" to whatever you want (note: 6 size is the correct setting for any pixel font with a native size of 8).

This was my mistake, will be fixed in the next update.

NiN:
I thought, this was basically the only way to include your own style (overwriting the bar plugin lua)? Found Game99's bigwig style on wowinterface and I think he did the same thing - just now his is included in the BigWigs download by default now - like the Tuk style.

EDIT: Acutally, shouldn't call any border file, I'm not sure why they look funny.
EDIT #2: Ok, think I found it, I'll toss a new update tonight with the fixed font/border issue!
Last edited by Qupe : 02-14-12 at 08:33 PM.
Report comment to moderator  
Reply With Quote
Unread 02-14-12, 02:09 PM  
nin
A Cobalt Mageweaver
AddOn Author - Click to view AddOns

Forum posts: 213
File comments: 83
Uploads: 1
just a little heads up, you can make your own layout in bigwigs that people choose, that way you can update and overwrite as much as you like.

Keep up the goodies!
Report comment to moderator  
Reply With Quote
Unread 02-14-12, 08:32 AM  
Zenjaa
A Deviate Faerie Dragon

Forum posts: 10
File comments: 53
Uploads: 0
border padding

first of all.... thank you for putting this out.

got a few problems though...
as seen on the picture the padding of the bar borders comes out kind of weird.
do you have any idea what the problem could be?

another thing i reckognized is the fact that i can't change the font ingame.
i can change bar texture, sizing ect. but not the font. is that done on purpose? and if so, where would i need to change the font if i ever feel like it.

thanks

Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: