AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Suggestions / Requests (https://forums.alliedmods.net/forumdisplay.php?f=12)
-   -   [Help] Rechecker (https://forums.alliedmods.net/showthread.php?t=325050)

Whoisnext 06-06-2020 13:51

[Help] Rechecker
 
Hi, i have rechecker on my server and i want to know if its possible to make the rechecker BAN the detected player instead of kicking them and to have a log with (Nick Steamid/ip and for what is detected ex Hello STEAM_0:0:1111111 124.123.22.22 Rapid hack) i have a folder "Logs" in "cstrike/addons/rechecker/" but its empty now rechecker only kicks people i want the detected players to get banned.

Code:

; R-Aim Bot 2.0
"../r-aimbot.cfg"              5db25df38a2eeeba9727a2665601ee97    "kick [userid] 'R-Aim Bot detected';    rc_log AimBot      | md5hash '[file_md5hash]' - file '[file_name]' - '<[steamid]><[ip]>' - [name]"    BREAK
"../r-aimbot.dll"              bfa33deef42692a702715c9c898b7f3c    "kick [userid] 'R-Aim Bot detected';    rc_log AimBot      | md5hash '[file_md5hash]' - file '[file_name]' - '<[steamid]><[ip]>' - [name]"    BREAK
 
; Rapid
"../a.ini"                  UNKNOWN                "kick [userid] 'Rapid Detected';    rc_log Rapid        | md5hash '[file_md5hash]' - file '[file_name]' - '<[steamid]><[ip]>' - [name]"    BREAK
"../a.dll"                  UNKNOWN                "kick [userid] 'Rapid Detected';    rc_log Rapid        | md5hash '[file_md5hash]' - file '[file_name]' - '<[steamid]><[ip]>' - [name]"    BREAK
"../a.asi"                  UNKNOWN                "kick [userid] 'Rapid Detected';    rc_log Rapid        | md5hash '[file_md5hash]' - file '[file_name]' - '<[steamid]><[ip]>' - [name]"    BREAK
"../a.ini"        afec52fba87b4d5f3c4192e1fe724273  "kick [userid] 'Rapid Detected';    rc_log Rapid        | md5hash '[file_md5hash]' - file '[file_name]' - '<[steamid]><[ip]>' - [name]"    BREAK
"../a.dll"      ae9030c7092a24a98e697e96868ebc60    "kick [userid] 'Rapid Detected';    rc_log Rapid        | md5hash '[file_md5hash]' - file '[file_name]' - '<[steamid]><[ip]>' - [name]"    BREAK
"../a.asi"      ece6e98a1d8913cfa4b86977920d1450    "kick [userid] 'Rapid Detected';    rc_log Rapid        | md5hash '[file_md5hash]' - file '[file_name]' - '<[steamid]><[ip]>' - [name]"    BREAK


Godofwar 06-07-2020 03:49

Re: [Help] Rechecker
 
the kick command and the md5 hashes are wrong here. Rechecker can read only first 8 hashes. So as example change :

from

Code:

"../r-aimbot.cfg"              5db25df38a2eeeba9727a2665601ee97    "kick [userid] 'R-Aim Bot detected';    rc_log AimBot      | md5hash '[file_md5hash]' - file '[file_name]' - '<[steamid]><[ip]>' - [name]"    BREAK
---->>>

Code:

"../r-aimbot.cfg"      5db25df3    "amx_ban 300 [userid] R_AimBot_detected" BREAK
300 = 300 Minutes.

To see logs you need to put in server.cfg and game.cfg, amxx.cfg:

rch_log 2

Server stop/start and done.

tarsisd2 06-07-2020 10:07

Re: [Help] Rechecker
 
Quote:

Originally Posted by Godofwar (Post 2704400)
the kick command and the md5 hashes are wrong here. Rechecker can read only first 8 hashes. So as example change :

from

Code:

"../r-aimbot.cfg"              5db25df38a2eeeba9727a2665601ee97    "kick [userid] 'R-Aim Bot detected';    rc_log AimBot      | md5hash '[file_md5hash]' - file '[file_name]' - '<[steamid]><[ip]>' - [name]"    BREAK
---->>>

Code:

"../r-aimbot.cfg"      5db25df3    "amx_ban 300 [userid] R_AimBot_detected" BREAK
300 = 300 Minutes.

To see logs you need to put in server.cfg and regame.cfg, amxx.cfg:

rch_log 2

Server stop/start and done.

change [userid] to [steamid] since its the best way to ban.
theres no regame.cfg file but game.cfg file

dont use rch_log 2, use rch_log 1 so it only log detections, if you use 2, it will log a lot of stuff, it will confuse you, in 1 it will log when a cheat has been detected

Godofwar 06-07-2020 11:06

Re: [Help] Rechecker
 
Since when [steamid] is working at rechecker?

tarsisd2 06-07-2020 11:19

Re: [Help] Rechecker
 
Quote:

Originally Posted by Godofwar (Post 2704449)
Since when [steamid] is working at rechecker?

since always, i have around 10 servers using rechecker by [steamid]

HamletEagle 06-07-2020 11:20

Re: [Help] Rechecker
 
Quote:

Originally Posted by Godofwar (Post 2704449)
Since when [steamid] is working at rechecker?

If it isn't, then rechecked is useless.

Godofwar 06-07-2020 11:25

Re: [Help] Rechecker
 
Yeah you are right, didnt knewn it but found it .

Code:

String formatting:
[Name] - player name
[ip] - Player IP address
[User ID] - Player ID
[Steamid] - Steamid player


Whoisnext 06-07-2020 13:08

Re: [Help] Rechecker
 
Quote:

Originally Posted by Godofwar (Post 2704400)
the kick command and the md5 hashes are wrong here. Rechecker can read only first 8 hashes. So as example change :

from

Code:


"../r-aimbot.cfg"              5db25df38a2eeeba9727a2665601ee97    "kick [userid] 'R-Aim Bot detected';    rc_log AimBot      | md5hash '[file_md5hash]' - file '[file_name]' - '<[steamid]><[ip]>' - [name]"    BREAK

---->>>

Code:

"../r-aimbot.cfg"      5db25df3    "amx_ban 300 [userid] R_AimBot_detected" BREAK
300 = 300 Minutes.

To see logs you need to put in server.cfg and game.cfg, amxx.cfg:

rch_log 2

Server stop/start and done.

Hi, in my rechecker there is alot of long hashes should i put full code here so you can fix it to work properlly? And to make ban on steam id?

Whoisnext 06-07-2020 13:09

Re: [Help] Rechecker
 
Quote:

Originally Posted by tarsisd2 (Post 2704434)
change [userid] to [steamid] since its the best way to ban.
theres no regame.cfg file but game.cfg file

dont use rch_log 2, use rch_log 1 so it only log detections, if you use 2, it will log a lot of stuff, it will confuse you, in 1 it will log when a cheat has been detected

i changed it in server.cfg amxx.cfg but cannot find game.cfg where is that exactly?

Godofwar 06-07-2020 13:47

Re: [Help] Rechecker
 
game.cfg have rehlds servers and its in cstrike there where server.cfg is.

You can but u need only add the first 8 hashes, rest u can remove manual. And u need only change "kick" to "amx_ban TIME"

Like here:

"../r-aimbot.cfg" 5db25df3 "amx_ban 300 [userid] R_AimBot_detected" BREAK


All times are GMT -4. The time now is 09:02.

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