LitTournamentsAPI api =LitTournamentsAPI.getInstance();// Get the tournaments that uses this objectiveList<Tournament> tournaments =api.getTournamentHandler().getTournaments(BlockBreakTournament.class);// Or you can get a tournament with a id// Argumant is the name of the yml fileTournament tournament =api.getTournamentHandler().getTournament("blockBreak");// It will return null, if there is no tournament with that id.if (tournament ==null) return; // Add points to playerapi.getPointHandler().addPoint(UUID.randomUUID(), tournament,10);