Advertisement
Hater_cz

Untitled

Oct 27th, 2019
34
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.37 KB | None | 0 0
  1. #=================================OOO====================================#
  2. # AutoMessager Configuration File #
  3. # Author, created by: montlikadani #
  4. #=================================OOO====================================#
  5. # [Default configuration] #
  6. # https://github.com/montlikadani/AutoMessager/blob/master/config.yml #
  7. # #
  8. # [Placeholders] #
  9. # https://github.com/montlikadani/AutoMessager/wiki/placeholders #
  10. # #
  11. # [Tips] #
  12. # - Use color coding '&' character, on this page: #
  13. # https://minecraft.gamepedia.com/Formatting_codes #
  14. # - If you find a bug, send here: #
  15. # https://github.com/montlikadani/AutoMessager/issues #
  16. # - Use symbols in messages, on this page: #
  17. # https://github.com/montlikadani/AutoMessager/wiki/Symbols #
  18. # - If the string is empty does not send the message. #
  19. #=================================OOO====================================#
  20.  
  21. # Enables broadcasting.
  22. enable-broadcast: true
  23.  
  24. # Enable to use PlaceholderAPI for the plugin.
  25. placeholderapi: false
  26.  
  27. # Use JSON message in file?
  28. # Usage: https://github.com/montlikadani/AutoMessager/wiki/File-usage#json-message
  29. use-json-message: false
  30.  
  31. # Used for the /am list command.
  32. show-max-row-in-one-page: 8
  33.  
  34. # In what worlds do NOT send a message?
  35. disabled-worlds:
  36. #- hubs
  37.  
  38. # The file that will contain the messages to broadcast.
  39. # Supports custom file types, such as .yml or .txt
  40. message-file: "messages.txt"
  41.  
  42. # The minimal amount of players that has to be online for a message to broadcast.
  43. # Set to 0 to disable this feature.
  44. min-players: 1
  45.  
  46. # Disable sending auto-messages when the player afk?
  47. # Required Essentials plugin!
  48. disable-messages-when-player-afk: false
  49.  
  50. # Placeholder formats
  51. placeholder-format:
  52. # %title% placeholder to show the title in a message.
  53. title: "&c[&aAuto&9Messager&c] "
  54.  
  55. # %suffix% placeholder to show the suffix in a message.
  56. suffix: ""
  57.  
  58. # Time settings
  59. time:
  60. # Time zones: https://www.mkyong.com/java/java-display-list-of-timezone-with-gmt/
  61. time-zone: "GMT0"
  62.  
  63. # Formats/examples: https://docs.oracle.com/javase/8/docs/api/java/text/SimpleDateFormat.html
  64. # Used for %server-time% placeholder.
  65. time-format:
  66. format: "mm:HH"
  67. # Used for %date% placeholder.
  68. date-format:
  69. format: "dd/MM/yyyy"
  70.  
  71. # Time interval for sending messages.
  72. time: 3
  73.  
  74. # Time settings
  75. # Variables: ticks, second (or sec), minute (or min), hour (or h)
  76. # Example: 20 ticks = 1 second; 1 second = 20 ticks; 1 minute = 60 second; 1 hour = 60 minute
  77. time-setup: min
  78.  
  79. # Want to broadcast the messages in ordered or randomly?
  80. # Minimum 2 message needed to get a random message!
  81. random: false
  82.  
  83. # Does the plugin send the sent auto-messages to console?
  84. broadcast-to-console: false
  85.  
  86. # Run commands after sending auto messages.
  87. run-commands: false
  88. # Usage: <commandSender>: <any command>
  89. commands:
  90. #- "player: baltop"
  91. #- "console: kit tools %player%"
  92.  
  93. # Sound playback when broadcasting.
  94. # All sounds:
  95. # 1.9+: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/Sound.html
  96. # 1.8.x: http://docs.codelanx.com/Bukkit/1.8/org/bukkit/Sound.html
  97. sound:
  98. enable: false
  99.  
  100. # Example: 1.9+: ENTITY_EXPERIENCE_ORB_PICKUP; 1.8: ORB_PICKUP
  101. # Usage: SOUND_NAME, volume, pitch
  102. type: ENTITY_EXPERIENCE_ORB_PICKUP, 10, 1
  103.  
  104. #=========================================#
  105. # Plugin Settings #
  106. #=========================================#
  107. # Check for updates.
  108. check-update: true
  109.  
  110. # Log plugin messages into console.
  111. logconsole: true
  112.  
  113. # Logging to file plugin messages.
  114. log-to-file: true
  115.  
  116. # Plugin enable/disable messages in console.
  117. # Use %newline% placeholder.
  118. plugin-enable: '&6[&4Auto&9Messager&6]&7 >&a The plugin successfully enabled&6 v2.1&a!'
  119. plugin-disable: '&6[&4Auto&9Messager&6]&7 >&c The plugin successfully disabled!'
  120.  
  121. # DO NOT CHANGE THIS!
  122. config-version: 5
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement