26.02.2019, 16:38
Quote:
Eu consegui verificar quando tem o spam de letras, o problema mesmo й remover.
|
PHP код:
// 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]){
strdel(text, i, i+3);
}
}
return text;
}
// no onplayertext
format(string, sizeof(string), "%s [%d]: %s", Player_Nome(playerid), playerid, VerificarChar(text));