Nem teszteltem.
public OnPlayerText( playerid, text[ ] ) {
static numChars;
for( new x = 0; x < strlen( text ); ++x ) {
if( text[ x ] >= \'0\' || text[ x ] <= \'9\' ) {
++numChars;
}
}
if( numChars > 10 ) {
SetPVarInt( playerid, \"NumWarning\", GetPVarInt( playerid, \"NumWarning\" ) +1 );
if( GetPVarInt( playerid, \"NumWarning\" ) == 3 ) {
DeletePVar( playerid, \"NumWarning\" );
SendClientMessage( playerid, COLOR_RED, \"A szerver kidobott egy szabály áthágása miatt!\" );
Kick( playerid );
} else {
SendClientMessage( playerid, COLOR_RED, \"Egyszerre maximum 10 számjegyet írhatsz be!\" );
}
}
return 1;
}