You can now run commands only for players with a specific permission
Code (YAML):
# all commands in this section will run for EVERY player that has the given permission commandsWithPerm: # for every unique key commands and perm have to be defined example: # list of commands. # %player% is replaced by the player name # %allOnline% is replaced by the player name # %perm% is replaced by the permission commands: -
"tell %player% &4Hey there %player% &1You have the permission %perm%" # the commands above are only dispatched for the player, if he has the defined permission perm: "example.perm"
You can customise the time a title is shown to the players
Code (YAML):
# %player% will be replaced with the players name title: # perm is optional. If empty, the title will be send to everyone perm: "example.perm" title: "&1Hi there %player%" subTitle: "It's now &4%time%&r!" # ticks (20 = 1s) the title is visible (default 10). 10 ticks fading-in and 10 ticks fading-out are hardcoded! ticksToDisplay: 20