[Pedido] Sistema de BAN - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: Non-English (
https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (
https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (
https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [Pedido] Sistema de BAN (
/showthread.php?tid=289845)
[Pedido] Sistema de BAN -
IILeonII - 13.10.2011
Bom pessoal hoje meu servidor tinha uns malditinhos anunciando outro servidor e eu bania e talz
mas eles ficavam reniciando o moldem e trocando de IP
existe algum code FS que quando o player com qse a mesma faixa de ip logar ele e banido altomaticamente
ou avisa pros admins que o player com tal faixa de ip banido esta logando
Tank You.
Re: [Pedido] Sistema de BAN -
Vai_Besta - 13.10.2011
http://forum.sa-mp.com/showthread.ph...ighlight=faixa
by Drakins
Re: [Pedido] Sistema de BAN -
Bruno Pereira - 13.10.2011
Pra avisa que o Player tal ta logando com IP:
PHP код:
//Public OnPlayerConnect
new
IP[16],
_sStr[60],
pNome[20]
;
GetPlayerIp(playerid, IP, sizeof(IP));
GetPlayerName(playerid, pNome, sizeof(pNome));
format(_sStr, 60, "O Player %s se conectou com o IP %s", pNome, IP);
SendClientMessageToAll(-1, _sStr);
Deve funcionar, fiz no Quick Reply entao nгo ta muito identado.