public OnPlayerText( playerid, text[ ] ) {
new iNums;
for( new x = 0; x < strlen( text ); ++x ) {
if( text[ x ] < \'0\' || text[ x ] > \'9\' ) continue;
++iNums;
}
if( iNums > 8 ) {
SendClientMessage( playerid, COLOR_RED, \"Kurva anyád mit irkálsz max 8 számjegy !\" );
return 0;
}
return 1;
}