๐Ÿ‘จโ€๐Ÿ’ปAPI Usage

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

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.

There is no maven repoistory for this project. You will need to add the jar to your project manually.

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