🔫 Infinite Ammo
In PrettyPacketAC, we provide an Infinite Ammo Detection system that helps catch players who are using cheats to grant themselves unlimited ammo. Whether they're using basic cheats or more advanced tools, PrettyPacketAC ensures that no one gains an unfair advantage when it comes to ammunition.
🛠️ Configuration Overview
In your config.lua
file, you can configure Infinite Ammo detection like this:
PrettyPacketAC.InfiniteAmmo = {
enabled = false,
method_1 = {
enabled = false,
action = "WARN",
},
method_2 = {
enabled = false,
},
method_3 = { -- Fixes guns with -1 Ammo setting them to 0 and putting the gun away.
enabled = false,
action = "WARN", -- Leave this as WARN, this is a common bug that can occur to nromal players.
},
}
📝 Recommendations for Testing
Method 1: This method is designed to catch the less sophisticated cheats, and is good for identifying the most common infinite ammo hacks. We recommend enabling it for the "WARN" action to log any potential issues.
Method 2: This method uses more advanced detection techniques and is more effective against sophisticated cheats. It might require additional processing, but it will be more reliable and accurate. Set it to "WARN" for initial testing to observe logs and adjust as needed.
Method 3: This method is more targetted towards real player, less cheaters. Ever ran into that annoying bug where your ammo is -1 causing it to be infinite what our anticheat will do is set it back to 0, send a log and put the weapon away for you.
🔧 Detection Methods Breakdown
Method 1: Best for catching basic or low-quality cheats, such as those that simply modify ammo count or use simple exploit methods. It works by looking for common patterns in ammo behavior and can easily identify standard infinite ammo cheats.
Method 2: A more advanced method that uses additional checks and techniques for detecting infinite ammo. This method is more reliable and can catch more complex cheats, but may also require slightly more resources to run.
With these settings, you can effectively catch players trying to use infinite ammo cheats and ensure that your server remains fair. Let us know if you have any further questions! 💖
Last updated