Advertisement
Guest User

Untitled

a guest
Apr 2nd, 2015
237
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.22 KB | None | 0 0
  1. # ------------------------------ #
  2. #
  3. # TitleMotdAdvanced 3.0.0
  4. # (c) Maxim Van de Wynckel
  5. #
  6. # ------------------------------ #
  7.  
  8. # About: Minecraft 1.8 features a title text that is displayed
  9. # in the middle of the screen. This plugin utilizes that
  10. # title to display a permission specific MOTD with lots
  11. # of variables and animated text.
  12. #
  13. # This plugin supports variables from various plugins.
  14.  
  15. # Permissions: To use the title groups give them the permission
  16. # titlemotd.group.<group>
  17. # Make sure to remove them from the other groups
  18. # when giving a new permission.
  19. # For the failback groups:
  20. # titlemotd.groupfailback.<group>
  21.  
  22. # Commands: List of all commands
  23. # (ALIASES: titlemotdadvanced,title)
  24. # /titlemotd reload - Reload the configuration
  25. # /titlemotd help - Show more commands
  26.  
  27. # Variables: These variables can be used in the TEXT section
  28. # of both the header as the footer.
  29. #
  30. # {PLAYER} - Player name
  31. # {PLAYERNICK} - Player nickname
  32. # {SERVER} - Server name
  33. # {PLAYERCOUNT} - Server player count
  34. # {BUNGEECOUNT} - Bungee network player count
  35. # Lots more... See the spigot page (160+)
  36.  
  37. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  38. # GENERAL PLUGIN SETTINGS
  39. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  40.  
  41. ## Config version (DO NOT EDIT)
  42. config: 2
  43.  
  44. ## Language file
  45. lang: 'en'
  46.  
  47. ## Debug mode
  48. debug: false
  49.  
  50. ## Log to file
  51. log: true
  52.  
  53. ## Update checking
  54. update:
  55. check: true # RECOMMENDED YOU LEAVE THIS TRUE
  56.  
  57. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  58. # PLUGIN SPECIFIC SETTINGS
  59. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
  60.  
  61. # Message on first join. This message is shown for players that join
  62. # the server for the first time.
  63. firstjoin:
  64. default:
  65. # Fade in time in TICKS (20 ticks = 1 sec)
  66. # This is the fade in time for the first text in the row
  67. fadein: 0
  68. # Stay on screen time in TICKS
  69. # This is the stay on screen time for the last message
  70. staytime: 20
  71. # Fade out time in TICKS
  72. # This is the fade out time for the last message
  73. fadeout: 15
  74. # Delay time before starting the title. Recommended +- 10 ticks
  75. delay: 1
  76. # Title message
  77. title:
  78. text:
  79. - '<rainbow>W</rainbow>' # Start typewriter
  80. - '<rainbow>We</rainbow>'
  81. - '<rainbow>Wel</rainbow>'
  82. - '<rainbow>Welc</rainbow>'
  83. - '<rainbow>Welco</rainbow>'
  84. - '<rainbow>Welcom</rainbow>'
  85. - '<rainbow>Welcome</rainbow>'
  86. - '<rainbow>Welcom</rainbow>'
  87. - '<rainbow>Welco</rainbow>'
  88. - '<rainbow>Welc</rainbow>'
  89. - '<rainbow>Wel</rainbow>'
  90. - '<rainbow>We</rainbow>'
  91. - '<rainbow>W</rainbow>'
  92. - '<blink>T</blink>' # Start writing "To"
  93. - '<blink>To</blink>' # Let the "to" show a bit longer
  94. - '<blink>T</blink>'
  95. - '<scroll>&4&lWT</scroll>' # Start writing MVdW-Software
  96. - '<scroll>&4&lWTFa</scroll>'
  97. - '<scroll>&4&lWTFact</scroll>'
  98. - '<scroll>&4&lWTFactiv</scroll>'
  99. - '<scroll>&4&lWTFactive P</scroll>'
  100. - '<scroll>&4&lWTFactive Pri</scroll>'
  101. - '<scroll>&4&lWTFactive Prison</scroll>' # Staytime starts here (50)
  102. # Animation interval
  103. interval: 1
  104. # Subtitle message
  105. subtitle:
  106. text:
  107. - '&4&lWelcome Back {Player}!'
  108. - '&c&lVote For Us!'
  109. interval: 25
  110.  
  111. # Message on rejoin. This message is shown for players that have already
  112. # played on your server.
  113. rejoin:
  114. default:
  115. # Fade in time in TICKS (20 ticks = 1 sec)
  116. # This is the fade in time for the first text in the row
  117. fadein: 0
  118. # Stay on screen time in TICKS
  119. # This is the stay on screen time for the last message
  120. staytime: 20
  121. # Fade out time in TICKS
  122. # This is the fade out time for the last message
  123. fadeout: 15
  124. # Delay time before starting the title. Recommended +- 10 ticks
  125. delay: 1
  126. # Title message
  127. title:
  128. text:
  129. - '<rainbow>W</rainbow>' # Start typewriter
  130. - '<rainbow>We</rainbow>'
  131. - '<rainbow>Wel</rainbow>'
  132. - '<rainbow>Welc</rainbow>'
  133. - '<rainbow>Welco</rainbow>'
  134. - '<rainbow>Welcom</rainbow>'
  135. - '<rainbow>Welcome</rainbow>'
  136. - '<rainbow>Welcom</rainbow>'
  137. - '<rainbow>Welco</rainbow>'
  138. - '<rainbow>Welc</rainbow>'
  139. - '<rainbow>Wel</rainbow>'
  140. - '<rainbow>We</rainbow>'
  141. - '<rainbow>W</rainbow>'
  142. - '<blink>T</blink>' # Start writing "To"
  143. - '<blink>To</blink>' # Let the "to" show a bit longer
  144. - '<blink>T</blink>'
  145. - '<scroll>&4&lWT</scroll>' # Start writing MVdW-Software
  146. - '<scroll>&4&lWTFa</scroll>'
  147. - '<scroll>&4&lWTFact</scroll>'
  148. - '<scroll>&4&lWTFactiv</scroll>'
  149. - '<scroll>&4&lWTFactive P</scroll>'
  150. - '<scroll>&4&lWTFactive Pri</scroll>'
  151. - '<scroll>&4&lWTFactive Prison</scroll>' # Staytime starts here (100)
  152. # Animation interval
  153. interval: 1
  154. # Subtitle message
  155. subtitle:
  156. text:
  157. - '&4&lWelcome Back {Player}!'
  158. - '&c&lVote For Us!'
  159. # Animation interval
  160. interval: 25
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement