I have this function:
PHP Code:
public send_message(id,const message[])
{
/* Format Message */
da_message[0]=0x01
format(da_message[1],251,message)
// Make sure the message is not longer than 192 character to prevent crashes
da_message[192] = '^0';
/* Send Message */
message_begin(MSG_ONE,MsgSayText,_,1);
write_byte(id)
write_string(da_message)
message_end()
}
and I want to add colors to this; but how?
__________________