Advertisement
Guest User

AnimatedNames_CONFIG

a guest
Feb 26th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.71 KB | None | 0 0
  1. # ------------------------------ #
  2. #
  3. # AnimatedNames 3.5.0
  4. # (c) Maxim Van de Wynckel
  5. #
  6. # ------------------------------ #
  7.  
  8. # About: Everyone knows plugins that allow you to have your group name
  9. # in front of your name above your head. But this plugin does more then that
  10. # with over 180+ placeholders and more to come every update this plugin not only
  11. # allows placeholders in your name above your head but it also allows the name to
  12. # be animated.
  13.  
  14. # Permissions: To use the animatednames groups give them the permission
  15. # animatednames.group.<group> (ex. animatednames.group.default)
  16. # Make sure to remove them from the other groupsd
  17. # when giving a new permission.
  18.  
  19. # Commands: List of all commands
  20. # /animatednames reload - Reload the configuration
  21. # /animatednames help - See all commands
  22.  
  23. # Variables: These variables can be used in the TEXT section
  24. # of both the header as the footer.
  25. #
  26. # {PLAYER} - Player name
  27. # {PLAYERNICK} - Player nickname
  28. # {PREFIX} - Player prefix
  29. # And lots lots more (see Spigot Page) (400+)
  30.  
  31. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  32. # GENERAL PLUGIN SETTINGS
  33. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  34.  
  35. ## Config version (DO NOT EDIT)
  36. config: 2
  37.  
  38. ## Language file
  39. lang: 'en'
  40.  
  41. ## Debug mode
  42. debug: false
  43.  
  44. ## Log to file
  45. log: true
  46.  
  47. ## Update checking
  48. update:
  49. check: false # RECOMMENDED YOU LEAVE THIS TRUE
  50.  
  51. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  52. # PLUGIN SPECIFIC SETTINGS
  53. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  54.  
  55.  
  56. # Legacy mode. Disable this if you experience client crashes (bungeecord mostly)
  57. legacymode: true
  58.  
  59.  
  60. # WARNING: The recommended interval for this plugin
  61. # is calculated at 15 ticks (recommended 20 ticks)
  62. # You can experiment with lower ticks but this might
  63. # cause a slight flicker.
  64.  
  65.  
  66. groups:
  67. guerrier: # This is the default group. Add as many as you wish
  68. # Prefix in front of the player name above their head
  69. name-prefix:
  70. # A list to create animations
  71. text: # Text can be max 16 characters long (after placeholders are replaced)
  72. - '&7[&8G&7] &8'
  73. # Animation interval in ticks (20 ticks = 1 sec)
  74. interval: 100
  75.  
  76. administrateur:
  77. name-prefix:
  78. text:
  79. - '&7[&cA&7] &c'
  80. interval: 100
  81.  
  82. moderateur:
  83. name-prefix:
  84. text:
  85. - '&7[&2M&7] &2'
  86. interval: 100
  87.  
  88. modo-joueur:
  89. name-prefix:
  90. text:
  91. - '&7[&2M-J&7] &2'
  92. interval: 100
  93.  
  94. modo-test:
  95. name-prefix:
  96. text:
  97. - '&7[&aM-T&7] &a'
  98. interval: 100
  99.  
  100. youtubeur:
  101. name-prefix:
  102. text:
  103. - '&7[&5YT&7] &5'
  104. interval: 100
  105.  
  106. youtubeur+:
  107. name-prefix:
  108. text:
  109. - '&7[&5YT+&7] &5'
  110. interval: 100
  111.  
  112. chevalier:
  113. name-prefix:
  114. text:
  115. - '&7[&9C&7] &9'
  116. interval: 100
  117.  
  118. noble:
  119. name-prefix:
  120. text:
  121. - '&7[&bN&7] &b'
  122. interval: 100
  123.  
  124. seigneur:
  125. name-prefix:
  126. text:
  127. - '&7[&6S&7] &6'
  128. interval: 100
  129.  
  130. fondateur:
  131. name-prefix:
  132. text:
  133. - '&7[&cF&7] &c'
  134. interval: 100
  135.  
  136. fondateure:
  137. name-prefix:
  138. text:
  139. - '&7[&4F&7] &c'
  140. interval: 100
  141.  
  142.  
  143. # Text below your name above your head
  144. name-below:
  145. # Set to false to disable the scoreboard under name (REQUIRES RESTART)
  146. enabled: true
  147. # A list to create animations
  148. text: # Make sure that the placeholder is numeric!
  149. - '{HEALTH} &cā¤'
  150. # Animation interval in ticks (20 ticks = 1 sec)
  151. interval: 20
  152.  
  153. # Disabled worlds. Worlds in this list will not have
  154. # the score below or team names.
  155. disabled-worlds:
  156. - 'example_world'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement