💖 NoClip

PrettyPacketAC includes a No Clip Detection system with 3 different methods to detect players using cheats that allow them to clip through the world. It's important to configure these methods based on the needs and performance of your server.

🛠️ Configuration Overview

In your config.lua file, you can set up the No Clip detection like this:

PrettyPacketAC.NoClip = {
    enabled = false,
    method_1 = {
        enabled = false,
        action = "WARN",
    },
    method_2 = { -- Temperamental
        enabled = false,
        action = "WARN",
    },
    method_3 = { 
        enabled = false,
        action = "WARN",
    },
}

🔧 Available Detection Methods

  • Method 1: A basic method for detecting No Clip, can be set to "WARN", "KICK", or "BAN".

  • Method 2: This method is a bit more temperamental but can be reliable when tuned. We highly recommend setting it to "WARN" to monitor it closely.

  • Method 3: My personal favorite and a more reliable method for detecting No Clip. This method can be set to "WARN", "KICK", or "BAN" depending on your needs.


📝 Recommendations for Testing

  • Method 2: It is temperamental, so it’s recommended to keep it on "WARN" to see if any false positives are triggered. This allows you to monitor the logs before taking action.

  • Method 3: My personal favorite — you can enable this method and set the action to "WARN" to start with. Once you've seen that it works well, you can change it to "KICK" or "BAN" if needed.

  • Method 1: If you'd like, you can enable this method and set it to "WARN" initially for testing.


🔒 Adjusting for Your Server

You can adjust the action for each method based on your preferences:

  • "WARN": Logs the detection without taking any action.

  • "KICK": Kicks the player from the server if No Clip is detected.

  • "BAN": Bans the player from the server on detection.


💡 Pro Tip:

  • Method 2 can be temperamental, so it’s best to leave it on "WARN" for now to see if you get any false flags.

  • Method 3 is a reliable method that I recommend for detecting No Clip, and it’s the one I personally use the most. It’s a great balance between effectiveness and avoiding false positives.

  • Teleporting into shells or using similar teleportation methods can trigger No Clip detections, so be sure to implement bypasses for these situations to prevent false flags.


With these settings, you can confidently detect No Clip users while fine-tuning the system to avoid false positives. Let me know if you need any more tweaks or information! 💖

Last updated