Download
(1018Kb)
Download
Updated: 04-26-11 02:19 PM
Pictures
File Info
Updated:04-26-11 02:19 PM
Created:04-16-11 04:15 PM
Downloads:8,021
Favorites:35
MD5:

sFonts  Popular! (More than 5000 hits)

Version: 1.1
by: Dimpf [More]

sFonts is a fork of tekticles, which was in turn "derived from ClearFont2."

tekkub's implementation was sufficient for everything I wanted to do, and included LSM, but I didn't like his fonts. So, changed all the fonts, and updated it to include a few new ingame font strings that it did not include when I forked it (or it did not include at the time. It's been too long to tell now).

sFonts also adds fonts used to LibSharedMedia so other mods with LSM can use these fonts.

Previews of what the fonts look like ingame are in the images to the right.

1.1:
Removed a hack that fixed the title picker font in the character UI. I will update again later when I have time to make it work again.

1.0:

Initial version.
Optional Files (0)


Post A Reply Comment Options
Unread 09-13-11, 04:00 AM  
Dimpf
A Fallenroot Satyr
AddOn Author - Click to view AddOns

Forum posts: 25
File comments: 22
Uploads: 5
Originally posted by fibersyntax
[b]<snip>
Okay, glad you were able to get your issue taken care of
Report comment to moderator  
Reply With Quote
Unread 09-13-11, 03:22 AM  
fibersyntax
A Kobold Labourer

Forum posts: 0
File comments: 3
Uploads: 0
Originally posted by Dimpf
Are you referring to the quest tracker that appears on the right hand side of the screen, or text in the quest dialog window?

It's possible you just want to uncomment line 81 (remove the two '--' chars) and change the 13 to something else.

I *think* the frame you're asking about is the QuestInfoObjectivesFrame (you can type /framestack and mouseover the frame in question to see what frames are there, shown in a tooltip), which uses the QuestFontNormalSmall font, as seen in the .xml file at https://github.com/tekkub/wow-ui-sou.../QuestInfo.xml

(Sorry I wasn't able to answer this question earlier today, my work's proxy blocks wowinterface! I hope this helps.)
Thanks for the '/framestack' command, made me find out its the watchframe I was looking for. Although I did not succeed in finding the correct font to edit with your addon, I did find nibWatchFrameAdv which did exactly what I needed. You helped me out there
and don't worry about the late response, I'm from Europe so you answered my question overnight. And to be honest I didn't expect a response at all, making me happily surprised.
Report comment to moderator  
Reply With Quote
Unread 09-12-11, 09:55 PM  
Dimpf
A Fallenroot Satyr
AddOn Author - Click to view AddOns

Forum posts: 25
File comments: 22
Uploads: 5
Originally posted by fibersyntax
So I'm almost finished with my new interface look, last thing I want to change is the font size of the quest tracker. After some searching I found that this addon should be able to help me, but I can't seem to figure it out.

What line should I put in the lua to just change the font size of the quest tracker? (I want everything else just the way it is)
Your help would be really appreciated
Are you referring to the quest tracker that appears on the right hand side of the screen, or text in the quest dialog window?

It's possible you just want to uncomment line 81 (remove the two '--' chars) and change the 13 to something else.

I *think* the frame you're asking about is the QuestInfoObjectivesFrame (you can type /framestack and mouseover the frame in question to see what frames are there, shown in a tooltip), which uses the QuestFontNormalSmall font, as seen in the .xml file at https://github.com/tekkub/wow-ui-sou.../QuestInfo.xml

(Sorry I wasn't able to answer this question earlier today, my work's proxy blocks wowinterface! I hope this helps.)
Report comment to moderator  
Reply With Quote
Unread 09-12-11, 03:51 PM  
fibersyntax
A Kobold Labourer

Forum posts: 0
File comments: 3
Uploads: 0
So I'm almost finished with my new interface look, last thing I want to change is the font size of the quest tracker. After some searching I found that this addon should be able to help me, but I can't seem to figure it out.

What line should I put in the lua to just change the font size of the quest tracker? (I want everything else just the way it is)
Your help would be really appreciated
Report comment to moderator  
Reply With Quote
Unread 07-04-11, 07:56 AM  
[Ben]
A Deviate Faerie Dragon
 
[Ben]'s Avatar

Forum posts: 10
File comments: 11
Uploads: 0
Hmmm, too bad, it's such a lovely font ! It's so ... Role-play !
Another thing I noticed is that the EDO font doesn't contain special character like é,è,à, often used in Europe (Spanish, German and French to name a few).
I discovered a free version of the font on a fonts website which contains the accent and therefore does not bug anymore with other language than English.
Report comment to moderator  
Reply With Quote
Unread 07-02-11, 01:28 AM  
Dimpf
A Fallenroot Satyr
AddOn Author - Click to view AddOns

Forum posts: 25
File comments: 22
Uploads: 5
Originally posted by [Ben]
I want to modify the size of the zone font (bigga')

Code:
SetFont(SystemFont_OutlineThick_Huge2,		  ZONE, 24, "THICKOUTLINE") -- zone text (pvp text)
	SetFont(SystemFont_OutlineThick_Huge4,  	  ZONE, 48, "THICKOUTLINE") -- zone text -- 27
	SetFont(SystemFont_OutlineThick_WTF,    	  ZONE, 54, "THICKOUTLINE", nil, nil, nil, 0, 0, 0, 1, -1) -- zone text, used to be 31, but I'm using a smallish font
But it kept the "default" size. It worked when I modified the other font sizes (afaik). I also want to roll back the default font for the /s and /sh, what is the font reference ?
Yeah, I don't think the font size for the zone font has any actual effect. However, different fonts seem to have different sizes, so I suppose you might experiment with that.

For the chat edit box (if that's what you're referring to?) I believe the correct reference is SetFont(ChatFontNormal, EDITBOX, 12) -- Chatbox Font on line 43
Report comment to moderator  
Reply With Quote
Unread 06-30-11, 01:51 PM  
[Ben]
A Deviate Faerie Dragon
 
[Ben]'s Avatar

Forum posts: 10
File comments: 11
Uploads: 0
I want to modify the size of the zone font (bigga')

Code:
SetFont(SystemFont_OutlineThick_Huge2,		  ZONE, 24, "THICKOUTLINE") -- zone text (pvp text)
	SetFont(SystemFont_OutlineThick_Huge4,  	  ZONE, 48, "THICKOUTLINE") -- zone text -- 27
	SetFont(SystemFont_OutlineThick_WTF,    	  ZONE, 54, "THICKOUTLINE", nil, nil, nil, 0, 0, 0, 1, -1) -- zone text, used to be 31, but I'm using a smallish font
But it kept the "default" size. It worked when I modified the other font sizes (afaik). I also want to roll back the default font for the /s and /sh, what is the font reference ?
Report comment to moderator  
Reply With Quote
Unread 04-18-11, 05:49 PM  
Dimpf
A Fallenroot Satyr
AddOn Author - Click to view AddOns

Forum posts: 25
File comments: 22
Uploads: 5
Re: MSBT

Originally posted by Nallepuh
Hi, can i use this fonts with msbt aswell and change the fonts with msbt?

Thank you
Yes, this registers fonts used in this addon with LibSharedMedia, so msbt can use sFont fonts.
Report comment to moderator  
Reply With Quote
Unread 04-18-11, 03:19 PM  
Nallepuh
A Deviate Faerie Dragon

Forum posts: 19
File comments: 65
Uploads: 0
MSBT

Hi, can i use this fonts with msbt aswell and change the fonts with msbt?

Thank you
Report comment to moderator  
Reply With Quote
Unread 04-16-11, 06:22 PM  
Dimpf
A Fallenroot Satyr
AddOn Author - Click to view AddOns

Forum posts: 25
File comments: 22
Uploads: 5
Originally posted by Lily.Petal
Can't wait to test this later today. I am using Fontifier with the LUA changed entirely for fonts to change every one. So if this let's me be able to change it without all the hassle.
Configuration is done in the lua (with a preview pane for fonts in the interface menu), but the way it's set up is such that it's easy (if you're not too hesitant to change a line or two of lua) to change the various fonts to your own.

This can be done on lines 13-20 for the different fonts used. The primary font used is Ubuntu-B.ttf, which is on line 17:

Code:
local BOLD       = "Interface\\AddOns\\sFonts\\Ubuntu-B.ttf"
So, if you throw whatever font you want in the sFont folder, you can change the "TwCenMTBold.ttf" bit to whatever your font is named.

Hope you don't find that too complicated, but really, I hope you like it the way it is :P
Last edited by Dimpf : 04-16-11 at 09:53 PM.
Report comment to moderator  
Reply With Quote
Unread 04-16-11, 05:01 PM  
Lily.Petal
A Molten Giant
 
Lily.Petal's Avatar
AddOn Author - Click to view AddOns

Forum posts: 540
File comments: 105
Uploads: 3
Can't wait to test this later today. I am using Fontifier with the LUA changed entirely for fonts to change every one. So if this let's me be able to change it without all the hassle.
__________________

Aggro Color to KG Panels Borders - Nibelheim
Lua Based UI Hider - Nibelheim
Custom LUA PowerText - Stuf - Nibelheim, Seerah
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: