Player Armor Color selection
Moderator: ickputzdirwech
Player Armor Color selection
Really, REALLY minor suggestion. Since the .11 models have different colors, can we get a way to select what color we want our suits to be? (I love blue.........)
Re: Player Armor Color selection
You can do that with the console.
Press the console key (look in the controls) and then write this:
This would change the color of player 1 to r = 1, g = 1. (Yellow)
You can use r, g, b and a. r is red, g is green, b is blue and a is alpha. You have to mix colors. r = 1 and g = 1 would mix full red and full green to yellow. A dark blue would be b = 1. If you want to have orange, use r = 1 and g = 0.5
Alpha changes the transparency. A lower value (like 0.5) means a lighter, less intense color.
Press the console key (look in the controls) and then write this:
Code: Select all
/c game.getplayer(1).color = {r = 1, g = 1}
You can use r, g, b and a. r is red, g is green, b is blue and a is alpha. You have to mix colors. r = 1 and g = 1 would mix full red and full green to yellow. A dark blue would be b = 1. If you want to have orange, use r = 1 and g = 0.5
Alpha changes the transparency. A lower value (like 0.5) means a lighter, less intense color.