10.05.2013, 14:32
Did you add the return 0 before the } in the strcmp condition?
pawn Код:
public OnPlayerText(playerid, text[])
{
if (!strcmp(text, "!hello", true)) {
SendClientMessage(playerid, -1, "Hello");
return 0; //This one.
}
return 1;
}