11.07.2014, 21:03
He did copy from his own script that command that's why you had that error.
pawn Код:
CMD:a(playerid,params[]){
new string[128];
if(PlayerInfo[playerid][pAdminLevel] <= 1) return SendClientMessage(playerid,COLOR_GREY,"You're not authorized to use this command!");
if(sscanf(params, "us",string)) return SendClientMessage(playerid,COLOR_GREY,"SYNTAX: /a(dmin) [message]");
else
{
format(string,sizeof(string),"%s: %d",GetName(playerid), params);
SendToAdmins(COLOR_RED, string);
}
return 1;
}