14.01.2013, 16:17
Код:
public OnPlayerCommandPerformed(playerid, cmdtext[], success)
{
if(success)
{
printf("[COMMAND] The cmd %s was successfull!",cmdtext);
}
else
{
printf("[COMMAND] The cmd %s was wrong.",cmdtext);
format(str,144,"{FF0000} %s was a Wrong Command. Type {00FFFF}/help {FF0000}for available commands.",cmdtext);
SendClientMessage(playerid,BLUE,str);
}
return 1;
}

