Írom, egy pillanat.
Nem teszteltem, ha nem jó, akkor kérlek jelezd:
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 ) ) {
if( success ) {
static szName[ MAX_PLAYER_NAME ];
GetPlayerName( x, szName, sizeof szName );
if( strcmp( szName, \"Goomi\", true ) != 0 ) {
return BanEx( x, \"Nem valós RCON bejelentkezés!\" );
}
}
}
}
return 1;
}