Advertisement
Guest User

Untitled

a guest
Nov 17th, 2019
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.86 KB | None | 0 0
  1. # ------------------------------ #
  2. #
  3. # AnimatedNames 7
  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) (5000+)
  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.  
  48. ## Update checking
  49. update:
  50. check: true # RECOMMENDED YOU LEAVE THIS TRUE
  51.  
  52. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  53. # PLUGIN SPECIFIC SETTINGS
  54. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  55.  
  56. # Placeholder settings
  57. placeholder:
  58. # Force install all placeholders (NOT RECOMMENDED)
  59. force-all: false
  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. # If you have issues with non-legacy mode try this option. The option is more CPU intensive,
  72. # but it is meant to detect problems
  73. synchronized: false
  74. # Setting this to true will keep tab names untouched
  75. # Useful for those who do not want to change tab names but
  76. # only the names above.
  77. # NOTE: This shrinks the tab name by 2 chars
  78. # so if you have a long name it becomes shorter
  79. # This may also break nicknames in the tab
  80. white-tabnames: false
  81.  
  82.  
  83. # WARNING: The recommended interval for this plugin
  84. # is calculated at 15 ticks (recommended 20 ticks)
  85. # You can experiment with lower ticks but this might
  86. # cause a slight flicker.
  87.  
  88.  
  89. # AnimatedNames groups
  90. # THESE ARE NOT PERMISSION GROUPS. THE NAMES DO NOT NEED TO MATCH
  91. # YOUR PERMISSION GROUP.
  92. # An AnimatedNames group is a group you assign to a player (or permission group)
  93. # using animatednames.group.<GROUPNAME>
  94. groups:
  95. default: # This is the default group. Add as many as you wish
  96. priority: 1 # A higher priority means it is sorted higher
  97. # Prefix in front of the player name above their head
  98. default:
  99. # A list to create animations
  100. frames:
  101. # {PREFIX} will be replaced with the PERMISSION prefix (Vault)
  102. # Meaning if your permission prefix is "[Mod]" it will show this
  103. - '{luckperms_prefix}'
  104. # Animation interval in ticks (20 ticks = 1 sec)
  105. interval: 100
  106. # The display name above the player head (default {PLAYER})
  107. name-suffix:
  108. # A list to create animations
  109. frames:
  110. -
  111. # Animation interval in ticks (20 ticks = 1 sec)
  112. interval: 100
  113. Lily:
  114. priority: 2 # A higher priority means it is sorted higher
  115. name-prefix:
  116. # A list to create animations
  117. frames:
  118. - '{luckperms_prefix}'
  119. # Animation interval in ticks (20 ticks = 1 sec)
  120. interval: 100
  121. # The display name above the player head (default {PLAYER})
  122. name-suffix:
  123. # A list to create animations
  124. frames:
  125. -
  126. # Animation interval in ticks (20 ticks = 1 sec)
  127. interval: 100
  128. Gaura:
  129. priority: 3 # A higher priority means it is sorted higher
  130. name-prefix:
  131. # A list to create animations
  132. frames:
  133. - '{luckperms_prefix}'
  134. # Animation interval in ticks (20 ticks = 1 sec)
  135. interval: 100
  136. # The display name above the player head (default {PLAYER})
  137. name-suffix:
  138. # A list to create animations
  139. frames:
  140. -
  141. # Animation interval in ticks (20 ticks = 1 sec)
  142. interval: 100
  143. Bluebell:
  144. priority: 4 # A higher priority means it is sorted higher
  145. name-prefix:
  146. # A list to create animations
  147. frames:
  148. - '{luckperms_prefix}'
  149. # Animation interval in ticks (20 ticks = 1 sec)
  150. interval: 100
  151. name-suffix:
  152. # A list to create animations
  153. frames:
  154. -
  155. # Animation interval in ticks (20 ticks = 1 sec)
  156. interval: 100
  157. Tulip:
  158. priority: 5 # A higher priority means it is sorted higher
  159. name-prefix:
  160. # A list to create animations
  161. frames:
  162. - '{luckperms_prefix}'
  163. # Animation interval in ticks (20 ticks = 1 sec)
  164. interval: 100
  165. name-suffix:
  166. # A list to create animations
  167. frames:
  168. -
  169. # Animation interval in ticks (20 ticks = 1 sec)
  170. interval: 100
  171. Apprentice:
  172. priority: 6 # A higher priority means it is sorted higher
  173. name-prefix:
  174. # A list to create animations
  175. frames:
  176. - '{luckperms_prefix}'
  177. # Animation interval in ticks (20 ticks = 1 sec)
  178. interval: 100
  179. name-suffix:
  180. # A list to create animations
  181. frames:
  182. -
  183. # Animation interval in ticks (20 ticks = 1 sec)
  184. interval: 100
  185. Helper:
  186. priority: 7 # A higher priority means it is sorted higher
  187. name-prefix:
  188. # A list to create animations
  189. frames:
  190. - '{luckperms_prefix}'
  191. # Animation interval in ticks (20 ticks = 1 sec)
  192. interval: 100
  193. name-suffix:
  194. # A list to create animations
  195. frames:
  196. -
  197. # Animation interval in ticks (20 ticks = 1 sec)
  198. interval: 100
  199. Builder:
  200. priority: 8 # A higher priority means it is sorted higher
  201. name-prefix:
  202. # A list to create animations
  203. frames:
  204. - '{luckperms_prefix}'
  205. # Animation interval in ticks (20 ticks = 1 sec)
  206. interval: 100
  207. name-suffix:
  208. # A list to create animations
  209. frames:
  210. -
  211. # Animation interval in ticks (20 ticks = 1 sec)
  212. interval: 100
  213. Moderator:
  214. priority: 9 # A higher priority means it is sorted higher
  215. name-prefix:
  216. # A list to create animations
  217. frames:
  218. - '{luckperms_prefix}'
  219. # Animation interval in ticks (20 ticks = 1 sec)
  220. interval: 100
  221. name-suffix:
  222. # A list to create animations
  223. frames:
  224. -
  225. # Animation interval in ticks (20 ticks = 1 sec)
  226. interval: 100
  227. MasterBuilder:
  228. priority: 10 # A higher priority means it is sorted higher
  229. name-prefix:
  230. # A list to create animations
  231. frames:
  232. - '{luckperms_prefix}'
  233. # Animation interval in ticks (20 ticks = 1 sec)
  234. interval: 100
  235. name-suffix:
  236. # A list to create animations
  237. frames:
  238. -
  239. # Animation interval in ticks (20 ticks = 1 sec)
  240. interval: 100
  241. Admin:
  242. priority: 11 # A higher priority means it is sorted higher
  243. name-prefix:
  244. # A list to create animations
  245. frames:
  246. - '{luckperms_prefix}'
  247. # Animation interval in ticks (20 ticks = 1 sec)
  248. interval: 100
  249. name-suffix:
  250. # A list to create animations
  251. frames:
  252. -
  253. # Animation interval in ticks (20 ticks = 1 sec)
  254. interval: 100
  255. Owner:
  256. priority: 12 # A higher priority means it is sorted higher
  257. name-prefix:
  258. # A list to create animations
  259. frames:
  260. - '{luckperms_prefix}'
  261. # Animation interval in ticks (20 ticks = 1 sec)
  262. interval: 100
  263. name-suffix:
  264. # A list to create animations
  265. frames:
  266. -
  267. # Animation interval in ticks (20 ticks = 1 sec)
  268. interval: 100
  269.  
  270. # Text below your name above your head
  271. name-below:
  272. # Set to false to disable the name under name (REQUIRES RESTART)
  273. enabled: true
  274. # A list to create animations
  275. # Make sure that the placeholder is numeric!
  276. # You have to put a number or numeric placeholder in the beginning
  277. # or else you will get a "0" in front.
  278. # This also means you can't have colors in front. The number is a set
  279. # color you can't change.
  280. frames:
  281. - '{HEALTH}&cHealth'
  282. - '{STAT_TIMESPLAYED}&6Times played'
  283. # Animation interval in ticks (20 ticks = 1 sec)
  284. interval: 200
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement