Tiny client and server pack for daxe's community modrinth.com/project/daxe
at main 64 lines 2.6 kB view raw
1# MiniMOTD Main Configuration 2 3# The list of MOTDs to display 4# 5# - Supported placeholders: <online_players>, <max_players> 6# - Putting more than one will cause one to be randomly chosen each refresh 7motds=[ 8 { 9 line1="<gradient:#3e8fb0:#9ccfd8>daxecraft" 10 line2="" 11 # Set the icon to use with this MOTD 12 # Either use 'random' to randomly choose an icon, or use the name 13 # of a file in the icons folder (excluding the '.png' extension) 14 # ex: icon="myIconFile" 15 icon=daxecraft 16 } 17] 18# Enable MOTD-related features 19motd-enabled=true 20# Enable server list icon related features 21icon-enabled=true 22player-count-settings { 23 # Enable modification of the max player count 24 max-players-enabled=false 25 # Changes the Max Players value 26 max-players=69 27 # Setting this to true will disable the hover text showing online player usernames 28 disable-player-list-hover=false 29 # Setting this to true will disable the player list hover (same as 'disable-player-list-hover'), 30 # but will also cause the player count to appear as '???' 31 hide-player-count=false 32 # Settings for the fake player count feature 33 fake-players { 34 # Enable fake player count feature 35 fake-players-enabled=false 36 # Modes: add, constant, minimum, random, percent 37 # 38 # - add: This many fake players will be added 39 # ex: fake-players="3" 40 # - constant: A constant value for the player count 41 # ex: fake-players="=42" 42 # - minimum: The minimum bound of the player count 43 # ex: fake-players="7+" 44 # - random: A random number of fake players in this range will be added 45 # ex: fake-players="3:6" 46 # - percent: The player count will be inflated by this much, rounding up 47 # ex: fake-players="25%" 48 fake-players="25%" 49 } 50 # Changes the Max Players to be X more than the online players 51 # ex: x=3 -> 16/19 players online. 52 just-x-more-settings { 53 # Enable this feature 54 just-x-more-enabled=false 55 x-value=3 56 } 57 # Should the displayed online player count be allowed to exceed the displayed maximum player count? 58 # If false, the online player count will be capped at the maximum player count 59 allow-exceeding-maximum=false 60 # The list of server names that affect player counts/listing. 61 # Only applicable when running the plugin on a proxy (Velocity or Waterfall/Bungeecord). 62 # When set to an empty list, the default count & list as determined by the proxy will be used. 63 servers=[] 64}