🎯 Soft Aim Detection
Soft aim is a common cheat that subtly assists players in aiming at others, making it easier to land headshots or other precise shots. This detection not only identifies soft aim usage but can also disable the functionality to prevent cheating.
🔧 Configuration
luaCopyEditPrettyPacketAC.AntiSoftAim = {
enabled = false,
action = "NONE", -- Options: "NONE", "WARN", "KICK", "BAN"
}
enabled
: Turns on or off the soft aim detection system.action
: The action taken when a soft aim cheat is detected. Available options are:"NONE": Does nothing but disables soft aim functionality.
"WARN": Warns the player that soft aim has been detected.
"KICK": Kicks the player from the server for using soft aim.
"BAN": Bans the player for using soft aim.
⚠️ Tips
Testing: It is recommended to leave the
action
set to "NONE" initially. This allows you to test whether the detection is working as expected without any major interruptions to gameplay. You can change it to "WARN", "KICK", or "BAN" after testing and confirming the detection is working fine.
Last updated