29.12.2013, 15:56
Open filter script , go to line 31.. 36 Change that password to avoide 'Bad password attempt'
Here just add the names you want to allowed rcon login with.
Add more ip's to your friend ones on that line too.
pawn Код:
new pws[][MAX_PW_LENGTH] = // Change this when using hardcoded
{ // passwords
"PW_1", // Use as many different passwords
"PW_2", // as possible
"PW_3"
};
pawn Код:
new namewhitelist[][MAX_PLAYER_NAME] = // Only the names in this list can login
{ // as RCON admin, if USE_NAME_WHITELIST
"SplinteX" // is activated
};
pawn Код:
new ipwhitelist[][16] = // Only the IPs in this list can login
{ // as RCON admin, if USE_IP_WHITELIST
"127.0.0.1" //that's the local host ip. 'only owner can do that'
};

