Skip to content
ELgamer edited this page Jul 28, 2023 · 2 revisions

Tips are an optional feature, on a config-specified frequency a chat message will appear with a tip. The list of tips have to be setup by the server admin and are defined per role, so a builder can have a different set of tips than a guest, as you'd expect them to be interested in different information. Tips can also be toggled, this allows players to switch them off if they don't believe they have any added value, or if they find that they get in the way.

Toggle

Tips can be toggled on/off by the player using the /tips command, it also has the aliases /tipstoggle and /toggletips. This setting is saved into the database, this means is carried over between all servers and between sessions.

Setup

All tips must be specified in the plugin configuration. In the plugins/Network/ directory a new directory tips/ will be created if tips are enabled in the config.yml. In this folder you can add lists of tips, there is an example file to show you how the file should be formatted, it's very simple, 1 line per tip. The file must then be saved with the name of the role is corresponds to. This allows it to display to all players of that role.

Config

In the config.yml you can enable tips and set the frequency. This can be found under:

chat:
  tips:
    enabled: true (can be true or false)
    frequency: 5 (the time in minutes between each tip)

Clone this wiki locally