Advertisement
Guest User

AnimatedNames_CONFIG

a guest
Jul 23rd, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.95 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. - '{PREFIX}'
  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.  
  83. # Text below your name above your head
  84. name-below:
  85. # Set to false to disable the scoreboard under name (REQUIRES RESTART)
  86. enabled: true
  87. # A list to create animations
  88. text: # Make sure that the placeholder is numeric!
  89. # Animation interval in ticks (20 ticks = 1 sec)
  90. interval: 20
  91.  
  92. # Disabled worlds. Worlds in this list will not have
  93. # the score below or team names.
  94. disabled-worlds:
  95. - ' '
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement