11.08.2011, 12:34
I want to make a /l command that has a limit of 20 chat radius, how do I do this from this code;
Код:
if(!strcmp(cmdtext, "/l", true, 2))
{
if(!cmdtext[2])return SendClientMessage(playerid, 0xFF0000FF, "USAGE: /l [text]");
new str[128];
GetPlayerName(playerid, str, sizeof(str));
format(str, sizeof(str), "((%s: %s))", str, cmdtext[3]);
SendClientMessageToAll(COLOR_WHITE, str);
return 1;
}

