Hey! I am an FFA player and in the past months I have noticed the amount of cheaters are in the FFA.
However, all of the cheaters ( blatant ) uses something called Disabler which makes their ping extremely high to bypass the sentinel bot,
# Script to check player ping 5 continues times and kicks the player if it's consistently too high
every 5 seconds:
loop all players:
# Initialize a counter for high ping detections
set {_high_ping_count} to 0
# Loop 5 times, checking the ping every 1 second
loop 5 times:
if loop-player's ping is greater than 800: # Change 800 to your preferred max ping
add 1 to {_high_ping_count}
wait 1 second
# If the player's ping was high in all 5 checks, kick them
if {_high_ping_count} is 5:
kick loop-player
With a screen says "Your ping is unstable (Fake Ping/Disabler detected)!"
This prevents cheaters to get very comfortable while cheating!
However, all of the cheaters ( blatant ) uses something called Disabler which makes their ping extremely high to bypass the sentinel bot,
# Script to check player ping 5 continues times and kicks the player if it's consistently too high
every 5 seconds:
loop all players:
# Initialize a counter for high ping detections
set {_high_ping_count} to 0
# Loop 5 times, checking the ping every 1 second
loop 5 times:
if loop-player's ping is greater than 800: # Change 800 to your preferred max ping
add 1 to {_high_ping_count}
wait 1 second
# If the player's ping was high in all 5 checks, kick them
if {_high_ping_count} is 5:
kick loop-player
With a screen says "Your ping is unstable (Fake Ping/Disabler detected)!"
This prevents cheaters to get very comfortable while cheating!

