29.03.2018, 06:55
Quote:
you can make it like this
PHP код:
008800 = Dark Green FF0000 = Red CBCBCB = Grey you can check color codes on w3school /asay 00FF00 [message] hope it work |
First, your code can be optimized by using isnull which check if a string is empty or no. If you want to add some color to your text, check that : https://sampwiki.blast.hk/wiki/Colors_List#Color_embedding
PHP код:
CMD:asay(playerid, params[])
{
new string[128];
if(isnull(params)) return SendClientMessage(playerid,-1, "Use: /asay [message]");
format(string, sizeof(string),"Admin %s: %s", Name(playerid), text);
SendClientMessageToAll(-1,string);
return 1;
}