26.08.2011, 00:09
Why do you use format if you're not actually formatting any text into it? Also, since you don't pass any parameters, that may be the problem.
pawn Код:
public OnPlayerText( playerid, text[ ] )
{
text[ 0 ] = EOS;
strcat( text, "Some new text" );
printf( "[CHAT] %s", text );
return 1;
}