Quick Start
Quick Start Setup
Quick Tips & Facts you may not know
- RealMotd loads messages dynamically, which means you don't need to reload server each time you change motd.txt file.
- RealMotd uses directory and file structure to tell which MOTD is for which player. No extra registration needed. Just create text files.
Choose your mode
Decide which mode you need. There are 3 options: DAILY,SINGLE,RANDOM.
Daily
Use daily if you need different MOTD for few special days or a lot of special days. There is also option to have special days for only few players.
Single
Use single if you don't need daily-specific MOTD. This will make MOTD equal for every days, but not for all players.
Random
Use random if you don't care which message will be displayed. Messages can be customized for groups of players.
Write some messages
RealMotd uses file/directory structure to tell which MOTD goes to which player. This is described HERE.
Use-cases
These use-cases cover brief setup to create MOTD in different situations
A) Global MOTD for whole server:
- Set group-specific and world-specific to false
- Set mode to SINGLE
- Create file /plugins/RealMotd/messages/motd.txt
B) Special MOTD for 26th September:
- Set group-specific and world-specific to false
- Set mode to DAILY
- Create /plugins/RealMotd/messages/motd.txt and write usual MOTD there.
- Create /plugins/RealMotd/messages/motd_9_26.txt and write MOTD for 26th September there. (you can create more days like this)
C) Random MOTD every day:
- Set group-specific and world-specific to false
- Set mode to RANDOM
- Create some text files in /plugins/RealMotd/messages/ - please note that these files must all end with .txt suffix.
D) Specific message for group called "admins" in world "survival_a":
- Set group-specific and world-specific to true
- Set mode to SINGLE
- Create file /plugins/RealMotd/groups.yml
- Copy this example into groups.yml and change it as you wish:
groups: admins: # name of your group members: # Every group has to contain a list called members. - admin1 # change these to usernames - admin2 # change these to usernames - admin3 # change these to usernames
- Create directory /plugins/RealMotd/messages/admins/
- Create directory /plugins/RealMotd/messages/admins/survival_a
- Create file /plugins/RealMotd/messages/admins/survival_a/motd.txt
- Write your MOTD for admins there