cuddly-table-7819
12/21/2022, 10:10 PMc++
stock IsIp(const texto_ip[])
{
new count;
for (new i = 0, j = strlen(texto_ip); i < j; i++) {
if(texto_ip[i] > 47 && texto_ip[i] < 58) {
count++;
}
if(count > 5) {
return 1;
}
}
return 0;
}
but a lot of innocents got kicked with this function...flat-egg-44689
12/22/2022, 7:45 AM