12.07.2012, 04:39
pawn Код:
if(strcmp(cmd, "/help", true) == 0)
{
tmp = strtok(cmdtext, idx);
if(strlen(tmp) == 0) return SendClientMessage(playerid, ERROR, "Use: /help [MESSAGE]");
new string[144];// You don't need 250 cells, because max length displayable is 144
format(string, sizeof(string), "[ ! ] %s [ID:%d] asks : %s", name, playerid, tmp);/* < strlen returns the length of the string*/
SendClientMessageToAdmins(string);
return 1;
}