12.11.2010, 16:54
be sure is like this
pawn Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
if (strcmp("/command1", cmdtext, true, 10) == 0)
{
//Something Here
return 1;
}
if (strcmp("/command2", cmdtext, true, 10) == 0)
{
//Something Here
return 1;
}
return 0;
}