Skip to content

mariocr4ft/KarhuAPI

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

KarhuAPI

Karhu Anticheat Developer API

Please note that you need to drop KarhuAPI.jar into plugins folder for it to work.

Example below

public final class ExampleListener implements KarhuListener {

public ExampleListener() {
    KarhuAPI.getEventRegistry().addListener(this);
}

@Override
public void onEvent(KarhuEvent event) {

    if(event instanceof KarhuAlertEvent){
       final CheckData check = ((KarhuAlertEvent) event).getCheck();
       final Player player = ((KarhuAlertEvent) event).getPlayer();
    }

}

}

About

Karhu Anticheat Developer API

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 98.4%
  • Dockerfile 1.6%