03.03.2012, 17:11
pawn Код:
text = string/array.
Use: printf(text);// show the text in to console.
NumberToWrite = Interator/Nunber
Use: printf("This is number 1: %d", 1);
pawn Код:
public OnPlayerText(playerid, text[])
{
if(strfind(text, "50", true) != -1)
{
printf("I find the 50!!");
}
return 1;
}