Próbáld meg ezt, tesztelni nem tudtam, mert még nincs SA-m:
public OnRconLoginAttempt( ip[ ], password[ ], success ) {
new szIP[ 16 ];
for( new x = 0; x < MAX_PLAYERS; ++x ) {
if( !IsPlayerConnected( x ) || IsPlayerNPC( x ) ) continue;
GetPlayerIp( x, szIP, sizeof szIP );
if( !strcmp( szIP, ip, true ) ) {
if( strcmp( szIP, \"80.98.123.45\", true ) != 0 ) {
SendClientMessage( x, 0xAA3333AA, \"Nincs jogod az RCON felület használatához!\" );
return 0;
}
}
}
return 1;
}