Advertisement
Guest User

Untitled

a guest
Jan 25th, 2015
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.29 KB | None | 0 0
  1. # ------------------------------ #
  2. #
  3. # FeatherBoard 1.4.0
  4. # Runs like a feather on your server
  5. # (c) Maxim Van de Wynckel
  6. #
  7. # ------------------------------ #
  8.  
  9. # About: Minecraft 1.8 features a text above the action bar
  10. # This plugin will allow you to create a customizable text
  11. # for the actionbar.
  12. #
  13. # This plugin supports variables.
  14.  
  15. # Permissions: To use the action groups give them the permission
  16. # featherboard.group.<group>
  17. # Make sure to remove them from the other groups
  18. # when giving a new permission.
  19.  
  20. # Variables: These variables can be used in the TEXT section
  21. # of both the header as the footer.
  22. #
  23. # {PLAYER} - Player name
  24. # {PLAYERNICK} - Player nickname
  25. # {SERVER} - Server name
  26. # {PLAYERCOUNT} - Server player count
  27. # {BUNGEECOUNT} - Bungee network player count
  28. # 450+ more ... see spigot page
  29.  
  30. # Formatting: These are formatting tags allowing you to format the animations
  31. # or placeholders.
  32. #
  33. # Substring: This allows you to split a word (even a placeholder) in parts
  34. # example: <substring begin=0 end=3>Hello World</substring> = Hel
  35. # usage: This can be used to split placeholders when creating a typewriter
  36. # or to split the colors in a placeholder.
  37. #
  38. # Scroll: This creates a scrolling animation of the text inside it. It accepts
  39. # two arguments (the length and space between scrolls).
  40. # example: <scroll width=20 spaces=20>&2This is a &atest</scroll>
  41. #
  42. # PLENTY MORE! See spigot page
  43.  
  44. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  45. # GENERAL PLUGIN SETTINGS
  46. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  47.  
  48. ## Config version (DO NOT EDIT)
  49. config: 1
  50.  
  51. ## Language file
  52. lang: 'en'
  53.  
  54. ## Debug mode
  55. debug: false
  56.  
  57. ## Log to file
  58. log: true
  59.  
  60. ## Update checking
  61. update:
  62. check: true # RECOMMENDED YOU LEAVE THIS TRUE
  63.  
  64. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  65. # PLUGIN SPECIFIC SETTINGS
  66. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  67.  
  68. # Anti Flicker will use a new engine that will allow you to use fast animations
  69. # without any flicker. This is an EXPERIMENTAL feature and it asked to post bugs
  70. # and problems that only occur with this option enabled in a Spigot private message.
  71. # Using this option shortens the maximum length for 1.8 servers to around 26~28 chars
  72. # but this is an increase for 1.7 clients (that default only have 16 characters)
  73. # IF YOU ARE HAVING PROBLEMS. TRY TO TURN THIS OFF FIRST
  74. antiflicker: true
  75.  
  76. # A list of different scoreboards
  77. boards:
  78. default:
  79. title: # The first element in the group will be title.
  80. # We will show the server name animated, with a glow effect every 20 sec
  81. text:
  82. - ' <delay times=20>&f&lAVENTURACRAFT</delay> '
  83. - ' &6&lA&f&lVENTURACRAFT '
  84. - ' &e&lA&f&lVENTURACRAFT '
  85. - ' &e&lA&6&lV&f&lENTURACRAFT '
  86. - ' &e&lAV&6&lE&f&lNTURACRAFT '
  87. - ' &e&lAVE&6&lN&f&lTURACRAFT '
  88. - ' &e&lAVEN&6&lT&f&lURACRAFT '
  89. - ' &e&lAVENT&6&lU&f&lRACRAFT '
  90. - ' &e&lAVENTU&6&lR&f&lACRAFT '
  91. - ' &e&lAVENTUR&6&lA&f&lCRAFT '
  92. - ' &e&lAVENTURA&6&lC&f&lRAFT '
  93. - ' &e&lAVENTURAC&6&lR&f&lAFT '
  94. - ' &e&lAVENTURACR&6&lA&f&lFT '
  95. - ' &e&lAVENTURACRA&6&lF&f&lT '
  96. - ' &f&lAVENTURACRAF&6&lT '
  97. - ' &e&lAVENTURACRAFT '
  98. - ' &e&lAVENTURACRAFT '
  99. - ' &e&lAVENTURACRAFT '
  100. # Interval the animation loops in ticks (20 ticks = 1 sec)
  101. # If you need waiting intervals look at the DELAY placeholder
  102. interval: 3
  103. # Do you want to randomize the animation frames?
  104. random: false
  105. spacer-title: # Another spacer (empty line) again you don't need to call this 'spacer'
  106. text:
  107. - ''
  108. interval: 100
  109. random: false
  110. player-label: # You can add elements to the group and name them like you want
  111. # Lets make a static label
  112. text:
  113. - '&f&l{PLAYER}'
  114. interval: 100 # The interval is not important since its just 1 static text.
  115. # Do you want to randomize the animation frames?
  116. random: false
  117. spacer-player: # This is a spacer an empty line
  118. text:
  119. - ''
  120. interval: 100
  121. # Do you want to randomize the animation frames?
  122. random: false
  123. gemas-titulo:
  124. text:
  125. - '&e&lRegistrate:'
  126. interval: 100
  127. random: false
  128. gemas-stats: #Switch between site, times played and health
  129. text:
  130. - '/register (clave)'
  131. interval: 100
  132. random: false
  133. spacer-gemas: # Another spacer (empty line)
  134. text:
  135. - '&e&lLogeate:'
  136. interval: 100
  137. random: false
  138. spacer-players: # Another spacer (empty line)
  139. text:
  140. - '/login (clave)'
  141. interval: 100
  142. random: false
  143. spacer-gemas: # Another spacer (empty line)
  144. text:
  145. - '&e&lCambia Tu Clave:'
  146. interval: 100
  147. random: false
  148. spacer-gemas: # Another spacer (empty line)
  149. text:
  150. - '/changepw (Anterior) (Nueva)'
  151. players-stats: #Switch between site, times played and health
  152. text:
  153. - 'Usa una clave segura'
  154. - 'Nunca compartas tu clave'
  155. interval: 100
  156. random: false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement