Advertisement
Yopon

TitleManager Configg

Mar 22nd, 2018
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 11.11 KB | None | 0 0
  1. ############################################################
  2. # +------------------------------------------------------+ #
  3. # | Notes | #
  4. # +------------------------------------------------------+ #
  5. ############################################################
  6.  
  7. # Config comment style borrowed from the Essentials config.
  8. #
  9. # If you want to use special characters (ASCII, UTF-8 characters) in the config, you need to save the file as UTF-8.
  10. # - If you don't know how this is done, you can see the guide on the wiki: https://github.com/Puharesource/TitleManager/wiki/Unicode---UTF-8-characters-for-TitleManager
  11. #
  12. # Config errors, such as the plugin not loading or the config resetting can be fixed by ensuring that:
  13. # - No tabs are present: YAML only allows spaces.
  14. # - You have escaped all apostrophes or quotes in your text:
  15. # - If you surround your text with apostrophes like this 'don't', double all of your apostrophes like this: 'don''t'
  16. # - If you surround your text with quotes like this "Quote: "hello"", switch to apostrophes instead like this 'Quite: "hello"'.
  17. #
  18. # If you've got problems:
  19. # - Join the Discord server here: https://discord.gg/NwdtW2d
  20. # - Write a ticket on the Issue Tracker here: https://github.com/Puharesource/TitleManager/issues
  21. #
  22. # 1 second = 20 ticks
  23. #
  24. # For more information check: https://github.com/Puharesource/TitleManager/wiki
  25.  
  26. ############################################################
  27. # +------------------------------------------------------+ #
  28. # | General | #
  29. # +------------------------------------------------------+ #
  30. ############################################################
  31.  
  32. # Never change this value
  33. config-version: 4
  34.  
  35. # Toggles debug mode, which prints additional information when the plugin does something.
  36. debug: false
  37.  
  38. # Toggles whether or not all of the features of TitleManager will be toggled.
  39. using-config: true
  40.  
  41. # Toggles whether or not all of the BungeeCord functionality will be toggled.
  42. using-bungeecord: true
  43.  
  44. # (Feature only works on 1.7-1.8 Protocol Hack)
  45. # Toggles whether or not 1.7 players will see actionbar messages when they're holding an item.
  46. legacy-client-support: false
  47.  
  48. # Toggles whether or not the plugin should warn administrators if there's a new version out.
  49. check-for-updates: true
  50.  
  51. ############################################################
  52. # +------------------------------------------------------+ #
  53. # | Player List | #
  54. # +------------------------------------------------------+ #
  55. ############################################################
  56.  
  57. # Sets the header and footer of the player list. (Shown when you hold the TAB key.)
  58.  
  59. player-list:
  60.  
  61. # Toggles this feature.
  62. enabled: true
  63.  
  64. # Sets the header of the player list.
  65. #
  66. # Single line format.
  67. # header: 'My header text'
  68. #
  69. # Multiple line format.
  70. # header:
  71. # - 'My first line'
  72. # - 'My second line'
  73. # - 'My third line'
  74. header:
  75. - ''
  76. - '${shine:[0;2;0][0;25;0][0;25;0][&3;&b]Yopon Server}'
  77. - ''
  78.  
  79. # Sets the footer of the player list.
  80. #
  81. # Single line format.
  82. # footer: 'My footer text'
  83. #
  84. # Multiple line format.
  85. # footer:
  86. # - 'My first line'
  87. # - 'My second line'
  88. # - 'My third line'
  89. footer:
  90. - ''
  91. - '${right-to-left} &b%{BUNGEECORD-ONLINE}&7/&b%{max} &7Network Online Players ${left-to-right}
  92. - ''
  93. - '${right-to-left} &b%{online}&7/&b%{max} &7Online Players ${left-to-right}'
  94.  
  95. ############################################################
  96. # +------------------------------------------------------+ #
  97. # | Welcome Title | #
  98. # +------------------------------------------------------+ #
  99. ############################################################
  100.  
  101. # Sets the title that is sent to the player when they join the server.
  102.  
  103. welcome-title:
  104.  
  105. # Toggles this feature.
  106. enabled: false
  107.  
  108. # The title shown.
  109. title: 'Welcome to My Server'
  110.  
  111. # The subtitle shown.
  112. subtitle: 'Hope you enjoy your stay'
  113.  
  114. # The time it takes for the title to fade into the screen. (In ticks)
  115. fade-in: 20
  116.  
  117. # The time it takes for the title to stay on the screen. (In ticks)
  118. stay: 40
  119.  
  120. # The time it takes for the title to fade out of the screen. (In ticks)
  121. fade-out: 20
  122.  
  123. # The title shown when the player joins the server for the first time.
  124. first-join:
  125.  
  126. # The title shown.
  127. title: 'Welcome to My Server'
  128.  
  129. # The subtitle shown.
  130. subtitle: 'This is your first time!'
  131.  
  132. ############################################################
  133. # +------------------------------------------------------+ #
  134. # | Welcome Actionbar | #
  135. # +------------------------------------------------------+ #
  136. ############################################################
  137.  
  138. # Sets the actionbar that is sent to the player when they join the server.
  139.  
  140. welcome-actionbar:
  141.  
  142. # Toggles this feature.
  143. enabled: false
  144.  
  145. # The message shown.
  146. title: 'Welcome to My Server'
  147.  
  148. # The message shown when the player joins the server for the first time.
  149. first-join: 'Welcome to My Server, this is your first time!'
  150.  
  151. ############################################################
  152. # +------------------------------------------------------+ #
  153. # | Placeholders | #
  154. # +------------------------------------------------------+ #
  155. ############################################################
  156.  
  157. # Configures anything placeholder related.
  158.  
  159. placeholders:
  160.  
  161. # The format used by the balance placeholder.
  162. number-format:
  163.  
  164. # Toggles this feature.
  165. enabled: false
  166.  
  167. # The format used.
  168. format: '#,###.##'
  169.  
  170. # The format used by the server-time placeholder.
  171. # The format used can be found here: https://docs.oracle.com/javase/7/docs/api/java/text/SimpleDateFormat.html
  172. date-format: 'EEE, dd MMM yyyy HH:mm:ss z'
  173.  
  174. ############################################################
  175. # +------------------------------------------------------+ #
  176. # | Scoreboard | #
  177. # +------------------------------------------------------+ #
  178. ############################################################
  179.  
  180. # Sets the scoreboard (sidebar) that is sent to the player
  181.  
  182. scoreboard:
  183.  
  184. # Toggles this feature
  185. enabled: true
  186.  
  187. # The title displayed at the very top of the scoreboard
  188. # The title must consist of 32 or less characters (this includes color codes)
  189. title: '${shine:[0;2;0][0;25;0][0;25;0][&3&l;&b&l]Yopon Server}'
  190.  
  191. # The lines of the scoreboard (Maximum of 15 lines allowed)
  192. # Each line can only have 40 characters (this includes color codes)
  193. # Each line must also be unique, a work around would be to put a color code at the end your line, to make it unique.
  194. lines:
  195. - '&b&m----------------------------------'
  196. - '&b● &3&lYou Rank'
  197. - '&b%{group}'
  198. - '&r&r'
  199. - '&b● &3&lPlayer Name:'
  200. - '&b%{name}'
  201. - '&r'
  202. - '&b● &3&lPing:'%{group}
  203. - '&b%{ping} MS'
  204. - '&b&m----------------------------------&r'
  205.  
  206. ############################################################
  207. # +------------------------------------------------------+ #
  208. # | Announcer | #
  209. # +------------------------------------------------------+ #
  210. ############################################################
  211.  
  212. # Automatically send titles and/or actionbar messages to the players on the server.
  213.  
  214. announcer:
  215.  
  216. # Toggles this feature.
  217. enabled: false
  218.  
  219. # The announcements
  220. #
  221. # The format:
  222. #
  223. # announcement-name:
  224. # interval: 60 (Seconds, Default: 60)
  225. # timings:
  226. # fade-in: 20 (Ticks, Default: 20)
  227. # stay: 40 (Ticks, Default: 40)
  228. # fade-out: 20 (Ticks, Default: 20)
  229. # titles:
  230. # - 'First title' (The title sent)
  231. # - 'Second title\nSecond subtitle' (The next title sent, this time using \n to split the title and subtitle from each other)
  232. # actionbar:
  233. # - 'First actionbar' (The actionbar message sent)
  234. # - 'The next actionbar sent' (The next actionbar message sent)
  235. announcements:
  236. my-announcement:
  237. interval: 60
  238. timings:
  239. fade-in: 20
  240. stay: 40
  241. fade-out: 20
  242. titles:
  243. - '&aThis is the 1st title announcement\n&aThis is the subtitle'
  244. - '&bThis is the 2nd title announcement\n&bThis is the subtitle'
  245. actionbar:
  246. - '&aThis is the 1st actionbar announcement'
  247. - '&bThis is the 2nd actionbar announcement'
  248.  
  249. ############################################################
  250. # +------------------------------------------------------+ #
  251. # | Messages | #
  252. # +------------------------------------------------------+ #
  253. ############################################################
  254.  
  255. # Configures all of the messages sent to the users.
  256.  
  257. messages:
  258.  
  259. # The messages from the command /tm version
  260. command-version:
  261. description: 'Gives you the current running version of TitleManager'
  262. version: '&aThe server is running %version'
  263.  
  264. # The messages from the command /tm reload
  265. command-reload:
  266. description: 'Reloads TitleManager'
  267. reloaded: '&aTitleManager reloaded'
  268.  
  269. # The messages from the command /tm animations
  270. command-animations:
  271. description: 'Displays all loaded animations'
  272. format: '&aLoaded animations (&f%count&a): %animations'
  273. separator: '&f, &a'
  274.  
  275. # The messages from the command /tm scripts
  276. command-scripts:
  277. description: 'Displays all loaded scripts'
  278. format: '&aLoaded scripts (&f%count&a): %scripts'
  279. separator: '&f, &a'
  280.  
  281. # The messages from the command /tm broadcast
  282. command-broadcast:
  283. description: 'Broadcasts a title to the server'
  284. usage: '<title>|<title\nsubtitle>'
  285. title-sent: '&aYou have broadcasted the title "&r%title&a".'
  286. subtitle-sent: '&aYou have broadcasted the subtitle "&r%subtitle&a".'
  287. both-sent: '&aYou have broadcasted the titles "&r%title&a" "&r%subtitle&a".'
  288.  
  289. # The messages from the command /tm abroadcast
  290. command-abroadcast:
  291. description: 'Broadcasts an actionbar title to the server'
  292. usage: '<title>'
  293. sent: '&aYou have broadcasted the actionbar title "&r%title&a".'
  294.  
  295. # The messages from the command /tm message
  296. command-message:
  297. description: 'Sends a title to the specified player'
  298. usage: '<player> <title>|<title\nsubtitle>'
  299. title-sent: '&aYou have sent %player the title "&r%title&a".'
  300. subtitle-sent: '&aYou have sent %player the subtitle "&r%subtitle&a".'
  301. both-sent: '&aYou have sent %player the titles "&r%title&a" "&r%subtitle&a".'
  302. invalid-player: '&c%player is not a valid player.'
  303.  
  304. # The messages from the command /tm amessage
  305. command-amessage:
  306. description: 'Sends an actionbar title to the specified player'
  307. usage: '<player> <title>'
  308. sent: '&aYou have sent %player the actionbar title "&r%title&a".'
  309. invalid-player: '&c%player is not a valid player.'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement