This release adds two of the most requested features!
- Player statistics. Player stats such as wins, losses and tasks finished are now stored and persisted.
- Leaderboards. You can display top players now! They only support wins for the time being. More statistics will be added upon request.
- Bungee mode. You can turn your server into a single-arena server with Bungee mode.
Bungee settings:
Code (YAML):
# Bungee-mode settings.
#
# Bungee-mode will turn your server into a single-arena server. Players
# who join the server will automatically be put in the arena, and if a
# player attempts to join a server where the game is active, they will
# be denied.
Bungee
:
# Whether is the Bungee mode enabled or not
Enabled
: false
# Displayed on the disconnect screen when no arena
# is available for the player to join.
NoAvailableArena
:
"&cYou can't join now!"
# The bungee server to warp to
WarpToServer
:
"lobby"
# The motd displayed on the server list depending on the arena
# stage
Motd:
Waiting
:
"&a >> Waiting <<"
Countdown
:
"&b >> Countdown <<"
Active
:
"&c >> Game Active <<"
Regenerating
:
"&2 >> Regenerating <<"
Disabled
:
"&7 >> Disabled <<"
Not_Setup
:
"&7 >> Arena needs setup <<"
Leaderboard settings:
Code (YAML):
# Leaderboard settings
Leaderboards
:
# Are leaderboards enabled?
#
# Default value: true
Enabled
: true
# The format, in which PlaceholderAPI will replace the placeholder with.
#
# This is used in the 'format' PAPI request (see below).
#
# PAPI expression are formed like the follows:
# %ollozsays_<statistic>_<position>_<request>%
#
# Example: %ollozsays_top_wins_1_name%
# Example: %ollozsays_top_wins_1_format%
#
# There are 4 requests through PAPI:
# ==
# name: The name of the top #n in the stat
# pos: The position of the top #n in the stat
# score: The score of the top #n in the stat
# format: The format below (to allow more than 1 thing in a single request)
# ==
#
# Inner placeholders:
# {pos} - The player position
# {player_name} - The player name
# {score} - The player's score in this stat
Format
:
"&e{pos}. &b{player_name} &7- &e{wins}"