Advertisement
Guest User

Untitled

a guest
Mar 2nd, 2016
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.00 KB | None | 0 0
  1. database:
  2. #Database backend type, can be set to mysql or sqlite
  3. type: sqlite
  4. #MySQL database host
  5. mySQLHost: localhost
  6. #MySQL connection port number
  7. mySQLPort: 3306
  8. #MySQL database name
  9. mySQLDatabase: db
  10. #MySQL database user
  11. mySQLUser: root
  12. #MySQL user's password
  13. mySQLPassword: ""
  14. #MySQL table names
  15. tableNames:
  16. alliances: "alliances"
  17. arenas: "arenas"
  18. gangs: "gangs"
  19. players: "players"
  20. modules:
  21. #Enable alliances?
  22. alliances: true
  23. #Enable gang bank accounts?
  24. bank: true
  25. #Enable gang chat?
  26. chat: true
  27. #Enable fights?
  28. fights: true
  29. #Enable homes?
  30. homes: true
  31. broadcasts:
  32. #Choose how messages will be broadcasted. Valid values are message/title/subtitle
  33. type: message
  34. broadcast:
  35. #Choose if certain actions should be broadcasted
  36. gangCreate: true
  37. gangDisband: true
  38. gangDisbandByAdmin: true
  39. gangJoin: true
  40. gangKick: true
  41. gangLeaderChange: true
  42. gangLeave: true
  43. gangLevelUp: true
  44. fightStart: true
  45. fightEnd: true
  46. gangs:
  47. #Gang name regex, don't change it unless you know how it works
  48. allowedNameCharacters: '[^a-zA-Z0-9\\ ]'
  49. #Choose if spaces are allowed in gang name
  50. allowSpaces: false
  51. #Minimum gang name length
  52. minGangNameLength: 3
  53. #Maximum gang name length
  54. maxGangNameLength: 32
  55. #Maximal gang level
  56. maxGangLevel: 5
  57. #Player won't be able to create gangs with names containing following words/phrases
  58. bannedNames:
  59. - ass
  60. - noob
  61. #Choose if friendly fire is disabled or enabled
  62. friendlyFire: true
  63. #Choose if gang leaders are able to toggle on/off friendly fire (if value above set to false they still won't be able)
  64. friendlyFireTogglableByLeader: true
  65. #Show gang's bank balance to other players (even those who aren't members of that gang)? Players with gangsplus.checkbalance will be still able to see it.
  66. showBankBalanceToOthers: false
  67. #Choose if color codes in gang names should be parsed as colors (remember you have to add the ampersand (&) to allowedNameCharacters in order to allow using colors)
  68. parseColorCodesInNames: false
  69. #Choose if color codes in gang names should be ignored. For instance, when set to true &aExample will be the same as Example. It's recommended to set it to true
  70. ignoreColorCodesInNames: true
  71. gangNameFormat:
  72. #Default gang name format (used when useLevelBased is set to false)
  73. default: '&8[%gang%&8]'
  74. #Gang name for gangless players (set to '' to display none)
  75. noGang: ''
  76. #Choose if you want to use the level based gang name format
  77. useLevelBased: false
  78. #Custom gang name format amount depending on its level. Format is LEVEL:AMOUNT
  79. levelBased:
  80. 1: '&a[%gang%] &f'
  81. 2: '&b[%gang%] &f'
  82. 3: '&6&l[%gang%] &f'
  83. maxMembers:
  84. #Default amount of max members (used when useLevelBased is set to false)
  85. default: 20
  86. #Choose if you want to use the level based max members amount
  87. useLevelBased: false
  88. #Custom maximum members amount depending on its level. Format is LEVEL:AMOUNT
  89. levelBased:
  90. 1: 5
  91. 2: 10
  92. 3: 20
  93. maxHomes:
  94. #Default amount of max homes (used when useLevelBased is set to false)
  95. default: 0
  96. #Choose if you want to use the level based max homes amount
  97. useLevelBased: false
  98. #Custom maximum homes amount depending on its level. Format is LEVEL:AMOUNT
  99. levelBased:
  100. 1: 2
  101. 2: 5
  102. 3: 10
  103. #Rewards for upgrading the gang to higher level. Following commands will be executed for every online gang member.
  104. #Placeholders:
  105. #{PLAYER} - will be replaced with name of each of online gang members
  106. #{GANG} - will be replaced with gang name
  107. #{LEVEL} - will be replaced with new gang's level
  108. levelUpRewards:
  109. 1:
  110. commands:
  111. - msg {PLAYER} Congratulations!
  112. - give {PLAYER} diamond 64
  113. 2:
  114. commands:
  115. - msg {PLAYER} Congratulations!
  116. - give {PLAYER} diamond 128
  117. #All gang related commands will be disabled in these worlds
  118. disableGangsInWorlds:
  119. - Free
  120. - build
  121. - cleanroom
  122. #Players won't be able to set gang homes in these worlds
  123. disableHomesInWorlds:
  124. - world
  125. - Free
  126. - build
  127. #Friendly fire will be disabled in these worlds (regardless of per-gang settings)
  128. disableFriendlyFireInWorlds:
  129. - example
  130. fights:
  131. #If set to false players won't be able to move from the beginning location until fight starts
  132. freezeBeforeStart: true
  133. #Delay in seconds before fight starts, players can join then so recommended value is higher than 5
  134. delayBeforeStart: 30
  135. #Minimal players amount that can be chosen when challenging other gang for a fight
  136. minMembersAmount: 2
  137. #Maximal players amount that can be chosen when challenging other gang for a fight
  138. maxMembersAmount: 5
  139. #Minimal entry fee that can be chosen when challenging other gang for a fight
  140. minMoneyAmount: 100.0
  141. #Maximal entry fee that can be chosen when challenging other gang for a fight
  142. maxMoneyAmount: 1000000.0
  143. #Enable fight time limit?
  144. enableFightTimeLimit: true
  145. #After that time (in seconds) fight will end with no winner and loser if enableFightTimeLimit set to true.
  146. fightTimeLimit: 300
  147. #Delay (in seconds) before players get teleported out of arena after winning a fight
  148. delayBeforeTeleport: 15
  149. #Players without gangsplus.fightcommands won't be able to use these commands during fights
  150. disableCommandsDuringFight:
  151. - /espawn
  152. - /spawn
  153. - /tpa
  154. - /etpa
  155. - /warp
  156. cooldowns:
  157. #Cooldowns before teleports, set to 0 to disable
  158. home: 5
  159. fightJoin: 0
  160. prices:
  161. #Gang's creation price
  162. create: 100000
  163. #Level up price from each level. Format is FROMLEVEL:PRICE
  164. levelup:
  165. 1: 100000
  166. 2: 300000
  167. 3: 500000
  168. settings:
  169. #Date format; more info: https://docs.oracle.com/javase/tutorial/i18n/format/simpleDateFormat.html
  170. dateFormat: "dd.MM.yyyy, HH:mm"
  171. #Format of online player's name, $name will be replaced with player's nickname
  172. onlinePlayerNameFormat: "&a%player%&b"
  173. #How many gangs should be shown on the gangs list per page
  174. gangsPerPage: 10
  175. #How many gangs should be shown in /g top
  176. gangsTopLimit: 10
  177. #Players who damaged the player within these X seconds before them getting killed will be given an assist
  178. assistDamageDelay: 60
  179. messages:
  180. #Format of messages sent by the plugin to gang members. Placeholders: %gang%, %message%
  181. inGang: "&b%gang% > &7%message%"
  182. #Format of messages sent by the plugin to players present in certain fight arena. Placeholders: %arena%, %message%
  183. inArena: "&bFight > &7%message%"
  184. #Format of gang chat messages. Placeholders: %gang%, %rank%, %player%, %message%
  185. gangChatFormat: "&a[%gang%]&7 %rank% &b%player%&7: %message%"
  186. #Format of ally chat messages. Placeholders: %gang%, %rank%, %player%, %message%
  187. allyChatFormat: "&b[%gang%]&7 %rank% %player%: %message%"
  188. commands:
  189. #Format of /g info output
  190. #Placeholders: %date%, %level%, %kills%, %deaths%, %assists%, %kdr%, %fightswon%, %fightslost%, %wlr%, %leader%, %membersamount%, %members%, %onlinemembersamount%, %onlinemembers%, %bank%
  191. info:
  192. - "&7----------------[ &3%name% profile &7]----------------"
  193. - "&7- Created on: &b%date%"
  194. - "&7- Level: &b%level%"
  195. - "&7- Kills: &b%kills%&7, deaths: &b%deaths%&7, assists: &b%assists%&7, K/D ratio: &b%kdr%"
  196. - "&7- Fights won: &b%fightswon%&7, lost: &b%fightslost%&7, W/L ratio: &b%wlr%"
  197. - "&7- Leader: &b%leader%"
  198. - "&7- Members (%membersamount%): &b%members%"
  199. - "&7- Online members (%onlinemembersamount%): &b%onlinemembers%"
  200. - "&7- Bank account: &b$%bank%"
  201. - "&7- Allied gangs: &b%allies%"
  202. #Format of /g player output
  203. #Placeholders: %date%, %kills%, %deaths%, %assists%, %kdr%, %gang%, %gangrank%
  204. #Use the {INGANG} tag to make particular line be displayed only when the player is in a gang
  205. playerinfo:
  206. - "&7----------------[ &3%name% profile &7]----------------"
  207. - "&7- Registered on: &b%date%"
  208. - "&7- Kills: &b%kills%&7, deaths: &b%deaths%&7, assists: &b%assists%&7, K/D ratio: &b%kdr%"
  209. - "{INGANG}&7- Gang: &b%gang%"
  210. - "{INGANG}&7- Rank in gang: &b%gangrank%"
  211. ranks:
  212. #Ranks numbers and their names, you can add as many as you want
  213. ranks:
  214. 1: "Newbie"
  215. 2: "Rookie"
  216. 3: "Veteran"
  217. 4: "Officer"
  218. 5: "Leader"
  219. #Numbers of required ranks to perform certain actions/commands
  220. requiredRanks:
  221. fightAccept: 4
  222. fightChallenge: 4
  223. fightJoin: 1
  224. fightLeave: 1
  225. ally: 4
  226. delhome: 4
  227. demote: 5
  228. deposit: 1
  229. disband: 5
  230. friendlyfire: 4
  231. home: 2
  232. invite: 3
  233. kick: 5
  234. leave: 1
  235. levelup: 4
  236. listhomes: 4
  237. neutral: 4
  238. promote: 5
  239. regroup: 2
  240. sethome: 4
  241. uninvite: 4
  242. withdraw: 4
  243. #Alliances settings
  244. alliances:
  245. #Enable pvp between allied factions?
  246. allowPvp: false
  247. #Allow fights between allied factions (allowPvp value doesn't matter, they will be always able hurt to each other during the fight)
  248. allowFights : true
  249. #Enable ally chat?
  250. enableAllyChat: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement