25.09.2011, 00:08
Ola, Preciso de ajuda com o anti-divulguer do Ricop522 siguente fiz tudo certio que ele pediu na hora de copila nem copila da erro no copilador codigos esta aqui embaixo
PROVAVELMENTE DEVE SER ERROGS NAS CHAVES DO CODIGO checaDivulguer(playerid, text)
}
Quote:
stock checaDivulguer(playerid, texto[]) { new ccount[3]; for(new i; i < strlen(texto); ++i) switch(texto[i]) { case '0' .. '9': ccount[0]++; case '.': ccount[1]++; case ':': ccount[2]++; } new string[128]; if(ccount[0] > 8 && ccount[1] >= 3 && ccount[2] >= 1) { format(string,sizeof(string),"[ antiDivulgadores ] %s foi banido por divulgar.", rNome(playerid)); BanEx(playerid, texto); SendClientMessageToAll(string, -1); } return 1; } stock rNome(playerid) { new nome[24]; GetPlayerName(playerid, nome, 24); return nome; } |
Quote:
public OnPlayerText(playerid, text[]) { checaDivulguer(playerid, text) } |
}