Advertisement
Guest User

AnimatedNames_CONFIG

a guest
Oct 25th, 2016
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.92 KB | None | 0 0
  1. # ------------------------------ #
  2. #
  3. # AnimatedNames 5
  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: 4
  37.  
  38. ## Language file
  39. lang: 'en'
  40.  
  41. ## Debug mode
  42. debug: false
  43.  
  44. ## Log to file
  45. log:
  46. enabled: true
  47. # Reset log on startup
  48. reset: true
  49.  
  50. ## Update checking
  51. update:
  52. check: true # RECOMMENDED YOU LEAVE THIS TRUE
  53.  
  54. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  55. # PLUGIN SPECIFIC SETTINGS
  56. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  57.  
  58. # Placeholder settings
  59. placeholder:
  60. # logs the memory usage of placeholders on startup
  61. log-memory: false
  62. # Clear unused placeholders that are not enabled.
  63. clear-unused: true
  64. # Config cache only
  65. # This will only use placeholders in the config
  66. # HOWEVER: IT WILL BREAK ALL CUSTOM PLACEHOLDERS!
  67. # IT WILL ALSO PREVENT ANY HOOKS (PlaceholderAPI)
  68. config-cache: false
  69.  
  70. tweaks:
  71. # Legacy mode. Disable this if you experience client crashes (bungeecord mostly)
  72. # Disabling will however use the build in scoreboard system what can cause conflicts
  73. # (White names, etc...)
  74. legacymode: true
  75. # If you have issues with non-legacy mode try this option. The option is more CPU intensive,
  76. # but it is meant to detect problems
  77. synchronized: false
  78. # Setting this to true will keep tab names untouched
  79. # Useful for those who do not want to change tab names but
  80. # only the names above.
  81. # NOTE: This shrinks the tab name by 2 chars
  82. # so if you have a long name it becomes shorter
  83. # This may also break nicknames in the tab
  84. white-tabnames: false
  85.  
  86. # Disabled worlds. Worlds in this list will not have
  87. # the score below or team names.
  88. disabled-worlds:
  89. - 'example_world'
  90.  
  91.  
  92. # WARNING: The recommended interval for this plugin
  93. # is calculated at 15 ticks (recommended 20 ticks)
  94. # You can experiment with lower ticks but this might
  95. # cause a slight flicker.
  96.  
  97.  
  98. # AnimatedNames groups
  99. # THESE ARE NOT PERMISSION GROUPS. THE NAMES DO NOT NEED TO MATCH
  100. # YOUR PERMISSION GROUP.
  101. # An AnimatedNames group is a group you assign to a player (or permission group)
  102. # using animatednames.group.<GROUPNAME>
  103. groups:
  104. Miembro: # This is the default group. Add as many as you wish
  105. # Prefix in front of the player name above their head
  106. name-prefix:
  107. # A list to create animations
  108. text: # Text can be max 16 characters long (after placeholders are replaced)
  109. # {PREFIX} will be replaced with the PERMISSION prefix (Vault)
  110. # Meaning if your permission prefix is "[Mod]" it will show this
  111. - '&8[&7M&8] &7'
  112. # Animation interval in ticks (20 ticks = 1 sec)
  113. interval: 100
  114. # The display name above the player head (default {PLAYER})
  115. name-suffix:
  116. # A list to create animations
  117. text: # Text can be max 16 characters long (after placeholders are replaced)
  118. - '{SUFFIX}'
  119. # Animation interval in ticks (20 ticks = 1 sec)
  120. interval: 100
  121. Villager:
  122. name-prefix:
  123. # A list to create animations
  124. text: # Text can be max 16 characters long (after placeholders are replaced)
  125. - '&3[&eV&3] &e'
  126. # Animation interval in ticks (20 ticks = 1 sec)
  127. interval: 100
  128. Knight:
  129. name-prefix:
  130. # A list to create animations
  131. text: # Text can be max 16 characters long (after placeholders are replaced)
  132. - '&3[&6K&3] &6'
  133. # Animation interval in ticks (20 ticks = 1 sec)
  134. interval: 100
  135. King:
  136. name-prefix:
  137. # A list to create animations
  138. text: # Text can be max 16 characters long (after placeholders are replaced)
  139. - '&3[&9K&3] &9'
  140. # Animation interval in ticks (20 ticks = 1 sec)
  141. interval: 100
  142. God:
  143. name-prefix:
  144. # A list to create animations
  145. text: # Text can be max 16 characters long (after placeholders are replaced)
  146. - '&3[&bG&3] &b'
  147. # Animation interval in ticks (20 ticks = 1 sec)
  148. interval: 100
  149. Overseer:
  150. name-prefix:
  151. # A list to create animations
  152. text: # Text can be max 16 characters long (after placeholders are replaced)
  153. - '&3[&dO&3] &d'
  154. # Animation interval in ticks (20 ticks = 1 sec)
  155. interval: 100
  156. Zeus:
  157. name-prefix:
  158. # A list to create animations
  159. text: # Text can be max 16 characters long (after placeholders are replaced)
  160. - '&8[&bZ&8] &b'
  161. # Animation interval in ticks (20 ticks = 1 sec)
  162. interval: 100
  163. EnderGod:
  164. name-prefix:
  165. # A list to create animations
  166. text: # Text can be max 16 characters long (after placeholders are replaced)
  167. - '&3[&5EG&3] &5'
  168. # Animation interval in ticks (20 ticks = 1 sec)
  169. interval: 100
  170. WitherKing:
  171. name-prefix:
  172. # A list to create animations
  173. text: # Text can be max 16 characters long (after placeholders are replaced)
  174. - '&4[&8W&3K&4] &3'
  175. # Animation interval in ticks (20 ticks = 1 sec)
  176. interval: 100
  177. MOD:
  178. name-prefix:
  179. # A list to create animations
  180. text: # Text can be max 16 characters long (after placeholders are replaced)
  181. - '&4[&cMOD&4] &c'
  182. # Animation interval in ticks (20 ticks = 1 sec)
  183. interval: 100
  184. Administrador:
  185. name-prefix:
  186. # A list to create animations
  187. text: # Text can be max 16 characters long (after placeholders are replaced)
  188. - '&4[&cA&4] &c'
  189. # Animation interval in ticks (20 ticks = 1 sec)
  190. interval: 100
  191.  
  192. # Text below your name above your head
  193. name-below:
  194. # Set to false to disable the scoreboard under name (REQUIRES RESTART)
  195. enabled: true
  196. # A list to create animations
  197. text: # Make sure that the placeholder is numeric!
  198. - '{HEALTH}&cā¤'
  199. # Animation interval in ticks (20 ticks = 1 sec)
  200. interval: 20
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement