Posted by: AdrianeMapMaker - Saturday, January 21, 2017 12:02:25 AM
I'd want to do in my [b]Timer in bold type[/b] then the position of [b]Caption's[/b] is on the middle,What ini Should i Use [b]Copy[/b] and What Should i [b]Replace[/b]?
Posted by: acidbrain - Saturday, January 21, 2017 1:25:32 AM
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...
[code=plain]
InGameUI
NamedTimerCountdownPosition = X:0.90 Y:0.666
NamedTimerCountdownNormalBold = No
End
[/code]
Greetz
Posted by: AdrianeMapMaker - Saturday, January 21, 2017 4:00:48 AM
Thanks!!
by the way how to change the color of it?
Posted by: klingondragon - Saturday, January 21, 2017 5:28:27 AM
Same way. Extract and open gamedata.ini. Find the line you want, and copy to your map.ini.
Posted by: AdrianeMapMaker - Saturday, January 21, 2017 8:25:18 PM
[code=]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[/code]
(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"[b]Orange Color[/b]
Can anyone share their list of their manipulated caption like a [b]blue caption[/b],(the code up there is orange)thanks[joy] .
Posted by: acidbrain - Sunday, January 22, 2017 12:11:33 AM
Here is a blue one from a map i made a while ago, font is also changed...
[code=plain]
InGameUI
NamedTimerCountdownNormalFont = Algerian
NamedTimerCountdownNormalColor = R:51 G:153 B:255
End
[/code]
[img=https://s28.postimg.org/f8yk4vljx/stuff.png]stuff[/img]
Greetz
Posted by: acidbrain - Sunday, January 22, 2017 4:31:49 AM
[quote=adrianemapmaker;143118]i can't understand how can i manipulate my caption by using numbers "R:255 G:122 B:0"[/quote]
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.
[url=http://www.tomjewett.com/colors/rgb.html][color=blue]Here[/color][/url] and [url=http://www.rapidtables.com/web/color/RGB_Color.htm][color=blue]Here[/color][/url] is some more info on the subject...