23.09.2012, 14:24
Simple RCON Login Protector:
Thanks to the SA-MP Scripting IRC channel for the login attempt counter
Thanks to the SA-MP Scripting IRC channel for the login attempt counter
Quote:
#pragma tabsize 0 new RCONLoginCount[MAX_PLAYERS]; public OnPlayerConnect(playerid) { RCONLoginCount[playerid] = 0; return 1; } public OnRconLoginAttempt(ip[], password[], success) { if(!success) //If the password was incorrect { printf("Someone tried to login to your RCON! %s tried to login with password: %s",ip, password); new PlayerIP[16]; for(new i=0; i<MAX_PLAYERS; i++) //Loop through all players { GetPlayerIp(i, PlayerIP, sizeof(PlayerIP)); if(!strcmp(ip, PlayerIP, true)) //If a player's IP is the IP that failed the login { RCONLoginCount[i] ++; if(RCONLoginCount[i] >= 5) Ban(i); print("The hacker has been BANNED."); } } } return 1; } |