-
Notifications
You must be signed in to change notification settings - Fork 13
Signs
There are three different types of signs: join signs, leave signs and statistic signs.
Join signs allow you to easily join an arena by simply clicking on the sign. You can create a join sign like this:
[buildinggame]
join
<arena>
Where <arena> is replaced with the aren name which players will be joining.
In the config.yml you can set signs
> glass-colors-enabled
to true
to show stained glass behind the signs, where the color would be synced with the state the arena is in. The colors can be changed in the config.yml in signs
> glass-colors
.
The text shown on the sign can be changed in messages.yml in signs
> join
. Four different placeholders are available for you to use:
-
%arena%
will be replaced by the name of the arena this join sign links to. -
%players%
will be replaced by the number of players that are currently in the arena. -
%max-players%
will be replaced by the maximum amount of players that this arena may have. -
%status%
will be replaced by the current game state. The exact representation of the game state can be changed in the messages.yml invariables
>join-sign
>status
.
Leave signs allow you to leave the game you're currently in by clicking on the sign. You can create a leave sign like this:
[buildinggame]
leave
Statistic signs will show you the player and their statistic for specific statistic type and rank. You can create one like this:
[buildinggame]
stat
<type>
<rank>
Where type is the type of statistic to display and rank the rank to show. So 1 would be the person in first place.
Spectate signs will let you spectate the specified player when you click on them. You can create one like this:
[buildinggame]
spectate
<playername>
All signs are saved in the signs.yml file.