ID:174532
 
I need to know does anyone know how or where I can learn how to liven up my chat? like some colors.. Ect.?
There are many things you can do to make your text livlier!

To have colored text

(anywhere that there is a } or a {, replace with a > or <)

<<"{font color = blue}HI!"
<<"{font color = green}HI!"

Or a different way.

<<"\green HI!"

You can use a variable to have your own color

var/color = rgb(45,123,87)

<<"{font color = [color]}HI!"

You can change the appearence of the text

<<"{b}HI!" //bold
<<"{i}HI!" //italics
<<"{u}HI!" //underlined

One of my favorite is adding your icon to the text

<<"\icon[src] HI!"

Hopefully that will help

<font color = red>Rifthaven
In response to Rifthaven
thanks!