๐จโ๐ปAPI Usage
This page shows you how to use the API that the plugin currently offers.
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