Option to auto-ban if 3 consecutive aimbot violations occurSuggestion

Everytime someone sets off atleast 3 aimbot violations they are blatantly cheating. It would be great if the plugin could auto-ban the player when they do this. Espececially when the admins are sleeping.

I don't think you'll see any updates to this plugin any time soon, but I wrote my own wrapper plugin that does this same thing.  Arkan exposes API methods that you can hook into, e.g.:

        private void API_ArkanOnAimbotViolation(BasePlayer player, int AIMViolationsNum, string json)
        {
            if (AIMViolationsNum >= 3)
            {
               player.IPlayer.Ban(string.Concat("Banned: ", "Automated cheat detection."));
               Puts($"AUTO ARKAN BAN  : {player.displayName} auto-banned for excessive Arkan Violations");
            }

            return;
        }
​

Hello,

I have a bit of a hard time understanding this mod. I can see some people get violations a lot. I have one player doing raidable bases that has 9 vilations. How can you tell when the person is actually hacking or when it is just Arkan recording stuff? Is this guy using no recoil for raidable bases?

XALppyZEvBmAM6H.png explodedotgg

I don't think you'll see any updates to this plugin any time soon, but I wrote my own wrapper plugin that does this same thing.  Arkan exposes API methods that you can hook into, e.g.:

        private void API_ArkanOnAimbotViolation(BasePlayer player, int AIMViolationsNum, string json)
        {
            if (AIMViolationsNum >= 3)
            {
               player.IPlayer.Ban(string.Concat("Banned: ", "Automated cheat detection."));
               Puts($"AUTO ARKAN BAN  : {player.displayName} auto-banned for excessive Arkan Violations");
            }

            return;
        }
​

can you help me with it?

4weed2weed0

Hello,

I have a bit of a hard time understanding this mod. I can see some people get violations a lot. I have one player doing raidable bases that has 9 vilations. How can you tell when the person is actually hacking or when it is just Arkan recording stuff? Is this guy using no recoil for raidable bases?

I set all of my alerts to 95% so I only get the really high ones. Helps filter out the BS.

RvdksZpyzPYRmDE.png SIIN

I set all of my alerts to 95% so I only get the really high ones. Helps filter out the BS.

How do I do this? Do I need to change this line for each in the config files to 95%?

"NRViolationProbability": 70.0 to-> "NRViolationProbability": 95.0

4weed2weed0

How do I do this? Do I need to change this line for each in the config files to 95%?

"NRViolationProbability": 70.0 to-> "NRViolationProbability": 95.0

Yeah.

Thank you internet person!!!

RgYtRDOMCOLHUnq.jpg Murdoc

can you help me with it?

RvdksZpyzPYRmDE.png SIIN

I set all of my alerts to 95% so I only get the really high ones. Helps filter out the BS.

6oAaPvfcJAJJxOl.png explodedotgg

I don't think you'll see any updates to this plugin any time soon, but I wrote my own wrapper plugin that does this same thing.  Arkan exposes API methods that you can hook into, e.g.:

        private void API_ArkanOnAimbotViolation(BasePlayer player, int AIMViolationsNum, string json)
        {
            if (AIMViolationsNum >= 3)
            {
               player.IPlayer.Ban(string.Concat("Banned: ", "Automated cheat detection."));
               Puts($"AUTO ARKAN BAN  : {player.displayName} auto-banned for excessive Arkan Violations");
            }

            return;
        }
​

Can you please help me. I dont understand where I need to add this. In the plug in? In this config file/lang file?