Advertisement
Guest User

ScoreHud config

a guest
Feb 19th, 2020
268
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 2.62 KB | None | 0 0
  1. ---
  2. #   _____                    _   _           _
  3. #  /  ___|                  | | | |         | |
  4. #  \ `--.  ___ ___  _ __ ___| |_| |_   _  __| |
  5. #   `--. \/ __/ _ \| '__/ _ \  _  | | | |/ _` |
  6. #  /\__/ / (_| (_) | | |  __/ | | | |_| | (_| |
  7. #  \____/ \___\___/|_|  \___\_| |_/\__,_|\__,_|
  8. #
  9. # ScoreHud, a Scoreboard plugin for PocketMine-MP
  10. # Copyright (c) 2018 JackMD  < https://github.com/JackMD >
  11. #
  12. # Discord: JackMD#3717
  13. # Twitter: JackMTaylor_
  14. #
  15. # This software is distributed under "GNU General Public License v3.0".
  16. # This license allows you to use it and/or modify it but you are not at
  17. # all allowed to sell this plugin at any cost. If found doing so the
  18. # necessary action required would be taken.
  19. #
  20. # ScoreHud is distributed in the hope that it will be useful,
  21. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  22. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  23. # GNU General Public License v3.0 for more details.
  24. #
  25. # You should have received a copy of the GNU General Public License v3.0
  26. # along with this program. If not, see
  27. # <https://opensource.org/licenses/GPL-3.0>.
  28. #  -----------------------------------------------------------------------
  29.  
  30. # DO NOT EDIT THIS VALUE.
  31. # ONLY FOR INTERNAL USE.
  32. config-version: 8
  33.  
  34. # Set this to true if you want to enable per world scoreboards.
  35. # Then edit scoreboards key in data.yml to suit your needs.
  36. per-world-scoreboards: false
  37.  
  38. # If you have per-world-scoreboards enabled and you want to display a default scoreboard for a world
  39. # whose scoreboard you didn't set in data.yml under scoreboards key then set this to true.
  40. use-default-score-lines: false
  41.  
  42. # The amount in seconds after which the Scoreboard would update.
  43. # Increase this value if your server seems to lag.
  44. # Default: 3 seconds.
  45. update-interval: 3
  46.  
  47. # Set the timezone for {time} to your own preference.
  48. # false - Follow the server/machine time without changes.
  49. # For a list of timezones you can visit: https://secure.php.net/manual/timezones.php
  50. # Example: "America/New_York" - This will set NewYork's time.
  51. timezone: Europe/Kiev
  52.  
  53. # Set the time format that you want to display. Will only work if you add {time} in score-lines in data.yml.
  54. # H - hours
  55. # i - minutes
  56. # s - seconds
  57. # You can fine more information regarding it here: http://php.net/manual/function.date.php
  58. time-format: "H:i"
  59.  
  60. # Set the date format that you want to display. Will only work if you add {date} in score-lines in data.yml.
  61. # d - date (01-31)
  62. # m - month (01-12)
  63. # Y - year (yyyy)
  64. # You can fine more information regarding it here: http://php.net/manual/function.date.php
  65. date-format: "d-m-Y"
  66. ...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement