πŸ‘¨β€πŸ’»API Usage

This page shows you how to use the API that the plugin currently offers.

circle-info

I currently do not intend to focus on adding an intensive API. I will add things overtime, when I have the spare time to do so. Please do not request it as it will be ignored.

Support will not be given to help you implement the API.

circle-exclamation

Available Events

TournamentStartEvent

This event is fired when a tournament starts.

getName()

TournamentEndEvent

This event is fired when a tournament ends.

getName()

PyroFishCatchEvent

This event is fired when catching a custom fish.

getTier()getFishNumber()isHotSpot()

Example Usage:

@EventHandler
public void onTournamentStart(TournamentStartEvent event) {
  String tournamentName = event.getName();
}

Last updated