03.10.2011, 14:08
Well, if you want another color you can:SendClientMessageToAll(YOUR_COLOR, string);
Change YOUR_COLOR to the color you want.
If you want to show as: (RED)MyName: (BLACK)ID( 0 ) (GREEN)Text. Use HEX Colours
https://sampwiki.blast.hk/wiki/Hex_colours
Example:
It will do:
Change YOUR_COLOR to the color you want.
If you want to show as: (RED)MyName: (BLACK)ID( 0 ) (GREEN)Text. Use HEX Colours
https://sampwiki.blast.hk/wiki/Hex_colours
Example:
pawn Code:
format(string,sizeof(string),"{FF0000}%s {000000}(ID: %d): {00FF22}%s", name, playerid, text);
SendClientMessageToAll(-1, string);
Code:
MyName (ID: MyID): MyText

