NESS Anti-Cheat Reloaded is
a recoded version of the old NESS, developed by MSWS(
old NESS).
This Anti-Cheat aims to block a lot of movement and combat cheats using
simple and
strong methods.
Although tested on Spigot, NESS
should work with most forks.
Some developers made a build of NESS Reloaded with a backdoor. When downloading and trying the AntiCheat, please download the builds from reliable sources (the Official Discord Server or this page).
Please don't use reviews to report bug/false positive/bypass. Use Discord or GitHub Issue!
Also I am working on 3.0 Version, you can see the progress here: https://github.com/herobrine99dan/NESS-Reloaded/projects/1
Permissions:
ness.bypass.[check]> Will allow you to bypass a specific check (Ex: ness.bypass.killaura or ness.bypass.fly);
ness.bypass.*>Will allow you to bypass all the checks (Bypass permissions are calculated when a player joins);
ness.notify> Will allow you to get anti-cheat notifications;
ness.notify.hacks>Will allow you to get anti-cheat notifications;
ness.notify.developer> Will allow you to get some developer notifications;
ness.command.[command]> Will allow you to execute that command;
ness.command.*> Will allow you to execute all NESS-Reloaded commands.
Commands:
/ness vl <player> (ness.command.vl)> Will allow you to view violations of a player
/ness clear <player> (ness.command.clear)> Will allow you to clear the violations of a player
/ness version (ness.command.version)> Will allow you to view the plugin version
/ness reload (ness.command.reload)> Will allow you to reload the configuration
/ness report <player> <reason> (ness.command.report)> Will allow you to report a player for a cheat
/ness debug (ness.command.debug)> Will allow you to enable / disable the debug mode
API
Flag Event:
Code (Java):
public
void onViolation
(PlayerFlagEvent e
)
{
AnticheatPlayer player
= e.
getPlayer
(
)
;
AnticheatCheck check
= e.
getCheck
(
)
;
e.
setCancelled
(
true
)
;
}
General API
The general api usage can be found in the
wiki!
You can find an example of the usage of the API in the
Github Repository!