Advertisement
Guest User

FeatherBoard_CONFIG

a guest
Feb 6th, 2016
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.61 KB | None | 0 0
  1. # ------------------------------ #
  2. #
  3. # FeatherBoard 1.9.0
  4. # Runs like a feather on your server
  5. # (c) Maxim Van de Wynckel
  6. #
  7. # ------------------------------ #
  8. # Permissions: To use the action groups give them the permission
  9. # featherboard.group.<group>
  10. # Make sure to remove them from the other groups
  11. # when giving a new permission.
  12.  
  13. # Variables: These variables can be used in the TEXT section
  14. # of both the header as the footer.
  15. #
  16. # {PLAYER} - Player name
  17. # {PLAYERNICK} - Player nickname
  18. # {SERVER} - Server name
  19. # {PLAYERCOUNT} - Server player count
  20. # {BUNGEECOUNT} - Bungee network player count
  21. # {LASTPLAYER} - Player Time
  22. # 850+ more ... see spigot page
  23.  
  24. # Formatting: These are formatting tags allowing you to format the animations
  25. # or placeholders.
  26. #
  27. # Substring: This allows you to split a word (even a placeholder) in parts
  28. # example: <substring begin=0 end=3>Hello World</substring> = Hel
  29. # usage: This can be used to split placeholders when creating a typewriter
  30. # or to split the colors in a placeholder.
  31. #
  32. # Scroll: This creates a scrolling animation of the text inside it. It accepts
  33. # two arguments (the length and space between scrolls).
  34. # example: <scroll width=20 spaces=20>&2This is a &atest</scroll>
  35. #
  36. # PLENTY MORE! See spigot page
  37.  
  38. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  39. # GENERAL PLUGIN SETTINGS
  40. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  41.  
  42. ## Config version (DO NOT EDIT)
  43. config: 1
  44.  
  45. ## Language file
  46. lang: 'en'
  47.  
  48. ## Debug mode
  49. debug: false
  50.  
  51. ## Log to file
  52. log: true
  53.  
  54. ## Update checking
  55. update:
  56. check: true # RECOMMENDED YOU LEAVE THIS TRUE
  57.  
  58. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  59. # PLUGIN SPECIFIC SETTINGS
  60. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  61.  
  62. # Tweaks to increase performance (Use at own risk)
  63. tweaks:
  64. # This option does not send scoreboard remove packets
  65. # to the client on quit. This can increase performance on servers
  66. # where players quit a lot (hubs, ...)
  67. #
  68. # Removal of the plugin requires you to manually delete the scoreboard.dat in the worlds
  69. # /data folder
  70. #
  71. # Enabling this can cause the scoreboard not to work anymore. Use at your own risk
  72. keepScoreboardOnQuit: false
  73.  
  74.  
  75. # Anti Flicker will use a new engine that will allow you to use fast animations
  76. # without any flicker. This is an EXPERIMENTAL feature and it asked to post bugs
  77. # and problems that only occur with this option enabled in a Spigot private message.
  78. # Using this option shortens the maximum length for 1.8 servers to around 26~28 chars
  79. # but this is an increase for 1.7 clients (that default only have 16 characters)
  80. # IF YOU ARE HAVING PROBLEMS. TRY TO TURN THIS OFF FIRST
  81. antiflicker: true
  82.  
  83. # A list of different scoreboards
  84. boards:
  85. default:
  86. title: # The first element in the group will be title.
  87. # We will show the server name animated, with a glow effect every 20 sec
  88. text:
  89. - '&7&m--&c Tarz&7PVP &7&m--'
  90. player-label: # You can add elements to the group and name them like you want
  91. # Lets make a static label
  92. text:
  93. - '&7» &fYou'
  94. interval: 100 # The interval is not important since its just 1 static text.
  95. # Do you want to randomize the animation frames?
  96. random: false
  97. player: # Under the label we will show the actual player name
  98. text:
  99. - '{playernick}'
  100. interval: 100
  101. # Do you want to randomize the animation frames?
  102. random: false
  103. spacer-player: # This is a spacer an empty line
  104. text:
  105. - ''
  106. interval: 100
  107. # Do you want to randomize the animation frames?
  108. random: false
  109. time:
  110. text:
  111. - '&7» &fTime'
  112. interval: 100
  113. # Do you want to randomize the animation frames?
  114. random: false
  115. news:
  116. # Lets create some animated news
  117. # News is something you need to write quick
  118. # and usually you don't want to spend ages on creating
  119. # some cool effect. That is why FeatherBoard features
  120. # several presets you can use.
  121. text:
  122. - '&7{lastplayed}'
  123. interval: 1 # When using preset effects. The interval will apply to that effect
  124. # Do you want to randomize the animation frames?
  125. random: false
  126. spacer-news: # Another spacer (empty line)
  127. text:
  128. - '&e{time}'
  129. interval: 100
  130. random: false
  131. bosluk: # Another spacer (empty line) again you don't need to call this 'spacer'
  132. text:
  133. - ''
  134. interval: 100
  135. random: false
  136. server-label: # Server status label
  137. text:
  138. - '&7» &fPing'
  139. interval: 100
  140. random: false
  141. server: # Server status (ram and tps)
  142. text:
  143. - '&6Ping&8: &e{ping}'
  144. interval: 1
  145. random: false
  146. bosluk2: # Another spacer (empty line) again you don't need to call this 'spacer'
  147. text:
  148. - ''
  149. interval: 100
  150. random: false
  151. moneytimesplayed-label: #Switch between site, times played and health
  152. text:
  153. - '&7» &fPlayers'
  154. interval: 100
  155. random: false
  156. moneytimesplayed: #Switch between site, times played and health
  157. text:
  158. - '&6Online&8: &e{PLAYERCOUNT}'
  159. interval: 100
  160. random: false
  161. titttle: # The first element in the group will be title.
  162. # We will show the server name animated, with a glow effect every 20 sec
  163. text:
  164. - '&c&lTarz&7&lPVP'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement