19.05.2007, 20:42
Quote:
Originally Posted by Pixels^
Then you would need if(strcmp(cmdtext, "bla", true) == 0) instead of if(strcmp(cmdtext, "/bla", true) == 0) wouldn't you?
|
pawn Код:
if(text[0] == '!')
{
text[0] = '/';
OnPlayerCommandText(playerid,text);
return 0;
}