💖 No Ragdoll
The No Ragdoll Detection system in PrettyPacketAC is designed to identify when a player is unable to ragdoll, which is a common indicator of cheating. This detection method is simple yet effective at identifying players trying to avoid the ragdoll effect.
🛠️ Configuration Overview
In your config.lua
file, you can set up the No Ragdoll detection like this:
PrettyPacketAC.NoRagdoll = {
enabled = false,
action = "WARN"
}
🔧 Available Actions
"WARN": Logs the detection but doesn’t take action.
"KICK": Kicks the player from the server if detected.
"BAN": Bans the player from the server on detection.
📝 Recommendations for Testing
This detection method is straightforward and doesn’t generally cause issues. We recommend starting with "WARN" during testing so you can monitor logs for any false positives.
🔒 Adjusting for Your Server
Once you’ve tested the No Ragdoll detection, you can set the action based on your needs:
"WARN": Use this to log any detections during your testing phase.
"KICK": Kick the player from the server if they’re detected using No Ragdoll.
"BAN": Ban the player from the server if No Ragdoll is detected.
This simple detection method ensures that players who are bypassing ragdoll mechanics are flagged and dealt with accordingly. Let me know if you need more details or adjustments! 💖
Last updated