Post: [1.14] In-game text color customization & random color functions
07-29-2013, 05:57 PM #1
(adsbygoogle = window.adsbygoogle || []).push({});
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"


Codes

set RandomColor "toggle colorz \"vstr Black\" \"vstr Red\" \"vstr Green\" \"vstr Purple\" \"vstr Blue\" \"vstr Yellow\" \"vstr Cyan\" \"vstr LimeGreen\" \"vstr Orange\" \"vstr Pink\" \"vstr White\";vstr colorz"
set colorz ""
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"



Credits:
Alex-George-HnM - Flashing text codes.
Rusteled Jimmies - His post with all of the colors


I don't have the best tutroial and I haven't tested this but everything should work.
If it doesn't work, tell me and I'll fix it.

If you need help
Skype: Breezy4G
(adsbygoogle = window.adsbygoogle || []).push({});

The following 2 users say thank you to MrBerrics for this useful post:

Script Kiddie, zUnboundPatcher

The following user groaned MrBerrics for this awful post:

KadenxC28
07-29-2013, 06:41 PM #2
Savage_847
Vault dweller
Originally posted by AsteriskHD View Post
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"


Codes

set RandomColor "toggle colorz \"vstr Black\" \"vstr Red\" \"vstr Green\" \"vstr Purple\" \"vstr Blue\" \"vstr Yellow\" \"vstr Cyan\" \"vstr LimeGreen\" \"vstr Orange\" \"vstr Pink\" \"vstr White\";vstr colorz"
set colorz ""
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"



Credits:
Alex-George-HnM - Flashing text codes.
Rusteled Jimmies - His post with all of the colors


I don't have the best tutroial and I haven't tested this but everything should work.
If it doesn't work, tell me and I'll fix it.

If you need help
Skype: Breezy4G


stare i made these for my v2, i made a function to change menu/title colors,flashing or random, but thats weird cause these are the same set names i put and same colors :confused: and i made it a week ago
07-29-2013, 07:52 PM #3
Originally posted by 847 View Post
stare i made these for my v2, i made a function to change menu/title colors,flashing or random, but thats weird cause these are the same set names i put and same colors :confused: and i made it a week ago


Well I made this myself, I had no clue you made something like it.
07-29-2013, 11:39 PM #4
Script Kiddie
At least I can fight
Originally posted by AsteriskHD View Post
Well I made this myself, I had no clue you made something like it.

So this changes the color of the menu correct ? Im just asking because custom colors always did mind fuck me a little lol
07-30-2013, 12:38 AM #5
Originally posted by xI2iley
So this changes the color of the menu correct ? Im just asking because custom colors always did mind fuck me a little lol


yes, use ^8 for the text color! Smile
07-30-2013, 01:23 AM #6
Script Kiddie
At least I can fight
Originally posted by AsteriskHD View Post
yes, use ^8 for the text color! Smile


Ok thanks Smile
07-31-2013, 03:27 AM #7
KadenxC28
Little One
Originally posted by 847 View Post
stare i made these for my v2, i made a function to change menu/title colors,flashing or random, but thats weird cause these are the same set names i put and same colors :confused: and i made it a week ago


Yeah you sent it to me almost 2 weeks ago XD
07-31-2013, 03:58 AM #8
Originally posted by KadenxC28 View Post
Yeah you sent it to me almost 2 weeks ago XD


That doesn't mean anything.
I never knew about this.
I made this in like 20 minutes....
07-31-2013, 12:58 PM #9
KadenxC28
Little One
Originally posted by AsteriskHD View Post
That doesn't mean anything.
I never knew about this.
I made this in like 20 minutes....


With exactly the same set names as him? :troll: but I guess there's no way of you getting his code because it was on Skype so maybe it's just a coincidence XD
07-31-2013, 03:53 PM #10
Originally posted by KadenxC28 View Post
With exactly the same set names as him? :troll: but I guess there's no way of you getting his code because it was on Skype so maybe it's just a coincidence XD


Exactly, and maybe because I used the names in this thread...
You must login or register to view this content.

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo