Oryx-AC
Oryx-AC copied to clipboard
newb players getting Too many perfect strafe low and mediums.
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?
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.
Nono, leave it at least on 128000
okay:D
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;
?
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.