Added the option to require a monetary cost when players try to participate in a tournament.
This is done by adding the participation-cost: 240 to the tournament configuration file.
A new configurable message has also been added to the config.yml file.
Simply adding in the new path should make it work if you are updating from an older version.
Code:message: not-enough-money: "&4ERROR:&7 You do not have enough vault currency to participate in this tournament."![]()
Added the ability to set the item amount for the display items for each tournaments.
Just add the display-amount: 1 option to the tournament file.
Added the EXCLUDE subtype for block break, block place, and entity kill tournament types.
using EXCLUDE will ignore entries in the list and will count anything not part of the list.
example:
This will ignore Stone, Grass, Dirt, and Cobblestone from being counted towards the tournament score.Code:blockbreak: type: EXCLUDE list: - STONE - GRASS - DIRT - COBBLESTONE
Added PlaceholderAPI support for all plugin messages.
Added 9 Placeholders:
Code:Requires Player: %xlt_tournamentid_position% %xlt_tournamentid_score% %xlt_tournamentid_type% Doesn't Require Player: %xlt_tournamentid_top1name% %xlt_tournamentid_top2name% %xlt_tournamentid_top3name% %xlt_tournamentid_top1score% %xlt_tournamentid_top2score% %xlt_tournamentid_top3score%
Fixed an oversight on my part where the commands run when a player participates in a tournament being run async.
Added the BLOCKS_TRAVELLED tournament type, it tracks the number of blocks a player has traveled on the X and Z axis. Ignores blocks traveled on the Y-axis.
