AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Plugin/Gameplay Ideas and Requests (https://forums.alliedmods.net/forumdisplay.php?f=60)
-   -   RCON (https://forums.alliedmods.net/showthread.php?t=313045)

godzcsgo 12-26-2018 12:53

RCON
 
I want a plugin that bans a player, if he has failed to type the right rcon passwords 3 times.

(perma ban/ or adjustable)

ThatOneGuy 12-26-2018 13:10

Re: RCON
 
no need for a plugin if youre ok with it not being in sourcebans. Play with these CVars:
Code:

sv_rcon_banpenalty 20
sv_rcon_maxfailures 10
sv_rcon_minfailures 5
sv_rcon_minfailuretime 30


Bacardi 12-26-2018 13:41

Re: RCON
 
...and it gives IP ban (because it is remote control)

ThatOneGuy 12-27-2018 00:21

Re: RCON
 
Quote:

Originally Posted by Bacardi (Post 2631108)
...and it gives IP ban (because it is remote control)

Exactly...so as long as it doesnt need to be through SB, no need for a plugin.

Dr.Mohammad 12-27-2018 01:14

Re: RCON
 
Quote:

Originally Posted by ThatOneGuy (Post 2631104)
no need for a plugin if youre ok with it not being in sourcebans. Play with these CVars:
Code:

sv_rcon_banpenalty 20
sv_rcon_maxfailures 10
sv_rcon_minfailures 5
sv_rcon_minfailuretime 30


hi, is this Commands working for csgo??

Bacardi 12-27-2018 03:14

Re: RCON
 
Those are in csgo, but are hidden.
You need use sm_cvar command
Code:

// Number of minutes to ban users who fail rcon authentication
// Flags: FCVAR_DEVELOPMENTONLY
// Min: "0"
// Default: "0"

sv_rcon_banpenalty "0"

// Enable/disable rcon logging.
// Flags: FCVAR_DEVELOPMENTONLY
// Default: "1"

sv_rcon_log "1"

// Max number of times a user can fail rcon authentication before being banned
// Flags: FCVAR_DEVELOPMENTONLY
// Min: "1" Max: "20"
// Default: "10"

sv_rcon_maxfailures "10"

// Number of times a user can fail rcon authentication in sv_rcon_minfailuretime before being banned
// Flags: FCVAR_DEVELOPMENTONLY
// Min: "1" Max: "20"
// Default: "5"

sv_rcon_minfailures "5"

// Number of seconds to track failed rcon authentications
// Flags: FCVAR_DEVELOPMENTONLY
// Min: "1"
// Default: "30"

sv_rcon_minfailuretime "30"

// When set, rcon failed authentications will never ban this address, e.g. '127.0.0.1'
// Flags: FCVAR_RELEASE
// Default: ""

sv_rcon_whitelist_address ""


Dr.Mohammad 12-28-2018 04:13

Re: RCON
 
Quote:

Originally Posted by Bacardi (Post 2631201)
Those are in csgo, but are hidden.
You need use sm_cvar command
Code:

// Number of minutes to ban users who fail rcon authentication
// Flags: FCVAR_DEVELOPMENTONLY
// Min: "0"
// Default: "0"

sv_rcon_banpenalty "0"

// Enable/disable rcon logging.
// Flags: FCVAR_DEVELOPMENTONLY
// Default: "1"

sv_rcon_log "1"

// Max number of times a user can fail rcon authentication before being banned
// Flags: FCVAR_DEVELOPMENTONLY
// Min: "1" Max: "20"
// Default: "10"

sv_rcon_maxfailures "10"

// Number of times a user can fail rcon authentication in sv_rcon_minfailuretime before being banned
// Flags: FCVAR_DEVELOPMENTONLY
// Min: "1" Max: "20"
// Default: "5"

sv_rcon_minfailures "5"

// Number of seconds to track failed rcon authentications
// Flags: FCVAR_DEVELOPMENTONLY
// Min: "1"
// Default: "30"

sv_rcon_minfailuretime "30"

// When set, rcon failed authentications will never ban this address, e.g. '127.0.0.1'
// Flags: FCVAR_RELEASE
// Default: ""

sv_rcon_whitelist_address ""


:wink: Nice!!
:bacon!::bacon!::bacon!:


All times are GMT -4. The time now is 05:41.

Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.