Oryx-AC icon indicating copy to clipboard operation
Oryx-AC copied to clipboard

newb players getting Too many perfect strafe low and mediums.

Open bhopone opened this issue 6 years ago • 5 comments

So I added the newest version to our bhop server (which has BASH2 and bTimer also) and I am getting theese annoying messages about some newbie/bad bhopper is getting false positivies like: "[ORYX] Cheat: Too many perfect strafes | Level: MEDIUM" so is there something that I can do about it or do I just need to change anticheat?

bhopone avatar Apr 18 '18 18:04 bhopone

What's your server's sv_minrate set to? If it's default, setting it to server tickrate * 1000 should cut the number of detections at least somewhat. Otherwise you can change the threshold values in oryx-strafe.sp and recompile, they're on lines 551, 557 and 563 corresponding to high, medium, low levels for strafe detection.

pabp avatar Apr 18 '18 19:04 pabp

Nono, leave it at least on 128000

cytrus224 avatar Apr 18 '18 19:04 cytrus224

okay:D

bhopone avatar Apr 18 '18 19:04 bhopone

so what do I need to change in theese: { Oryx_Trigger(client, TRIGGER_HIGH, DESC7); gI_BASHTriggerCountdown[client] = 35; }

else if(iZeroes > 22)
{
	Oryx_Trigger(client, TRIGGER_MEDIUM, DESC7);
	gI_BASHTriggerCountdown[client] = 35;
}

else if(iZeroes > 18)
{
	Oryx_Trigger(client, TRIGGER_LOW, DESC7);
	gI_BASHTriggerCountdown[client] = 35; 

?

bhopone avatar Apr 18 '18 19:04 bhopone

The values inside the brackets beside "iZeroes > ". At default, LOW is 18/30 strafes perfect, MEDIUM is 22/30 and HIGH is 25/30. If you change the sample size (defined in line 41 near the top of the script), make sure these are adjusted as well to reflect the change or even semi-competent bhoppers will easily pass the HIGH threshold and get kicked.

pabp avatar Apr 23 '18 03:04 pabp