05.09.2010, 14:25
Depends on what command system you use..
Heres an example of it with Strcmp:
Heres an example of it with Strcmp:
pawn Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
if(!strcmp(cmdtext, "/stats", true, 6)) // 6 is the length of /stats
{
return PlayerStats(playerid);
}
return 0;
}