Guest User

AnimatedNames_CONFIG

a guest
Sep 30th, 2016
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.03 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. default:
  105. name-prefix:
  106. text:
  107. - '{PREFIX} {PLAYERNICK}'
  108. interval: 100
  109. example-admin:
  110. name-prefix:
  111. text:
  112. - '&f[&b&lJudge&f] {PLAYERNICK}'
  113. interval: 100
  114. BuilderPerms:
  115. name-prefix:
  116. text:
  117. - '&f[&6&lBuilder&f] {PLAYERNICK}'
  118. interval: 100
  119. AdminPerms:
  120. name-prefix:
  121. text:
  122. - '&f[&4&lAdmin&f] {PLAYERNICK}'
  123. interval: 100
  124.  
  125. # Text below your name above your head
  126. name-below:
  127. # Set to false to disable the scoreboard under name (REQUIRES RESTART)
  128. enabled: false
  129. # A list to create animations
  130. text: # Make sure that the placeholder is numeric!
  131. - '{HEALTH}&cHealth'
  132. - '{STAT_TIMESPLAYED}&6Times played'
  133. # Animation interval in ticks (20 ticks = 1 sec)
  134. interval: 20
Add Comment
Please, Sign In to add comment