Results 1 to 3 of 3

Thread: Chat Font Size

  1. #1
    Private
    Join Date
    Jun 2013
    Posts
    26
    Thanks
    20
    Thanked 3 Times in 1 Post

    Chat Font Size

    How to change the Chat font size?

  2. #2
    Brigadier General
    Join Date
    Oct 2012
    Posts
    994
    Thanks
    20
    Thanked 588 Times in 388 Posts
    Quote Originally Posted by NemanjA View Post
    How to change the Chat font size?
    You can only make it smaller - range is between 0 and 8. Try to go any higher, and it will simply be ignored.

    If you want to do it just for yourself, edit your config_mp.cfg file (in the "players" folder):

    PHP Code:
    seta cg_chatHeight "8" //<---- change this number 
    If you want to do it for everyone, in your mod, either at the onPlayerConnect() method, or onSpawnedPlayer() method:

    PHP Code:
    self setClientCvar"cg_chatHeight""8" ); //<--- change the number 
    Last edited by Tally; 27th July 2013 at 16:59.

  3. The Following User Says Thank You to Tally For This Useful Post:

    kung foo man (27th July 2013)

  4. #3
    Private
    Join Date
    Jun 2013
    Posts
    26
    Thanks
    20
    Thanked 3 Times in 1 Post
    Ye, this is the Chat Height.. But it don't controls the Font Size, only the number of rows..
    Is it possible to change the Font Size on Chat?

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •