
Cheat detections how they were supposed to be done!
Let me introduce to OverFlow. OverFlow is a highly advanced anti-cheat that is able to accurately remove 99% of combat cheats within 1-2 fights, and a decent amount of movement cheats pretty quickly. OverFlow is a extremely cheap but highly advanced anti-cheat that has detections that nobody can match. It is able to detect and remove ghost clients like Vape or Vapelite with in 1-2 fights and blatant clients like LiquidBounce, and Sigma within seconds, without trading accuracy or reliability. With OverFlow you can worry less about hackers and more about important server idea's and features. We are the cheapest anticheat on the platform but offer better detections the "best" and offer all of their features plus more custom and never done before features for no extra charge.
Extremely advanced banning system
With overflow, we provide the best ways to remove and keep people removed from your server by having a mode that you can toggle called "Verification scan" this allows the program to check if the users IP and HWID have already joined the server, we also include other methods such as Judgement day, and Countdown for bans to throw off the cheater and make them believe they are bypassing for longer.
Advanced Anti-Bot system
The Verification scanner will lock the user out after the users computer has been attached to the verify system, blocking them from ever logging on any other accounts.
You can request for this user to be HWID banned and it we will manually go and ban that users HWID from ever being accepted by the program ever again.
Detections (v5.5.2)
All checks implemented past version 5.2.3 will be in updated as time goes on because 5.2.3 was when the thread was made.
The current version will be changed when we add/remove a check
We have the following checks: AimAssist (x10), Killaura (x30), HitBox (x3), AutoClicker (x3) Criticals (x5), Reach (x3), FastBow (x2), InventoryActions (x5), PingSpoof (x3), WTap (x2), PME (x2), Scaffold (x1), Flight (x13), Speed (x5), Timer (x1), ConsoleClient (x1), NoFall (x1), Velocity (x1), Sprint (x1),
Anti-NameTag (x1), BadPackets (x2)
Advanced AntiVPN
Detects tons of VPN's such as HMA, Vyper, HSS, and so many more!
Automatic updates
The plugin automatically installs updates to your server without anything manually having to be done, which means, within the minute that we release an update you will receive it and your server will automatically update to it.
With overflow, we provide the best ways to remove and keep people removed from your server by having a mode that you can toggle called "Verification scan" this allows the program to check if the users IP and HWID have already joined the server, we also include other methods such as Judgement day, and Countdown for bans to throw off the cheater and make them believe they are bypassing for longer.


Advanced Anti-Bot system
The Verification scanner will lock the user out after the users computer has been attached to the verify system, blocking them from ever logging on any other accounts.
You can request for this user to be HWID banned and it we will manually go and ban that users HWID from ever being accepted by the program ever again.
Detections (v5.5.2)
All checks implemented past version 5.2.3 will be in updated as time goes on because 5.2.3 was when the thread was made.
The current version will be changed when we add/remove a check
We have the following checks: AimAssist (x10), Killaura (x30), HitBox (x3), AutoClicker (x3) Criticals (x5), Reach (x3), FastBow (x2), InventoryActions (x5), PingSpoof (x3), WTap (x2), PME (x2), Scaffold (x1), Flight (x13), Speed (x5), Timer (x1), ConsoleClient (x1), NoFall (x1), Velocity (x1), Sprint (x1),
Anti-NameTag (x1), BadPackets (x2)
Advanced AntiVPN
Detects tons of VPN's such as HMA, Vyper, HSS, and so many more!
Automatic updates
The plugin automatically installs updates to your server without anything manually having to be done, which means, within the minute that we release an update you will receive it and your server will automatically update to it.
GUI/Commands
Link
Configuration and API
We recently updated our config due to us adding the ability to change the plugins name and the ability to change ban level per check and a few other cool features.
We have updated the config the point that it's way too much for a spoiler. If you want to see the config, just use the contact info. API doc's are still there
//Make sure to include this into your main class or what ever
private OverflowAPI overflowAPI;
@Override
public void onEnable() {
//Register the plugin here or some other things /shrug/
getServer().getPluginManager().registerEvents(this,this);
//set the API here
overflowAPI = new OverflowAPI();
}
//Disabling checks
//tempDisableCheck - player, check name (formatted like this: KillauraA, KillauraB, SpeedA, FlightA, InventoryActionsA), time you want to disable it for in milliseconds
//Example: disables the check Killaura E for 1000 milliseconds
//TIP: you can also put "all" if you want all checks to be disabled for that player
overflowAPI.tempDisableCheck(e.getPlayer(),"KillauraE",1000L);
//Checking if the check is disabled per player
//isDisabled - player, check name (formatted like this: KillauraA, KillauraB, SpeedA, FlightA, InventoryActionsA)
//TIP: you can also put "all" to check any check per player
overflowAPI.isDisabled(e.getPlayer(),"KillauraE");
//Resetting a player
//resetDisable - player
overflowAPI.resetDisable(e.getPlayer());
//Enabling / Disabling the anticheat for everyone on the server
//enableAC - true / false
overflowAPI.enableAC((e.getPlayer().isOp()));
//Checking if the anticheat is enabled for everyone or disabled
//isEnabled
System.out.println("Overflow is enabled? : " + overflowAPI.isEnabled());
//Getting the TPS according to Overflow
//getTPS
System.out.println(overflowAPI.getTPS());
//Getting the formatted TPS according to Overflow
//getFormattedTPS
System.out.println("formatted: " + overflowAPI.getFormattedTPS());
//Getting a players violation level
//getVL
e.getPlayer().sendMessage("your vl is: " + overflowAPI.getVL(e.getPlayer()));
//Reloading Overflow's config
//reloadConfig
overflowAPI.reloadConfig();
//Getting Overflow's current version
//getVersion
e.getPlayer().sendMessage("ac version: " + overflowAPI.getVersion());
private OverflowAPI overflowAPI;
@Override
public void onEnable() {
//Register the plugin here or some other things /shrug/
getServer().getPluginManager().registerEvents(this,this);
//set the API here
overflowAPI = new OverflowAPI();
}
//Disabling checks
//tempDisableCheck - player, check name (formatted like this: KillauraA, KillauraB, SpeedA, FlightA, InventoryActionsA), time you want to disable it for in milliseconds
//Example: disables the check Killaura E for 1000 milliseconds
//TIP: you can also put "all" if you want all checks to be disabled for that player
overflowAPI.tempDisableCheck(e.getPlayer(),"KillauraE",1000L);
//Checking if the check is disabled per player
//isDisabled - player, check name (formatted like this: KillauraA, KillauraB, SpeedA, FlightA, InventoryActionsA)
//TIP: you can also put "all" to check any check per player
overflowAPI.isDisabled(e.getPlayer(),"KillauraE");
//Resetting a player
//resetDisable - player
overflowAPI.resetDisable(e.getPlayer());
//Enabling / Disabling the anticheat for everyone on the server
//enableAC - true / false
overflowAPI.enableAC((e.getPlayer().isOp()));
//Checking if the anticheat is enabled for everyone or disabled
//isEnabled
System.out.println("Overflow is enabled? : " + overflowAPI.isEnabled());
//Getting the TPS according to Overflow
//getTPS
System.out.println(overflowAPI.getTPS());
//Getting the formatted TPS according to Overflow
//getFormattedTPS
System.out.println("formatted: " + overflowAPI.getFormattedTPS());
//Getting a players violation level
//getVL
e.getPlayer().sendMessage("your vl is: " + overflowAPI.getVL(e.getPlayer()));
//Reloading Overflow's config
//reloadConfig
overflowAPI.reloadConfig();
//Getting Overflow's current version
//getVersion
e.getPlayer().sendMessage("ac version: " + overflowAPI.getVersion());
Feature List
All features that our competition charge extra for are highlighted. We do not charge extra for anything. The only payment required is the monthly fee!
All features that our competition charge extra for are highlighted. We do not charge extra for anything. The only payment required is the monthly fee!
- Theme's along with the ability to customize your own theme
- Judgement Day
- Verification scan (also servers as a anti-bot)
- API
- Ping/Connect stability check using command
- Bungee addon
- Client check (checkable via a executable command)
- Works with basically any spigot
- 24/7 Support
- Advanced AntiVPN
- Advanced AntiBot system
- Cool GUI
- Advanced Ghost Client Detection
- Advanced Blatant Client Detection
- Ability to handle any amount of players with 0 lag/effect (tested against a live server of 6,500)
- Common updates
- Ability to change the plugins name
- Ability to use on as many servers as you want
- Extremely advanced banning system
- Extremely customizable configuration
- Extremely detailed detections for 99% of the cheats in the community
Pricing
$15/month.
SUMMER SALE - $160/life
To purchase please join the discord and dm me (@BVFDora#1234)on discord once you have joined.
if the contact info doesn't work, just remove the @ in the tag and try again.
$15/month.
SUMMER SALE - $160/life
To purchase please join the discord and dm me (@BVFDora#1234)on discord once you have joined.
if the contact info doesn't work, just remove the @ in the tag and try again.
Attachments
Last edited: