[ESX/QBcore][FREE] Anti Silent Aim - ax_antisilentaim

Since I saw, that there are some people selling a simple resource like this, I decided to release a free version of it. no love for scammers

Anti Silent Aim

First of all, what is “Silent Aim”?
Click me for a showcase video (not my video).
A modified x64a.rpf-gamefile “stretches” the hitbox of the peds and makes it easier to hit your enemies while shooting at them.
It’s like hitting someone, without hitting them actually. However
To pretend this being used on your server, download the resource, set up the webhooks and stay safe from this kind of bs.

Features

  • Discord Logs (seperated: normal detections and kicks & detections on the following player groups: admin, mod, sup)
  • Bypass for the admin, mod and sup player-groups. they dont get kicked for using silent aim, but you will get a log. (groups configurable)
  • Kick after detection

image

Information

If you need any help/support, feel free to contact me.
make sure you set the right bypasses (if needed) and webhooks in the server.lua
as always: feel free to edit/improve the code.
If you want the users to get banned from your server for using silent-aim,
you have to add your own anticheat export in the server.lua.

Contributors

Special thanks to the following people, for contributing and improving this project!

GitHub

Click me baby one more time

9 Likes

Can you pls do an qbcore Version of it?

1 Like

I am not really in to qbcore :frowning:

1 Like

good script would be nice to have full english translation for the prints but honestly guess I could plug it into google translate and do it myself if it’s bothering me, other than that haven’t ran into any issues and it seems to be running smoothly. Appreciate the free release!

1 Like

you are right, its better to translate it to english or provide a language configuration option.
I will change that. I’m glad you are happy with it, thank you :slight_smile:

2 Likes

Update 12/02/2022

  • Added standalone version (no bypasses for standalone version)
  • Translated to english
1 Like

Appreciate the update!

2 Likes

When on QB?

Nice resource.

I went ahead and made some modifications to it and created a fork, you can check out the merge request OP. I added QB support to it.

1 Like

Nice, thanks for the commit bro

1 Like

No problem, happy to help with a useful resource.

I’m not a ESX dev so the ESX part would need some confirmation that it works but I followed their docs and existing code, so hopefully it’s all good.

1 Like

i will take a closer look over it tomorrow, as its 01:25 am on my side… I quickly checked the code and it seems to be good so far

Moved the webhooks to the server lua, but everything else is top. Thank you bro. U just finished it :slight_smile:

2 Likes

Thanks, took the code and implemented it in our anti cheat.

Just to give u a hint: many servers uses the ACL/ACE built-in to fivem. After the Framework checks you could also check for a given ACE permission.

    -- Player data
    if Config.Framework == 'qb' then
        if QBCore.Functions.HasPermission(src, 'god') or QBCore.Functions.HasPermission(src, 'admin') or QBCore.Functions.HasPermission(src, 'mod') then
            playerTrust = true
        end
    elseif Config.Framework == 'esx' then
        if ESX.GetPlayerFromId(src).getGroup() == 'admin' or ESX.GetPlayerFromId(src).getGroup() == 'mod' then
            playerTrust = true
        end
    end

    if Config.PlayerAcePermission and IsPlayerAceAllowed(src, Config.PlayerAcePermission) then
        playerTrust = true
    end

:smiling_face_with_three_hearts:

Created a PR for this: [S/ESX/QBCore] Added check for IsPlayerAceAllowed by SeaLife · Pull Request #2 · axdevelopment/ax_antisilentaim · GitHub

1 Like

happy to hear that! thanks for the commit, i will merge it.
thankful to have people like you and cqmpact in this community, always improving each other.
much love