๐Ÿ’– Infinite Stamina

PrettyPacketAC provides an Infinite Stamina Detection system with 2 detection methods to help prevent players from exploiting infinite stamina cheats. You can customize the detection methods to suit your serverโ€™s needs.

Based on testing, we recommend the following settings for optimal performance:

  • Method 1: Can be set to "KICK" or "BAN" for reliable detection.

  • Method 2: This method is more prone to false flags but is tuned for better reliability. We recommend setting it to "WARN" for testing.

๐Ÿ› ๏ธ Configuration Overview

In your config.lua file, the Infinite Stamina detection settings will look like this:

PrettyPacketAC.InfiniteStamina = {
    enabled = false,
    method_1 = {
        enabled = false,
        action = "WARN",
    },
    method_2 = {
        enabled = false,
        action = "WARN",
    },
}

๐Ÿ”ง Available Detection Methods

  • Method 1: Reliable detection, can be set to "KICK" or "BAN".

  • Method 2: Tends to false flag but has been tuned for better reliability, recommended to keep on "WARN" for testing.


๐Ÿ“ Recommendations for Testing

  • Method 1: Set this to "KICK" or "BAN" for effective enforcement based on your server needs.

  • Method 2: Set this to "WARN" to monitor and ensure it doesnโ€™t trigger false flags during testing. This will allow you to fine-tune the system before making it more restrictive.


๐Ÿ”’ Adjusting for Your Server

Once you've tested the methods, you can adjust the action settings for each method:

  • "WARN": Logs the detection but doesnโ€™t take action.

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

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


This configuration helps ensure that players with infinite stamina cheats are caught without negatively impacting server performance. Let me know if you need more assistance with the setup! ๐Ÿ’–

Last updated