Advertisement
Guest User

AnimatedNames_CONFIG

a guest
Jan 16th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.80 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. # {&7(&8Speler&7)} - Player prefix
  28. # And lots lots more (see Spigot Page) (400+)
  29.  
  30. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  31. # GENERAL PLUGIN SETTINGS
  32. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  33.  
  34. ## Config version (DO NOT EDIT)
  35. config: 2
  36.  
  37. ## Language file
  38. lang: 'nl'
  39.  
  40. ## Debug mode
  41. debug: false
  42.  
  43. ## Log to file
  44. log: true
  45.  
  46. ## Update checking
  47. update:
  48. check: true # RECOMMENDED YOU LEAVE THIS TRUE
  49.  
  50. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  51. # PLUGIN SPECIFIC SETTINGS
  52. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  53.  
  54.  
  55. # Legacy mode. Disable this if you experience client crashes (bungeecord mostly)
  56. legacymode: true
  57.  
  58.  
  59. # WARNING: The recommended interval for this plugin
  60. # is calculated at 15 ticks (recommended 20 ticks)
  61. # You can experiment with lower ticks but this might
  62. # cause a slight flicker.
  63.  
  64.  
  65. groups:
  66. default: # This is the default group. Add as many as you wish
  67. # Prefix in front of the player name above their head
  68. name-prefix:
  69. # A list to create animations
  70. text: # Text can be max 16 characters long (after placeholders are replaced)
  71. - '&7(&8Speler&7) '
  72. # Animation interval in ticks (20 ticks = 1 sec)
  73. interval: 100
  74. # The display name above the player head (default {PLAYER})
  75. name-suffix:
  76. # A list to create animations
  77. text: # Text can be max 16 characters long (after placeholders are replaced)
  78. # Animation interval in ticks (20 ticks = 1 sec)
  79. interval: 100
  80. developer:
  81. default: # This is the default group. Add as many as you wish
  82. # Prefix in front of the player name above their head
  83. name-prefix:
  84. # A list to create animations
  85. text: # Text can be max 16 characters long (after placeholders are replaced)
  86. - '&7(&aDeveloper&7) '
  87. # Animation interval in ticks (20 ticks = 1 sec)
  88. interval: 100
  89. # The display name above the player head (default {PLAYER})
  90. name-suffix:
  91. # A list to create animations
  92. text: # Text can be max 16 characters long (after placeholders are replaced)
  93. # Animation interval in ticks (20 ticks = 1 sec)
  94. interval: 100
  95. owner:
  96. default: # This is the default group. Add as many as you wish
  97. # Prefix in front of the player name above their head
  98. name-prefix:
  99. # A list to create animations
  100. text: # Text can be max 16 characters long (after placeholders are replaced)
  101. - '&7(&4Owner&7) '
  102. # Animation interval in ticks (20 ticks = 1 sec)
  103. interval: 100
  104. # The display name above the player head (default {PLAYER})
  105. name-suffix:
  106. # A list to create animations
  107. text: # Text can be max 16 characters long (after placeholders are replaced)
  108. # Animation interval in ticks (20 ticks = 1 sec)
  109. interval: 100
  110. helper:
  111. default: # This is the default group. Add as many as you wish
  112. # Prefix in front of the player name above their head
  113. name-prefix:
  114. # A list to create animations
  115. text: # Text can be max 16 characters long (after placeholders are replaced)
  116. - '&7(&cHelper&7) '
  117. # Animation interval in ticks (20 ticks = 1 sec)
  118. interval: 100
  119. # The display name above the player head (default {PLAYER})
  120. name-suffix:
  121. # A list to create animations
  122. text: # Text can be max 16 characters long (after placeholders are replaced)
  123. # Animation interval in ticks (20 ticks = 1 sec)
  124. interval: 100
  125.  
  126. # Text below your name above your head
  127. name-below:
  128. # Set to false to disable the scoreboard under name (REQUIRES RESTART)
  129. enabled: true
  130. # A list to create animations
  131. text: # Make sure that the placeholder is numeric!
  132. # Animation interval in ticks (20 ticks = 1 sec)
  133. interval: 20
  134.  
  135. # Disabled worlds. Worlds in this list will not have
  136. # the score below or team names.
  137. disabled-worlds:
  138. - 'example_world'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement