Ayuda mi server me banea cuando me logueo con RCON
#3

Quote:
Originally Posted by OTACON
Посмотреть сообщение
verifica el call OnRconLoginAttempt puede que tengas alguna restricciуn, o algun otro script que lo tenga.
saludos.
Me puedes ayudar se muy poco de script mira esto tengo en RconLogin



public OnRconLoginAttempt( ip[], password[], success)
{
if(!success)
{
new attempts=dini_Int(BAD_RCON_LOGIN_FILE,ip);
attempts++;
if(attempts>=MAX_CHECKS)
{
new cmd[32];
format(cmd,sizeof(cmd),"banip %s",ip);
SendRconCommand(cmd);
JB_LogEx("Banning IP %s for too many failed RCON-logins.",ip);
}
JB_LogEx("IP %s tried to log in as RCON-admin with password '%s'.",ip,password);
dini_IntSet(BAD_RCON_LOGIN_FILE,ip,attempts);
}
else
JB_LogEx("IP %s has logged in as RCON-admin",ip);
return CallLocalFunction("JB_OnRconLoginAttempt","ssi",ip ,password,success);
}
Reply


Messages In This Thread
Ayuda mi server me banea cuando me logueo con RCON - by Engine_Cleo - 22.01.2014, 16:05
Respuesta: Ayuda mi server me banea cuando me logueo con RCON - by OTACON - 22.01.2014, 16:09
Respuesta: Ayuda mi server me banea cuando me logueo con RCON - by Engine_Cleo - 22.01.2014, 16:14
Respuesta: Ayuda mi server me banea cuando me logueo con RCON - by Caja_negra - 22.01.2014, 16:33
Respuesta: Ayuda mi server me banea cuando me logueo con RCON - by Engine_Cleo - 22.01.2014, 16:37
Respuesta: Ayuda mi server me banea cuando me logueo con RCON - by jurgen - 22.01.2014, 17:50
Respuesta - Ayuda - by Eizen - 22.01.2014, 21:33

Forum Jump:


Users browsing this thread: 1 Guest(s)