habs schon x-mal durchgesucht aber finde keinen fehler...
trotzdem 6 errors beim compilieren...
public OnRconLoginAttempt(ip[], password[], success)
{
if(!success)
{
printf("Gescheiterter RCON-Login, IP %s mit Passwort %s",ip, password);
new pip[16];
for(new i=0; i<MAX_PLAYERS; i++)
{
GetPlayerIp(i, pip, sizeof(pip));
if(!strcmp(ip, pip, true))
{
SendClientMessageToAll(COLOR_YELLOW, "Es wurde versucht das RCON-Passwort zu hacken!");
SendClientMessageToAll(COLOR_YELLOW, "... IP-Adressen werden durchsucht ...");
Ban(i);
}
}
}
return 1;
}
mfg