Myxoske Posted March 19, 2009 Posted March 19, 2009 Hi all, I want to know how i can change size of font in Lineage 2. I've seen in russian client font is smaller. But i need to change font size in orginal English Client. Pls help Quote
Myxoske Posted March 20, 2009 Author Posted March 20, 2009 function SetupFonts() { if(GUIScale == 2) { Fonts[F_Normal] = Font(DynamicLoadObject("UWindowFonts.Tahoma20", class'Font')); Fonts[F_Bold] = Font(DynamicLoadObject("UWindowFonts.TahomaB20", class'Font')); Fonts[F_Large] = Font(DynamicLoadObject("UWindowFonts.Tahoma20", class'Font')); Fonts[F_LargeBold] = Font(DynamicLoadObject("UWindowFonts.TahomaB30", class'Font')); } else { Fonts[F_Normal] = Font(DynamicLoadObject("UWindowFonts.Tahoma10", class'Font')); Fonts[F_Bold] = Font(DynamicLoadObject("UWindowFonts.TahomaB10", class'Font')); Fonts[F_Large] = Font(DynamicLoadObject("UWindowFonts.Tahoma20", class'Font')); Fonts[F_LargeBold] = Font(DynamicLoadObject("UWindowFonts.TahomaB20", class'Font')); } } I found this in uwindow.u but when i try to change and start the game i've got an error :( Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.