DAZZLE'S UPGRADE PACK

If you haven't already done so, upgrade your game by downloading Dazzle's all-in-one upgrade pack. It comes with everything you need for today's servers. Does your blue bar freeze when joining servers? Do you lag in games? Do you get an annoying siren in Phobik's Servers? This is what you need. CLICK HERE TO DOWNLOAD.

GUI Text Edits

Modding questions, answers, help.....

Moderators: Warfare, Admin, Moderator

Post Reply
Triv
Veteran Member
Veteran Member
Posts: 159
Joined: Mon Jan 22, 2007 6:32 pm
Contact:

GUI Text Edits

Post by Triv »

Place at the end of your main.cs file to.

You need to remove the double slash // at the front of code to active the line. Nothing is read by default.

Oh, yeah you can of course change the fontType of other texts too. I just haven't written it in all.

The font type can by any font what is used by your computer system. To know what fonts you have and what is their correct name. Try using some writing/photo editing program where you can choose the text style. That is the correct name you switch in place of Isocpeur. The game will generate a new file for the text in it's cache folder when run smoothly. Here is as an example some fonts names I have on my computer: Rage Italic , Nasalization , Mael ... You may not have these fonts... so don't be surprised if they won't work. Look for yourself what you got!

//-----------------------------------------------------------------------------
// Some GUI Edits - Work on progress
//-----------------------------------------------------------------------------
// These results are for me, you might have different results. Test out yourself.
// Mainly, smaller numbers means smaller text and bigger numbers bigger text

// Also some values like 8, 10, 16 dosent seem to show up,
// but some values which are smaller than them shows up. Odd.

Code: Select all

//--------------------
// Controls style & size of names above brain. Default is 20. Isocpeur

// GUIDefaultProfile.fontType = "Isocpeur";
// GUIDefaultProfile.fontSize = 20;

Code: Select all

//--------------------
// Controls the size of text said by players in chat window.

// ttChatHudProfile.fontSize = 24;          

// Default is 24. 26 is the biggest one which 
// shows full part of letters like y,g,q,etc.
// Bigger letters than that seems to take
// a little of their bottom always away.

Code: Select all

//--------------------
// Controls the size of scoreboard.

// ttPlayerListProfile.fontSize = 18;

// 7 is the smallest one which shows up. Default is 18.
// Can be made really big...

Code: Select all

//--------------------
// Controls the size of elim./left/joined msgs.

// ttMessageHudProfile.fontSize = 24;

// Default is 24. Is good to keep this and 
// ttChatHudProfile as same sized or it will
// look little odd.

Code: Select all

//--------------------
// Controls the size of countdown clock.
// Default is 54.

// ttClockProfile.fontSize = 54;
Post Reply