Advertisement
Guest User

Untitled

a guest
Feb 9th, 2018
375
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.87 KB | None | 0 0
  1. # -----------------------------
  2. # | BanManager by PaulTDD |
  3. # | config file, please read |
  4. # | carefully |
  5. # | report any bugs at my |
  6. # | spigot account or PM me on|
  7. # | discord: @PaulTDD#0933 |
  8. # -----------------------------
  9.  
  10. config_version: '1.0.2'
  11.  
  12. settings:
  13. # Punish hierachy
  14. # format: <banreason>,<duration>
  15. #
  16. # banreasons: kick,mute,tempmute,ban,tempban
  17. # duration: Y:years, M:month, D:days, h:hours, m:minutes
  18. punish:
  19. 1:
  20. - kick
  21. 2:
  22. - tempmute,1h
  23. 3:
  24. - mute
  25. 4:
  26. - tempban,1D
  27. 5:
  28. - ban
  29.  
  30. # Set the interval between file/database loading
  31. sync-interval: 300
  32.  
  33. # Set the interval between the gui updating
  34. gui-inteval: 300
  35.  
  36. # Set the default language
  37. default_language: english
  38.  
  39. # Set all allowed languages
  40. languages:
  41. english: en
  42.  
  43. # Settings for the database
  44. database:
  45. # Set to true if you want to use a MySQL database
  46. # as data storage instead of a file
  47. enabled: false
  48.  
  49. # Enable log table, used for website
  50. logtable: false
  51.  
  52. # Upgrade table to newer version, according to the plugin
  53. upgrade_table: false
  54.  
  55. # connection settings
  56. host: localhost
  57. port: 3306
  58. user: root
  59. password: password
  60. database: database
  61.  
  62. gui:
  63. # Settings for the main gui
  64. main:
  65. title: "&8Main page"
  66. items:
  67. bans:
  68. name: "&7Banned players"
  69. lore:
  70. - "&7Click to open the &cbanned"
  71. - "&7players gui"
  72. material: BOOK_AND_QUILL
  73. damage: 0
  74. amount: 1
  75. slot: 24
  76. mutes:
  77. name: "&7Muted players"
  78. lore:
  79. - "&7Click to open the &cmuted"
  80. - "&7players gui"
  81. material: BOOK_AND_QUILL
  82. damage: 0
  83. amount: 1
  84. slot: 20
  85. users:
  86. name: "&7List all users"
  87. lore:
  88. - "&7Click to open the"
  89. - "&7users gui"
  90. material: SKULL_ITEM
  91. damage: 3
  92. amount: 1
  93. slot: 22
  94.  
  95. # Settings for the users gui
  96. users:
  97. title: "&8Users"
  98.  
  99. # Settings for the bans gui
  100. bans:
  101. title: "&8Banned players"
  102.  
  103. # Settings for the mutes gui
  104. mutes:
  105. title: "&8Muted players"
  106.  
  107. # Language selector settings
  108. # make sure the section string is the same
  109. # as the configured language name
  110. lang:
  111. title: "&8Select language"
  112. items:
  113. english:
  114. material: PAPER
  115. amount: 1
  116. damage: 0
  117. name: "&7English"
  118. lore:
  119. - "&7Click to set &7&lEnglish"
  120. - "&7as your language"
  121. slot: 21
  122.  
  123. # Settings for optional gui items
  124. items:
  125. previous:
  126. name: "&8Prev"
  127. lore:
  128. - "&7Click to go to the"
  129. - "&7previous page"
  130. next:
  131. name: "&8Next"
  132. lore:
  133. - "&7Click to go to the"
  134. - "&7next page"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement