๐Ÿ’– Invisibility

PrettyPacketAC includes an Invisibility Detection system that checks whether a player's model is invisible. This is a highly recommended feature to test thoroughly, as certain actions (like teleporting into shells or other similar actions) may trigger false detections.

If you decide to use this detection method, we suggest setting it to "WARN" initially, or implementing bypasses for specific cases to avoid unwanted flags.

๐Ÿ› ๏ธ Configuration Overview

The Invisibility detection is configured in your config.lua file as follows:

PrettyPacketAC.Invisible = {
    enabled = false,
    action = "WARN"
}

  • Action: We recommend setting the action to "WARN" to log potential issues without taking action immediately. This will give you a chance to monitor the logs and identify if any false flags are occurring.

  • Testing: Thoroughly test this detection, especially with custom scripts or teleportation actions, as certain things like teleporting into shells or using other similar mods can cause false positives. ๐Ÿ’ก


๐Ÿ“ Recommendations

  • Set to "WARN": This will allow you to observe when invisibility detections occur, without kicking or banning players immediately. You can analyze the logs to see if there are any false flags triggered by teleportation or shell-related actions.

  • Use Bypasses: If certain players or scripts (such as teleporting into shells) trigger this detection, you may want to implement bypasses to avoid false positives while still maintaining protection.


๐Ÿ”’ Adjusting for Your Server

Once youโ€™ve thoroughly tested the invisibility detection, you can adjust the action:

  • "WARN": Logs the detection for review.

  • "KICK": Kicks the player from the server when invisibility is detected.

  • "BAN": Bans the player from the server if they are detected to be invisible.


Invisibility detection helps protect your server from players who try to become invisible, but itโ€™s important to test it thoroughly to ensure it doesn't interfere with normal gameplay. Let me know if you need further help setting it up! ๐Ÿ’–

Last updated