Advertisement
Guest User

AnimatedNames_CONFIG

a guest
Sep 1st, 2015
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.87 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: 3
  37.  
  38. ## Language file
  39. lang: 'de'
  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.  
  65. # Legacy mode. Disable this if you experience client crashes (bungeecord mostly)
  66. legacymode: true
  67.  
  68.  
  69. # WARNING: The recommended interval for this plugin
  70. # is calculated at 15 ticks (recommended 20 ticks)
  71. # You can experiment with lower ticks but this might
  72. # cause a slight flicker.
  73.  
  74.  
  75. groups:
  76. default: # This is the default group. Add as many as you wish
  77. # Prefix in front of the player name above their head
  78. name-prefix:
  79. # A list to create animations
  80. text: # Text can be max 16 characters long (after placeholders are replaced)
  81. - '&2S&apieler | '
  82. # Animation interval in ticks (20 ticks = 1 sec)
  83. interval: 100
  84. # The display name above the player head (default {PLAYER})
  85. name-suffix:
  86. # A list to create animations
  87. text: # Text can be max 16 characters long (after placeholders are replaced)
  88. - ''
  89. # Animation interval in ticks (20 ticks = 1 sec)
  90. interval: 100
  91. owner: # This is the default group. Add as many as you wish
  92. # Prefix in front of the player name above their head
  93. name-prefix:
  94. # A list to create animations
  95. text: # Text can be max 16 characters long (after placeholders are replaced)
  96. - '&4O&cwner | '
  97. # Animation interval in ticks (20 ticks = 1 sec)
  98. interval: 100
  99. # The display name above the player head (default {PLAYER})
  100. name-suffix:
  101. # A list to create animations
  102. text: # Text can be max 16 characters long (after placeholders are replaced)
  103. - ''
  104. # Animation interval in ticks (20 ticks = 1 sec)
  105. interval: 100
  106.  
  107. # Text below your name above your head
  108. name-below:
  109. # Set to false to disable the scoreboard under name (REQUIRES RESTART)
  110. enabled: false
  111. # A list to create animations
  112. text: # Make sure that the placeholder is numeric!
  113. - '{HEALTH}&cHealth'
  114. - '{STAT_TIMESPLAYED}&6Times played'
  115. # Animation interval in ticks (20 ticks = 1 sec)
  116. interval: 20
  117.  
  118. # Disabled worlds. Worlds in this list will not have
  119. # the score below or team names.
  120. disabled-worlds:
  121. - 'example_world'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement