Advertisement
lipe123

Untitled

Aug 24th, 2013
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.76 KB | None | 0 0
  1. #MCDocs 14 by Tazzernator / Andrew Tajsic
  2. #Configuration File.
  3. #For detailed assistance please visit: http://dev.bukkit.org/server-mods/mcdocs/
  4.  
  5. #Here we determine which command will show which file.
  6. commands:
  7. /motd:
  8. file: 'motd.txt'
  9. groups:
  10. guest: 'motd-guest.txt'
  11. Admin: 'motd-admin.txt'
  12. Mod: 'motd-moderator.txt'
  13. /news:
  14. file: 'news.txt'
  15. /oldnews:
  16. file: 'oldnews.txt'
  17. /dwarfforge:
  18. file: 'dwarfforge.txt'
  19. /contest:
  20. file: 'contest.txt'
  21. /about:
  22. file: 'http://tazzernator.com/files/bukkit/plugins/MCDocs/about.txt'
  23. /rules:
  24. file: 'rules.txt'
  25. /vote:
  26. file: 'vote.txt'
  27. /ts:
  28. file: 'ts.txt'
  29. /tut:
  30. file: 'tut.txt'
  31. /donate:
  32. file: 'donate.txt'
  33.  
  34. #Show a MOTD at login? Yes: true | No: false
  35. motd-enabled: true
  36.  
  37. #Here we determine which files are shown when a player joins the server.
  38. motd:
  39. file: 'motd.txt'
  40. groups:
  41. Admin: 'motd-admin.txt'
  42. Moderator: 'motd-moderator.txt'
  43.  
  44. #Replace the vanilla join and quit messages? Yes: true | No: false
  45. broadcast-enabled: true
  46.  
  47. #Here we determine what is announced to the server for each group on join and quit.
  48. #If you don't define a group it's own specific string, the default message is used.
  49. join:
  50. message: '%prefix%group%suffix (%prefix%name%suffix) &5has &6joined &3from %country !!!.'
  51. groups:
  52. Admin: '%prefix%group%suffix (%prefix%name%suffix) has joined the server. Respect the admins.'
  53. players:
  54. Tazzernator: '%prefix%group%suffix (%prefix%name%suffix) has come to steal all your cute Ocelots!'
  55. quit:
  56. message: '%prefix%group%suffix (%prefix%name%suffix) has left the server.'
  57. groups:
  58. Admin: '%prefix%group%suffix (%prefix%name%suffix) has left the server. You can relax.'
  59. players:
  60. Tazzernator: '%prefix%group%suffix (%prefix%name%suffix) has come to steal all your cute Ocelots!'
  61.  
  62. #This changes the pagination header that is added to MCDocs automatically when there is > 10 lines of text.
  63. header-format: '[color=red][b]%commandname[/b][/color] | [color=yellow]Page %current of %count[/color] | [color=gray]%command <page>[/color]'
  64.  
  65. #Format to use when using %online or %online_group.
  66. online-players-format: '%prefix%group%name'
  67.  
  68. #The file to displayed when using %news.
  69. news-file: 'news.txt'
  70.  
  71. #How many lines to show when using %news.
  72. news-lines: 2
  73.  
  74. #How long, in minutes, do you want online files to be cached locally? 0 = disable
  75. cache-time: 5
  76.  
  77. #Inform the console when a player uses a command from the commands list.
  78. command-log-enabled: true
  79.  
  80. #Send warnings and errors to the main server log? Yes: true | No: false
  81. error-log-enabled: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement