- Compatible API Versions
- 1.0.0
WatchDogPlus AntiCheat
We stop players on your server for cheating.
Wiki Link:
Discord:
discord.gg
WatchDogPlus is an anti-cheating with powerful detection ability, which involves the detection of movement, attack and data packet. It will ensure that there are no cheaters on your server.
WatchDogPlus has a highly customized configuration file. You can modify all the prompts in it.
WatchDogPlus have powerful checks to keep your server more safer.
WatchDogPlus could block:
Ban System:
Bypass Promission:
Config:
If you think some tests are defective and often pull back players, you can find "check.type.switch" in the configuration file,please change the "true" to "false",then you can close the lagback.For example, change "wad.check.survivefly.switch: true" to "false".
Command:
If you want to use the WatchDog administrator command, you must add yourself to the StaffList in the configuration file.WatchDog, a player with Staff, will relax the testing standards, just like Hypixel.
Start using WatchDogPlus now!
Download: https://cloudburstmc.org/resources/watchdogplus.620/download
WatchDogAPI(For developers)
Event:
- PlayerCheatEvent
It triggers when a player cheats.
- PlayerLagBackEvent
Triggered when a cheater is pulled back by
WatchDogPlus.
- PlayerAddViolationEvent
Triggered when a player's VL value increases.
- PlayerViolationChangeEvent
Triggered when a player's VL value changes.
How to use these events?
download the WatchDogDevelopmentKit.jar.
Watchdog development kit is not a plug-in. It can only help you compile in Java ide. Please don't install it into your NK server because it won't work
Download Link: https://cloudburstmc.org/resources/watchdogdevelopmentkit.629/
DemoPlugin Link: https://cloudburstmc.org/resources/exampleplugin-for-watchdogplus.630/
Course:
1.Take wa tchDogDevelopmentKit.jar Add to your ide dependency package
2.In your plug-in's plugin.yml Add :
3.Write your plug-in and package it
4.Finally, put your plug-in into nukkit.
Demo:
We stop players on your server for cheating.
Wiki Link:

Join the WatchDogPlus Discord Server!
Check out the WatchDogPlus community on Discord - hang out with 4 other members and enjoy free voice and text chat.
WatchDogPlus is an anti-cheating with powerful detection ability, which involves the detection of movement, attack and data packet. It will ensure that there are no cheaters on your server.
WatchDogPlus has a highly customized configuration file. You can modify all the prompts in it.
WatchDogPlus have powerful checks to keep your server more safer.
WatchDogPlus could block:
- SurvivalFly
- AirJump
- HighJump
- Speed
- Bhop
- ThroughWall(Phase/NoClip)
- Blink
- NoPacket
- MagicMoving
- AutoAim
- KillAura
- Critical
- Reach(Place/Break/Fight)
- HitBox
- NoSwing
- Nucker
- FastPlace
- Scaffold
- ColorChat
- FastChat
- FastCommand
- AutoCleaner
- ChestStealer
- InventoryMove
- NoFall
- NoSlow
- InvalidPacket
- NoClip/Phase
Ban System:
Bypass Promission:
Permission | Introduce | More |
watchdogplus.bypass.fly | Bypass fly check | |
watchdogplus.bypass.speed | Bypass moving check | |
watchdogplus.bypass.fight | Bypass fight check | |
watchdogplus.bypass.others | Bypass all the others |
If you think some tests are defective and often pull back players, you can find "check.type.switch" in the configuration file,please change the "true" to "false",then you can close the lagback.For example, change "wad.check.survivefly.switch: true" to "false".
Command:
If you want to use the WatchDog administrator command, you must add yourself to the StaffList in the configuration file.WatchDog, a player with Staff, will relax the testing standards, just like Hypixel.
- /wad showbuffer (List suspicious players)
- /wad ban <Player> <Days> <Hours> (Ban a player through WatchDogPlus)
- /wad unban <Player> (Remove a player from ban list)
- /wad see <Player> (See a player's info)
- /wad banwave (See banwave list)
Start using WatchDogPlus now!
Download: https://cloudburstmc.org/resources/watchdogplus.620/download
WatchDogAPI(For developers)
Event:
- PlayerCheatEvent
It triggers when a player cheats.
- PlayerLagBackEvent
Triggered when a cheater is pulled back by
WatchDogPlus.
- PlayerAddViolationEvent
Triggered when a player's VL value increases.
- PlayerViolationChangeEvent
Triggered when a player's VL value changes.
How to use these events?
download the WatchDogDevelopmentKit.jar.
Watchdog development kit is not a plug-in. It can only help you compile in Java ide. Please don't install it into your NK server because it won't work
Download Link: https://cloudburstmc.org/resources/watchdogdevelopmentkit.629/
DemoPlugin Link: https://cloudburstmc.org/resources/exampleplugin-for-watchdogplus.630/
Course:
1.Take wa tchDogDevelopmentKit.jar Add to your ide dependency package
2.In your plug-in's plugin.yml Add :
YAML:
depend:
- WatchDogPlus
3.Write your plug-in and package it
4.Finally, put your plug-in into nukkit.
Demo:
Java:
public class WatchDogListener implements Listener{
@EventHandler
public void onPlayerCheatEvent(PlayerCheatEvent event)
{
Player player = event.getPlayer();
}
@EventHandler
public void onPlayerLagBack(PlayerLagBackEvent event)
{
Location from = event.getFrom();
Location to = event.getTo();
CheatType = event.getCause();
Player player = event.getPlayer();
//import net.fap.watchdog.*;
}
@EventHandler
public void onPlayerVLChangeEvent(PlayerViolationChangeEvent event)
{
double from = event.getFrom();
double to = event.getTo();
Player player = event.getPlayer();
}
}