Skip to content

v1.2.0: 1.15.1 support, rewritten config, new Exact mode

Compare
Choose a tag to compare
@Andre601 Andre601 released this 19 Dec 21:36
· 552 commits to master since this release

The config was rewritten! Please let the plugin make a new config, or update your current one to the below shown example!

+ 1.15.1 support (Protocol 575)
+ New "Exact" mode. In this mode will the plugin deny all clients that do not use the same version as defined.

New default config.yml

##########################################################
#       ____ _    ______                                 #
#      / __ \ |  / / __ \            OneVersionRemake    #
#     / / / / | / / /_/ /                by Andre_601    #
#    / /_/ /| |/ / _, _/                                 #
#    \____/ |___/_/ |_|                                  #
#                                                        #
#    GitHub:                                             #
#        https://github.com/Andre601/OneVersionRemake    #
#                                                        #
#    Spigot:                                             #
#        https://spigotmc.org/resources/71727/           #
##########################################################
#
# Setting for what protocol version should be used and how OVR should handle joining players.
#
Protocol:
  #
  # Set if players need to have this exact protocol version to join the network.
  # Setting this to false (default) will allow players with newer versions to join your network.
  # For example may players with 1.15 join your network, if the set protocol corresponds to 1.14
  #
  Exact: false
  #
  # The protocol version that should be used.
  # Depending on the above options would players need to either have the same version when joining, or at least a
  # newer one.
  #
  # A list of all supported protocols for the plugin can be found here:
  #   https://github.com/andre601/OneVersionRemake/wiki/Supported-Protocols
  #
  Version: -1

#
# The various messages you can change.
#
Messages:
  #
  # This message would be shown where usually the current player count is displayed.
  # Color and formatting codes are supported.
  #
  # Set this to an empty String ('') to disable.
  #
  # Placeholder:
  #   {version} ->  Displays the version a player needs to join
  #                 The displayed version is set through the above Protocol number (e.g. 573 becomes 1.15)
  #
  # PlayerCount: '' # Uncomment this and comment out the below option, to disable this.
  PlayerCount: '&cUnsupported client! Use {version} instead!'
  #
  # Message shown when the player gets kicked while using an unsupported version.
  # Color and formatting codes are supported.
  #
  # Placeholder:
  #   {version} ->  Displays the version a player needs to join
  #                 The displayed version is set through the above Protocol number (e.g. 573 becomes 1.15)
  #
  Kick:
  - '&cYou are using an unsupported version of Minecraft!'
  - '&cPlease change your version to {version} and try again.'
  #
  # This text is shown when the cursor of the player hovers over the player count, which normally displays the current
  # online players.
  # Color and formatting codes are supported.
  #
  # Change this to "Hover: []" to disable
  #
  # Placeholder:
  #   {version} ->  Displays the version a player needs to join
  #                 The displayed version is set through the above Protocol number (e.g. 573 becomes 1.15)
  #
  # Hover: [] # uncomment this and comment out the below lines to disable this option.
  Hover:
  - '&cYou are using an unsupported version of Minecraft!'
  - '&cPlease change your version to {version}.'