12.03.2011, 21:28
Do you mean something like this?
pawn Код:
public OnPlayerText(playerid, text[])
{
if(strfind(text,"Your text here", true) != -1)
{
//Do your stuff here
return 0;
}
return 1;
}