Raised This Month: $12 Target: $400
 3% 

[Help] Rechecker


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
Whoisnext
Member
Join Date: Apr 2020
Old 06-06-2020 , 13:51   [Help] Rechecker
Reply With Quote #1

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
Whoisnext is offline
Godofwar
AlliedModders Donor
Join Date: Dec 2015
Location: Germany
Old 06-07-2020 , 03:49   Re: [Help] Rechecker
Reply With Quote #2

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.

Last edited by Godofwar; 06-07-2020 at 11:07.
Godofwar is offline
tarsisd2
Veteran Member
Join Date: Feb 2016
Location: brazil
Old 06-07-2020 , 10:07   Re: [Help] Rechecker
Reply With Quote #3

Quote:
Originally Posted by Godofwar View Post
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
tarsisd2 is offline
Godofwar
AlliedModders Donor
Join Date: Dec 2015
Location: Germany
Old 06-07-2020 , 11:06   Re: [Help] Rechecker
Reply With Quote #4

Since when [steamid] is working at rechecker?
Godofwar is offline
tarsisd2
Veteran Member
Join Date: Feb 2016
Location: brazil
Old 06-07-2020 , 11:19   Re: [Help] Rechecker
Reply With Quote #5

Quote:
Originally Posted by Godofwar View Post
Since when [steamid] is working at rechecker?
since always, i have around 10 servers using rechecker by [steamid]
tarsisd2 is offline
HamletEagle
AMX Mod X Plugin Approver
Join Date: Sep 2013
Location: Romania
Old 06-07-2020 , 11:20   Re: [Help] Rechecker
Reply With Quote #6

Quote:
Originally Posted by Godofwar View Post
Since when [steamid] is working at rechecker?
If it isn't, then rechecked is useless.
__________________
HamletEagle is offline
Godofwar
AlliedModders Donor
Join Date: Dec 2015
Location: Germany
Old 06-07-2020 , 11:25   Re: [Help] Rechecker
Reply With Quote #7

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
Godofwar is offline
Whoisnext
Member
Join Date: Apr 2020
Old 06-07-2020 , 13:08   Re: [Help] Rechecker
Reply With Quote #8

Quote:
Originally Posted by Godofwar View Post
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 is offline
Whoisnext
Member
Join Date: Apr 2020
Old 06-07-2020 , 13:09   Re: [Help] Rechecker
Reply With Quote #9

Quote:
Originally Posted by tarsisd2 View Post
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?
Whoisnext is offline
Godofwar
AlliedModders Donor
Join Date: Dec 2015
Location: Germany
Old 06-07-2020 , 13:47   Re: [Help] Rechecker
Reply With Quote #10

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

Last edited by Godofwar; 06-07-2020 at 13:49.
Godofwar is offline
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 18:40.


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