Hey NGU, I don't really release anything I make because halfway through making it I get bored and stop.
But I decided to make something and release it.
It may not be useful to you or anybody but I decided to make it anyway.
In-game text color customization How to use/put in a menu
It's very simple.
Let's say you want to make the first color yellow, you would use this as your function
"bind button_a set FirstColor vstr Yellow"
Same thing for all of the other colors, you can find them in the code below.
Code
set Flash "vstr FirstColor;wait 5;vstr SecondColor;wait 5;vstr ThirdColor"
set FirstColor "vstr Black"
set SecondColor "vstr Green"
set ThirdColor "vstr Black"
set Black "g_teamcolor_allies 0 0 0 1;g_teamcolor_axis 0 0 0 1;g_teamcolor_free 0 0 0 1"
set Red "g_teamcolor_allies 1 0 0 1;g_teamcolor_axis 1 0 0 1;g_teamcolor_free 1 0 0 1"
set Green "g_teamcolor_allies 0 1 0 1;g_teamcolor_axis 0 1 0 1;g_teamcolor_free 0 1 0 1"
set Purple "g_teamcolor_allies 0.33333 0.1019 0.54509 1;g_teamcolor_axis 0.33333 0.1019 0.54509 1;g_teamcolor_free 0.33333 0.1019 0.54509 1"
set Blue "g_teamcolor_allies 0 0 1 1;g_teamcolor_axis 0 0 1 1;g_teamcolor_free 0 0 1 1"
set Cyan "g_teamcolor_allies 0 1 1 1;g_teamcolor_axis 0 1 1 1;g_teamcolor_free 0 1 1 1"
set LimeGreen "g_teamcolor_allies 0.498 1 0 1;g_teamcolor_axis 0.498 1 0 1;g_teamcolor_free 0.498 1 0 1"
set Yellow "g_teamcolor_allies 1 1 0 1;g_teamcolor_axis 1 1 0 1;g_teamcolor_free 1 1 0 1"
set Orange "g_teamcolor_allies 1 0.498 0 1;g_teamcolor_axis 1 0.498 0 1;g_teamcolor_free 1 0.498 0 1"
set Pink "g_teamcolor_allies 1 0.411 0.705 1;g_teamcolor_axis 1 0.411 0.705 1;g_teamcolor_free 1 0.411 0.705 1"
set White "g_teamcolor_allies 1 1 1 1;g_teamcolor_axis 1 1 1 1;g_teamcolor_free 1 1 1 1"
Random Text color How to use/put in a menu
Use this the same way you would use the Flashing text, where you would have "vstr Flash", use "vstr RandomColor"