Hello all! Can you help me with little problem?
I don't know how to print in chat color message from language file.
Example language file:
Code:
[en]
HELLO = ^x03Hello
Example script file:
Code:
new msg[100];
format(msg,99,"%L",LANG_PLAYER,"HELLO");
message_begin( MSG_ONE, svc_saytext, { 0, 0, 0 }, plr );
write_byte( plr );
write_string( msg );
message_end( );
I can't understand but prints "^x03Hello". I want that prints "Hello" in blue color.