Guest User

Untitled

a guest
Apr 2nd, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.42 KB | None | 0 0
  1. #You can choose a language file from the list of the languages section in this config.yml right under this option.
  2. lang: english
  3. #Here are all the language file names that you can use, if you use any other file name it can cause errors!
  4. #languages:
  5. # - english
  6. # - chinese
  7. # - french
  8. # - dutch
  9. #The prefix of all messages send by this plugin to a player
  10. plugin-prefix: "&a[Guilds]"
  11.  
  12. require-money: false
  13. #Requirement:
  14. # cost: 0
  15. #For some reason the require-money doesn't matter. So here's how this works:
  16. #If you have an economy plugin on your server, uncomment the Requirement and Cost line and set your cost.
  17. #If you are not using an economy plugin but want to make guilds just leave the 2 lines commented above.
  18.  
  19. #List your server at https://glaremasters.me/server/
  20. server-list: false
  21.  
  22. updater:
  23. check: false
  24.  
  25. name:
  26. # Minimum length of guild names
  27. min-length: 1
  28. # Maximum length of guild names
  29. max-length: 16
  30. # RegEx (https://en.wikipedia.org/wiki/Regular_expression) used to only allow certain characters (default only allows alphanumeric characters)
  31. regex: "^[a-zA-Z0-9]*$"
  32.  
  33. prefix:
  34. # RegEx (https://en.wikipedia.org/wiki/Regular_expression) used to only allow certain characters (default only allows alphanumeric characters)
  35. # With the default Regex currently set, the minimum length of the prefix is 1 and the maximum is 6.
  36. # To change this, adjust the numbers and maybe have a look at the link above.
  37. # When changing the {1,6} you MUST change the "requirements" field under "prefix" down in the config below to the MAX number you have redefined the regex as. E.x. for {1,2} change ("&cYour guild's prefix does not match the requirements! You can only use alphanumeric characters and the length of the prefix cannot exceed 6") to ("&cYour guild's prefix does not match the requirements! You can only use alphanumeric characters and the length of the prefix cannot exceed 2")
  38. regex: "[a-zA-Z0-9]{1,3}"
  39. # Set the format for the prefix
  40. format: "&c[{prefix}] "
  41.  
  42. members:
  43. # Set to -1 to disable
  44. max-members: 64
  45.  
  46. chat:
  47. # Enable or disable custom chat formatting for players who are in a guild
  48. enable: false
  49. # Custom chat format (only applied when the setting above is set to true)
  50. # - "{guild}" is replaced with the guild prefix
  51. # - "%s" (First) is replaced with the player's name
  52. # - "%s" (Second) is replaced with the player's message
  53. format: "{guild} <%s>: %s"
  54.  
  55. placeholders:
  56. # Default value for placeholders that don't have a value (Set to "" to leave empty)
  57.  
  58. #This currently is bugged and will be fixed soon 6-3-2017
  59. default: "N/A"
  60.  
  61. scoreboard:
  62. # Enable or disable scoreboard which handles friendly fire, prefixes and guild invisibility
  63. enable: false
  64. # Enable or disable friendly fire
  65. friendly-fire: false
  66. # Enable or disable being able to see invisible guild members
  67. see-invisible: false
  68.  
  69. database:
  70. # Set the type of the database (Either JSON or MySQL)
  71. type: JSON
  72. # Uncomment when using MySQL
  73. # host: "127.0.0.1"
  74. # port: 3306
  75. # username: "root"
  76. # password: "password"
  77. ## Note: Database needs to be created manually
  78. # database: "guilds"
  79. # pool-size: 10
  80.  
  81. roles:
  82. 0:
  83. name: "GuildMaster"
  84. permissions:
  85. claim: false
  86. chat: true
  87. ally-chat: true
  88. invite: true
  89. kick: true
  90. promote: true
  91. demote: true
  92. add-ally: true
  93. remove-ally: true
  94. change-prefix: true
  95. change-home: true
  96. change-master: true
  97. remove-guild: true
  98.  
  99. 1:
  100. name: "Officer"
  101. permissions:
  102. claim: false
  103. chat: true
  104. ally-chat: true
  105. invite: true
  106. kick: true
  107. promote: true
  108. demote: true
  109. add-ally: true
  110. remove-ally: true
  111. change-prefix: false
  112. change-home: true
  113. change-master: false
  114. remove-guild: false
  115.  
  116. 2:
  117. name: "Veteran"
  118. permissions:
  119. claim: false
  120. chat: true
  121. ally-chat: true
  122. invite: true
  123. kick: false
  124. promote: false
  125. demote: false
  126. add-ally: false
  127. remove-ally: false
  128. change-prefix: false
  129. change-master: false
  130. remove-guild: false
  131. 3:
  132. name: "Member"
  133. permissions:
  134. claim: false
  135. chat: true
  136. ally-chat: true
  137. invite: false
  138. kick: false
  139. promote: false
  140. demote: false
  141. add-ally: false
  142. remove-ally: false
  143. change-prefix: false
  144. change-master: false
  145. remove-guild: false
Add Comment
Please, Sign In to add comment