13.04.2010, 20:24
Quote:
|
Originally Posted by Shady91
so would that block out if someone typed, My gangname#
? |
Код:
public OnPlayerText(playerid, text[])
{
for(new s = 0; s < 128; s++)
{
if (text == '#')
{
SendClientMessage(playerid,COLOR_RED,"Invalid Symbol");
return 0;
}
}
return 1;
}

