Ayuda esto sucede := - 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: Español/Spanish (
https://sampforum.blast.hk/forumdisplay.php?fid=29)
+---- Thread: Ayuda esto sucede := (
/showthread.php?tid=378921)
Ayuda esto sucede := -
chucho - 19.09.2012
oye tengo a un tipo o tipa no se que cuando se conecta aparecen mensajes haci
Код:
Warning: /rcon command exploit from: 0:186.87.33.1:54919
que significa y que puedo hacer para protegerme?
Respuesta: Ayuda esto sucede := -
EduGTA - 19.09.2012
Ese "tipo" o "tipa" estб intentando usar algъn comando RCON sin loguearse, no es peligroso, si quieres evitar esos mensajes, quita la RCON del server (poniendo rcon 0 en server.cfg)
Respuesta: Ayuda esto sucede := -
chucho - 19.09.2012
no quiero evitarlos quiero protegerme de eso
Re: Ayuda esto sucede := -
Mr.GeEk - 19.09.2012
Copia este CallBack en tu GM
PHP код:
public OnRconLoginAttempt(ip[], password[], success)
{
if(!success)
{
new
IP[16],
Nick[MAX_PLAYER_NAME];
for(new i = 0; i < MAX_PLAYERS; i++)
{
GetPlayerIp(i, IP, sizeof IP);
if(!strcmp(ip, IP, true))
{
GetPlayerName(i, Nick, MAX_PLAYER_NAME);
printf("[ALERTA] %s(%d) introdujo incorrectamente el password Rcon. [IP: '%s' | Password: '%s']", Nick, i, ip, password);
Ban(i);
break;
}
}
}
return 1;
}
Prueba esto
Respuesta: Ayuda esto sucede := -
chucho - 19.09.2012
ok lo checo y les digo si me funciono saludos