Advertisement
Guest User

AnimatedNames_CONFIG

a guest
Oct 20th, 2016
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.25 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: true # 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. default: # 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. - '&8[&5&lMod&8] {prefixcolor}'
  73. # Animation interval in ticks (20 ticks = 1 sec)
  74. interval: 100
  75. # The display name above the player head (default {PLAYER})
  76. name-suffix:
  77. # A list to create animations
  78. text: # Text can be max 16 characters long (after placeholders are replaced)
  79. - '{SUFFIX}'
  80. # Animation interval in ticks (20 ticks = 1 sec)
  81. interval: 100
  82. Moderator: # This is the default group. Add as many as you wish
  83. # Prefix in front of the player name above their head
  84. name-prefix:
  85. # A list to create animations
  86. text: # Text can be max 16 characters long (after placeholders are replaced)
  87. - '{prefixcolor}'
  88. # Animation interval in ticks (20 ticks = 1 sec)
  89. interval: 100
  90. # The display name above the player head (default {PLAYER})
  91. name-suffix:
  92. # A list to create animations
  93. text: # Text can be max 16 characters long (after placeholders are replaced)
  94. - '{SUFFIX}'
  95. # Animation interval in ticks (20 ticks = 1 sec)
  96. interval: 100
  97. Owner: # This is the default group. Add as many as you wish
  98. # Prefix in front of the player name above their head
  99. name-prefix:
  100. # A list to create animations
  101. text: # Text can be max 16 characters long (after placeholders are replaced)
  102. - {PREFIX}'
  103. # Animation interval in ticks (20 ticks = 1 sec)
  104. interval: 100
  105. # The display name above the player head (default {PLAYER})
  106. name-suffix:
  107. # A list to create animations
  108. text: # Text can be max 16 characters long (after placeholders are replaced)
  109. - '{SUFFIX}'
  110. # Animation interval in ticks (20 ticks = 1 sec)
  111. interval: 100
  112.  
  113. # Text below your name above your head
  114. name-below:
  115. # Set to false to disable the scoreboard under name (REQUIRES RESTART)
  116. enabled: false
  117. # A list to create animations
  118. text: # Make sure that the placeholder is numeric!
  119. # Animation interval in ticks (20 ticks = 1 sec)
  120. interval: 20
  121.  
  122. # Disabled worlds. Worlds in this list will not have
  123. # the score below or team names.
  124. disabled-worlds:
  125. - 'example_world'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement