Quote:
Originally Posted by Felipealves
PHP код:
// onplayertext
if(VerificarChar(text)){
SendClientMenssage(playerid, Cor_Vermelho_Aviso, "Muitos caracteres iguais!");
return 0;
}
// funзгo
VerificarChar(text[]){
for(new i = 0; i < strlen(text); i++){
if(text[i] == text[i+1]
&& text[i+1] == text[i+2]
&& text[i+2] == text[i+3]){
return true;
}
}
return false;
}
|
Eu consegui verificar quando tem o spam de letras, o problema mesmo й remover.