AdrianeMapMaker
9 years ago
I'd want to do in my Timer in bold type then the position of Caption's is on the middle,What ini Should i Use Copy and What Should i Replace?
A part of ZH worldbuilders map making community
https://discord.gg/tJ6zyGb 

UserPostedImage




Sponsor
acidbrain
9 years ago
You can change the caption settings in InGameUI.ini.
Here are the original settings, play around with them and see what happens, there are a lot more settings in InGameUI.ini, you can change the militairy caption, superweapon counters and the decals also...

InGameUI
  NamedTimerCountdownPosition   = X:0.90 Y:0.666
  NamedTimerCountdownNormalBold = No
End

Greetz
Panem et kirkinses
AdrianeMapMaker
9 years ago
Thanks!!
by the way how to change the color of it?
A part of ZH worldbuilders map making community
https://discord.gg/tJ6zyGb 

UserPostedImage




klingondragon
9 years ago
Same way. Extract and open gamedata.ini. Find the line you want, and copy to your map.ini.
AdrianeMapMaker
9 years ago
InGameUI
    NamedTimerCountdownPosition         = X:0.01 Y:0.48 
    NamedTimerCountdownNormalColor      = R:255 G:122 B:0
    NamedTimerCountdownNormalPointSize  = 11
    NamedTimerCountdownNormalBold       = Yes
    MilitaryCaptionRandomizeTyping = Yes
    MilitaryCaptionColor           = R:0 G:255 B:0 A:255
End

(found one of the map in cnclabs) the guy just use Number's not by any extracting something and that's my real problem ... i can't understand how can i manipulate my caption by using numbers "R:255 G:122 B:0"Orange Color

Can anyone share their list of their manipulated caption like a blue caption,(the code up there is orange)thanks😂 .
A part of ZH worldbuilders map making community
https://discord.gg/tJ6zyGb 

UserPostedImage




acidbrain
9 years ago
Here is a blue one from a map i made a while ago, font is also changed...

InGameUI
  NamedTimerCountdownNormalFont  = Algerian
  NamedTimerCountdownNormalColor = R:51 G:153 B:255
End
UserPostedImage

Greetz
Panem et kirkinses
acidbrain
9 years ago

i can't understand how can i manipulate my caption by using numbers "R:255 G:122 B:0"

Originally Posted by: adrianemapmaker 


R=Red, G=Green and B=Blue
See it as a painters color palette, with the numbers you determine how many of the color you use.
(0, 0, 0) r, g, and b on 0 gives black, #000000 in hexadecimal
(255, 255, 255) all on 255 gives white, #FFFFFF in hexadecimal
(255, 0, 0) g and b on 0 and r on 255 gives red, #FF0000 in hexadecimal
(0, 255, 0) r and b on 0 and g on 255 gives green, #00FF00 in hexadecimal
(0, 0, 255) r and g on 0 and b on 255 gives blue, #0000FF in hexadecimal

255 is the maximum btw, you cant go any higher.
Here  and Here  is some more info on the subject...
Panem et kirkinses