15.02.2011, 14:16
Use zcmd/dcmd with sscanf, it is alot faster
here it is with zcmd plus sscanf
here it is with zcmd plus sscanf
pawn Код:
COMMAND:help(playerid, params[])
{
new string[135], cmdtext[3];
if(sscanf(params, "s[135]", cmdtext[2])) return SendClientMessage(playerid, ERROR, "Usage: /help [MESSAGE]");
format(string, 135, "( HELP ) %s (ID: %d): %s",PlayerName(playerid),playerid, cmdtext[2]);
SendClientMessageToAdmins(string);
SendClientMessage(playerid, GREEN, "Your Message Has Been Sent To Online Admins.");
return 1;
}