Skip to content

dedicatedmemers/Kraken

 
 

Repository files navigation

Kraken

Light-weight object-oriented Tab-API for the Bukkit/Spigot API

###Installation

####Option 1: Maven repository Coming soon ####Option 2: JAR

  1. Download the latest release.
  2. Add the JAR to your project. + For Eclipse users, see here. + For IntelliJ users, see here.

Instantiate Kraken in your onEnable:

private Kraken kraken;

public void onEnable() {
//All your other stuff
this.kraken = new Kraken(this);
}

###Example Usage

@EventHandler
public void onPlayerTabCreateEvent(PlayerTabCreateEvent event) {
    PlayerTab playerTab = event.getPlayerTab();

    playerTab.getByPosition(0, 0).setText("Static Text");
}

####Result result

About

Light-weight object-oriented Tab-API for the Bukkit/Spigot API

Resources

License

Unknown, MIT licenses found

Licenses found

Unknown
LICENSE
MIT
LICENSE-original

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 100.0%