Skip to content

Latest commit

 

History

History
36 lines (32 loc) · 1.33 KB

README.md

File metadata and controls

36 lines (32 loc) · 1.33 KB

responder

This spigotaddon/plugin helps developers to tell if a client has already received an packet at a given point in time. For example this can help in detecting cheaters. If you know how to avoid using concurrent things like CopyOnWriteArrayList, please create a pull request and fix. If errors occur, please create an issue :)

Requirements

this plugin has only been tested in 1.8.8 of spigot, if you have experience with another version you can tell us about it in an issue

Usage:

    @EventHandler
    public void onJoin(PlayerJoinEvent event) {
        Responder.getInstance().queue(event.getPlayer(), () -> {
            event.getPlayer().sendMessage("hello, your client responded!");
        });
    }

Maven

    <repositories>
        <repository>
            <id>inwave-responder</id>
            <url>https://maven.pkg.github.com/Inwave-Anticheat-Suite/responder</url>
        </repository>
    </repositories>

    <dependencies>
        <dependency>
            <groupId>de.inwave</groupId>
            <artifactId>responder</artifactId>
            <version>1.0.0</version>
        </dependency>
    </dependencies>