Advertisement
Guest User

Untitled

a guest
Jan 20th, 2017
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.02 KB | None | 0 0
  1. # ------------------------------ #
  2. #
  3. # DynamicSigns 3
  4. # (c) Maxim Van de Wynckel
  5. #
  6. # ------------------------------ #
  7.  
  8. # Variables: These variables can be used in the TEXT section
  9. # of both the header as the footer.
  10. #
  11. # {PLAYER} - Player name
  12. # {PLAYERNICK} - Player nickname
  13. # {SERVER} - Server name
  14. # {PLAYERCOUNT} - Server player count
  15. # {BUNGEECOUNT} - Bungee network player count
  16. # 4000+ more ... see spigot page
  17.  
  18. # Formatting: These are formatting tags allowing you to format the animations
  19. # or placeholders.
  20. #
  21. # Substring: This allows you to split a word (even a placeholder) in parts
  22. # example: <substring begin=0 end=3>Hello World</substring> = Hel
  23. # usage: This can be used to split placeholders when creating a typewriter
  24. # or to split the colors in a placeholder.
  25. #
  26. # Scroll: This creates a scrolling animation of the text inside it. It accepts
  27. # two arguments (the length and space between scrolls).
  28. # example: <scroll width=20 spaces=20>&2This is a &atest</scroll>
  29. #
  30. # PLENTY MORE! See spigot page
  31.  
  32. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  33. # GENERAL PLUGIN SETTINGS
  34. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  35.  
  36. ## Config version (DO NOT EDIT)
  37. config: 3
  38.  
  39. ## Language file
  40. lang: 'en'
  41.  
  42. ## Debug mode
  43. debug: false
  44.  
  45. ## Log to file
  46. log:
  47. enabled: true
  48. # Reset log on startup
  49. reset: true
  50.  
  51. ## Update checking
  52. update:
  53. check: true # RECOMMENDED YOU LEAVE THIS TRUE
  54.  
  55. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  56. # PLUGIN SPECIFIC SETTINGS
  57. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  58.  
  59.  
  60. ## IMPORTANT:
  61. ## 1) When you have questions/problems send me a PM first
  62. ## 2) It is advised to keep your interval above 15 when you have a lot
  63. ## of signs. This is also (just like the tweaks) something you have to
  64. ## experiment with and see what gives you the best performance.
  65. ## 3) The plugin won't cause server lagg. The only lagg that can occur
  66. ## is system lagg due to having fast intervals (packets that flood clients)
  67.  
  68. ## -- Following tweaks depend on the usage and performance of the server/clients ---
  69. ## If you have a server where you join right next to animated signs (hub,..) it is advised to
  70. ## add a bit of a delay before sending the sign updates.
  71. ## If you place signs near warps ,.. it is advised to increase the delay of teleporting a bit.
  72. ## These values are things you need to experiment with, they are not 'optimal' out of the box
  73. ## Test it like default first, then lower/increase it.
  74. ## ---------------------------------------------------------------------------------
  75.  
  76. # Sign update distance. This is the distance the sign updates the changes to the player
  77. # decrease this if you have a lot of signs at the same location or if the intervals
  78. # are too fast.
  79. update-distance: 7
  80.  
  81. # Join delay. This is the delay used to wait until sending the signs. This
  82. # delay is used to prevent "Unknown Sign at ...." errors when chunks are not loaded
  83. # for a specific player (in ticks)
  84. join-delay: 25
  85.  
  86. # Teleport delay. This is the delay used to wait until sending the signs. This
  87. # delay is used to prevent "Unknown Sign at ...." errors when chunks are not loaded
  88. # for a specific player (in ticks)
  89. teleport-delay: 25
  90.  
  91. # Respawn delay. This is the delay used to wait until sending the signs. This
  92. # delay is used to prevent "Unknown Sign at ...." errors when chunks are not loaded
  93. # for a specific player (in ticks)
  94. respawn-delay: 25
  95.  
  96.  
  97. # Placeholder settings
  98. placeholder:
  99. # logs the memory usage of placeholders on startup
  100. log-memory: false
  101. # Clear unused placeholders that are not enabled.
  102. clear-unused: true
  103. # Config cache only
  104. # This will only use placeholders in the config
  105. # HOWEVER: IT WILL BREAK ALL CUSTOM PLACEHOLDERS!
  106. # IT WILL ALSO PREVENT ANY HOOKS (PlaceholderAPI)
  107. config-cache: false
  108.  
  109.  
  110. # Animated sign lines
  111. lines:
  112. sellall1: #[dsign:sellall1]
  113. text:
  114. - '&0&m+-------------+'
  115. interval: 4
  116. random: false
  117. commands:
  118. sellall2: #[dsign:sellall2]
  119. text:
  120. - '&b&lSell All'
  121. - '&f&lS&b&lell All'
  122. - '&b&lS&f&le&b&lll All'
  123. - '&b&lSe&f&ll&b&ll All'
  124. - '&b&lSel&f&ll&b&l All'
  125. - '&b&lSell &f&lA&b&lll'
  126. - '&b&lSell A&f&ll&b&ll'
  127. - '&b&lSell Al&f&ll'
  128. interval: 2
  129. random: false
  130. commands:
  131.  
  132. sellall3: #[dsign:sellall3]
  133. text:
  134. - '&8&oRight Click '
  135. - '&8&oRight Click '
  136. - '&8&oRight Click '
  137. - '&8&oRight Click '
  138. - '&8&oRight Click '
  139. - '&8&oRight Click '
  140. - '&8&oRight Click '
  141. - '&8&oRight Click'
  142. - ' &8&oRight Click'
  143. - ' &8&oRight Click'
  144. - ' &8&oRight Click'
  145. - ' &8&oRight Click'
  146. - ' &8&oRight Click'
  147. - ' &8&oRight Click'
  148. - ' &8&oRight Click'
  149. - ' &8&oRight Click'
  150. - ' &8&oRight Click'
  151. - '&8&oRight Click'
  152. interval: 2
  153. random: false
  154. commands:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement