ID:267784
 
I am seeing in a lot of games people with font that has like everyshade of blue. how do you do this?
<font color='color'>Text</font>

works with html color codes or an assigned color like 'red'
In response to Aridale
<font color=red> text</font>

Not that hard. But I need people to be able to choose their name color with like 5 different types of blue. Just play that Assaisins game and you'll see what I mean.
In response to Shiba Arai
make a list and let em choose from it then put that variable name in for color.
In response to Aridale
I don't know how.
In response to Shiba Arai
I assume you have some kinda character creation and save/load feature in your game so in your character creation have a var for the players text color somethin like MyColor then

MyColor = switch(input(usr,"Pick a color","Text Color")in list("Color1","Color2","Color3"))
if("Color1")
//Whatever color
if("Color2")
//Whatever color

And so on and so forth. Look up switch() and input() if you dont know about them.