14.03.2011, 14:46
Try:
Dont know if it works, just typed this fast.
pawn Код:
public OnPlayerText(playerid, text[])
{
TESTAGAIN:
if(strlen(text) > 100)
{
new string[101];
format(string, 101, "%s", text);
SendPlayerMessageToAll(playerid, string);
strdel(text, 0,100);
goto TESTAGAIN;
}
SendPlayerMessageToAll(playerid, text);
return 0;
}
