Advertisement
Guest User

Untitled

a guest
Oct 21st, 2016
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 17.22 KB | None | 0 0
  1.            ############################
  2.            # NovaGuilds Configuration #
  3.            #                          #
  4.            #         Support          #
  5.            #   http://novaguilds.pl   #
  6.            #                          #
  7.            ############################
  8.            #      Time format:        #
  9.            #     1y 1d 1h 1m 1s       #
  10.            #           =              #
  11.            #  One year, one day, one  #
  12.            #     hour, one minute     #
  13.            #     and one second       #
  14.            ############################
  15.  
  16. ###################################################
  17. # Data storage type                               #
  18. # mysql - MySQL database                          #
  19. # sqlite - Local database                         #
  20. # flat - file based                               #
  21. datastorage:
  22.  primary: mysql
  23.  secondary: flat
  24.  
  25. ###################################################
  26. # MySQL settings                                  #
  27. mysql:
  28.  host: ""
  29.  port: 3306
  30.  database: ""
  31.  username: ""
  32.  password: ""
  33.  prefix: "novaguilds_"
  34.  
  35. ###################################################
  36. # Debug mode                                      #
  37. debug: false
  38.  
  39. ###################################################
  40. # Delete invalid guilds/players/regions etc.      #
  41. deleteinvalid: false
  42.  
  43. # =-=-= # =-=-=-= #
  44. # Available langs #
  45. # =-=-= # =-=-=-= #
  46. # en-en # English #
  47. # pl-pl # Polish  #
  48. # de-de # German  #
  49. # zh-cn # Chinese #
  50. # nl-nl # Dutch   #
  51. # fr-fr # French  #
  52. # =-=-= # =-=-=-= #
  53. lang:
  54.  name: pl-pl
  55.  
  56. ###################################################
  57. # Override Essentials' language settings          #
  58. # true  - use language set above                  #
  59. # false - use Essentials' language                #
  60.  overrideessentials: false
  61.  
  62. ###################################################
  63. # Use titles to display suitable messages         #
  64. usetitles: true
  65.  
  66. bossbar:
  67.  enabled: true
  68.  
  69. # Boss bar during the raid                        #
  70.  raidbar:
  71.   enabled: true
  72.  
  73. # Bar style                                       #
  74.   style: SOLID
  75.  
  76. # Bar color                                       #
  77.   color: PURPLE
  78.  
  79. tagapi:
  80.  enabled: true
  81.  
  82. signgui:
  83.  enabled: true
  84.  
  85. ###################################################
  86. # Points below player's name                      #
  87. pointsbelowname: true
  88.  
  89. ###################################################
  90. # HolographicDisplays settings                    #
  91. holographicdisplays:
  92.  
  93. # enabled or not                                  #
  94. enabled: true
  95.  
  96. # Refreshing holograms                            #
  97. refresh: 15m
  98.  
  99. ###################################################
  100. # That's some Cauldron magic (mod support etc)    #
  101. packets:
  102.  enabled: true
  103.  
  104. # Custom entities (Flan's mod tanks etc.)         #
  105. advancedentityuse: false
  106.  
  107. ###################################################
  108. # Save interval                                   #
  109. saveinterval: 30m
  110.  
  111. ###################################################
  112. # after the raid is over and this time            #
  113. # the guild will get +1 live                      #
  114. liveregeneration:
  115.  
  116. # live regeneration time                          #
  117. regentime: 48h
  118.  
  119. # checking for new lives - interval               #
  120. taskinterval: 30m
  121.  
  122. ###################################################
  123. # Guilds cleanup                                  #
  124. cleanup:
  125.  
  126. # enabled or not                                  #
  127. enabled: true
  128.  
  129. # time after which a guild is removed             #
  130. inactivetime: 7d
  131.  
  132. # checking interval                               #
  133. interval: 1d
  134.  
  135. # checking delay after startup                    #
  136. startupdelay: 30s
  137.  
  138. ###################################################
  139. # Command aliases                                 #
  140. aliases:
  141. guild:
  142.  - g
  143.  - gildia
  144. create:
  145.  - zaloz
  146. invite:
  147.  - zapros
  148. abandon:
  149.  - rozwiaz
  150. join:
  151.  - dolacz
  152. leave:
  153.  - opusc
  154.  
  155. ###################################################
  156. # Leaderboard settings                            #
  157. leaderboard:
  158. guild:
  159.  rows: 5
  160.  
  161. ###################################################
  162. # Chat settings                                   #
  163. chat:
  164.  
  165. # tag pattern                                     #
  166. tag:
  167.  chat: "&8[{RANK}&{COLOR}{TAG}&8] &r"
  168.  scoreboard: "&a{RANK}&{COLOR}{TAG} &r"
  169.  
  170. # leader prefix character                         #
  171. leaderprefix: "*"
  172.  
  173. # displaying tags using Essentials (or whatever)  #
  174. # or just tag+name                                #
  175. # false requires adding {TAG} to chat format      #
  176. # in Essentials' config!                          #
  177.  displaynametags: false
  178.  
  179. # advanced chat                                   #
  180. # + colored tags                                  #
  181. # - often breaks chat plugins :(                  #
  182.  advanced: true
  183.  
  184. # /confirm timeout
  185.  confirmtimeout: 20s
  186.  
  187. # tag colors depending on ally/war etc            #
  188.  tagcolors:
  189.   neutral: "a"
  190.   ally: "5"
  191.   war: "b"
  192.   guild: "c"
  193.  
  194. # ally chat settings                              #
  195.  ally:
  196.   prefix: "!!"
  197.   enabled: true
  198.   leaderprefix: true
  199.   format: "&8[&5Ally&8] &c{TAG}&8{PLAYERNAME}&7:&r "
  200.  
  201. # guild chat settings
  202.  guild:
  203.   prefix: "!"
  204.   enabled: true
  205.   leaderprefix: true
  206.   format: "&8[&cGuild&8] &a{LEADERPREFIX}&8{PLAYERNAME}&7:&r "
  207.  
  208. ###################################################
  209. # Raid settings                                   #
  210. raid:
  211.  enabled: true
  212.  
  213. # minimum players online to start a raid          #
  214.  minonline: 1
  215.  
  216. # how many points tare being taken when defeated  #
  217.  pointstake: 100
  218.  
  219. # progress of raid every second                   #
  220. # (1.00 = 100s to take life)                      #
  221.  multipler: 1.00
  222.  
  223. # time guild has to rest in seconds (24h)         #
  224.  timerest: 24h
  225.  
  226. # inactive time after which the raid is over      #
  227.  timeinactive: 30s
  228.  
  229. # +5% points/money for pvp kill during raid       #
  230.  pvp:
  231.   bonuspercent:
  232.    money: 5
  233.    points: 5
  234.  
  235. ###################################################
  236. # PVP settings                                    #
  237. killing:
  238.  
  239. # percent of victim's money                       #
  240. moneyforkill: 5
  241. moneyforrevenge: 10
  242.  
  243. # That's probably some mysterious math.           #
  244. # play with it                                    #
  245.  rankpercent: 1
  246.  
  247. # starting amount of points                       #
  248.  startpoints: 1000
  249.  
  250. # cooldown until points/money can be gained again #
  251.  cooldown: 10m
  252.  
  253. ###################################################
  254. # Guild settings                                  #
  255. guild:
  256.  
  257. # disabled worlds                                 #
  258.  disabledworlds:
  259.   - world_nether
  260.   - world_the_end
  261.  
  262. # new guilds protection                           #
  263.  createprotection: 24h
  264.  
  265. # start amounts                                   #
  266.  start:
  267.   points: 1000
  268.   money: 0
  269.  
  270. # slots amount; start and maximum amount          #
  271.  slots:
  272.   start: 10
  273.   max: 50
  274.  
  275. # lives amount; start and maximum amount          #
  276.  lives:
  277.   start: 2
  278.   max: 3
  279.  
  280. # minimal distance from spawn                     #
  281.  fromspawn: 100
  282.  
  283. # allowed strings                                 #
  284.  stringcheck:
  285. # checking enabled                                #
  286.   enabled: true
  287.  
  288. # use regex or allowed characters                 #
  289.   regex: false
  290.  
  291. # allowed characters patter                       #
  292.   pattern: "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789&"
  293.  
  294. # regex pattern                                   #
  295.   regexpattern: "[A-Za-z0-9&]*"
  296.  
  297. # settings for tag and name strings               #
  298.  settings:
  299.  
  300.   tag:
  301. # length                                          #
  302.    min: 2
  303.    max: 6
  304.  
  305.   name:
  306. # length                                          #
  307.    min: 4
  308.    max: 10
  309.  
  310. # guild points taken and given on death           #
  311.  killpoints: 5
  312.  deathpoints: 5
  313.  
  314. # /g effect                                       #
  315.  effect:
  316.  
  317. # duration of the effect                          #
  318.   duration: 100s
  319.  
  320. # available effects                               #
  321.   list:
  322.    - JUMP
  323.    - INCREASE_DAMAGE
  324.    - HEAL
  325.  
  326. ###################################################
  327. # Guild ranks                                     #
  328. rank:
  329.  
  330. # Maximum allowed amount of custom ranks          #
  331.  maxamount: 5
  332.  
  333. # Enable ranks menu in the GUI                    #
  334.  gui: true
  335.  
  336. # default guild ranks                             #
  337. # leader rank is generated by the plugin          #
  338.  defaultranks:
  339.   member:
  340.    - BLOCK_BREAK
  341.    - BLOCK_PLACE
  342.    - MOB_ATTACK
  343.    - MOB_RIDE
  344.    - MOB_LEASH
  345.    - INTERACT
  346.    - BANK_PAY
  347.    - HOME_TELEPORT
  348.    - VAULT_ACCESS
  349.    - VAULT_PUT
  350.   mayor:
  351.    - BLOCK_BREAK
  352.    - BLOCK_PLACE
  353.    - MOB_ATTACK
  354.    - MOB_RIDE
  355.    - MOB_LEASH
  356.    - INTERACT
  357.    - BANK_PAY
  358.    - HOME_TELEPORT
  359.    - VAULT_ACCESS
  360.    - VAULT_PUT
  361.    - KICK
  362.    - EFFECT
  363.    - INVITE
  364.    - BANK_WITHDRAW
  365.    - PVPTOGGLE
  366.    - BUYSLOT
  367.    - BUYLIFE
  368.  
  369. ###################################################
  370. # Groups                                          #
  371. # permissions: novaguilds.group.GROUP             #
  372. # eg: novaguilds.group.vip                        #
  373. # there's no need for admin group.                #
  374. # novaguilds.group.admin for all stuff free       #
  375. groups:
  376. # THIS IS A DEFAULT GROUP! #
  377.  
  378. # the name goes here                              #
  379. default:
  380.  guild:
  381. # teleporting to guild's home                     #
  382.    home:
  383.  
  384. # teleport delay                                  #
  385.     tpdelay: 5
  386.  
  387. # money required                                  #
  388.     money: 0
  389.  
  390. # items required                                  #
  391.     items: []
  392.  
  393. # join a guild                                    #
  394.    join:
  395.     money: 0
  396.     items: []
  397.  
  398. # creating a guild                                #
  399.    create:
  400.     money: 0
  401.     items:
  402.      - 10 coal_block
  403.      - 10 diamond_block
  404.      - 5 gold_block
  405.      - 8 iron_block
  406.      - 10 bone
  407.  
  408. # schematic that gets pasted when creating guild  #
  409. # This is WorldEdit compatible                    #
  410. # Save schematic with                             #
  411. # //schem save schematic <name>                   #
  412. # And move to plugins/NovaGuilds/schematic/       #
  413.     schematic: ""
  414.  
  415. # buying a life                                   #
  416.    buylife:
  417.     money: 10
  418.     items:
  419.      - DIAMOND_BLOCK 1
  420.  
  421. # buying a slot                                   #
  422.    buyslot:
  423.     money: 10
  424.     items:
  425.      - DIAMOND_BLOCK 1
  426.  
  427. # buying an effect                                #
  428.    effect:
  429.     money: 100
  430.     items:
  431.      - DIAMOND_BLOCK 1
  432.  
  433. # buying a banner                                 #
  434.    banner:
  435.     money: 0
  436.     items:
  437.      - DIAMOND_BLOCK 1
  438.  
  439.   region:
  440. # size (radius) of auto created region (5=10x10)  #
  441.    autoregionsize: 5
  442. # create price                                    #
  443.    createmoney: 100
  444. # price per block                                 #
  445.    ppb: 1
  446.  
  447. # Admin group (missing values are 0/empty (free)  #
  448.  admin:
  449.   guild:
  450.    create:
  451.     schematic: ""
  452.   region:
  453.    autoregionsize: 10
  454.  
  455.  
  456. ###################################################
  457. # Guild's vault                                   #
  458. vault:
  459. enabled: false
  460.  
  461. # vault item #
  462. item: CHEST 1 name:&6Guild's_Vault
  463.  
  464. # deny placing items from the list next           #
  465. # to the vault                                    #
  466.  denyrelative:
  467.   - HOPPER
  468.  
  469. # vault hologram #
  470.  hologram:
  471.   enabled: true
  472.  
  473. # Adding item holograms:                          #
  474. # [ITEM]NAMEORID AMOUNT                           #
  475.   lines:
  476.    - "[ITEM]GOLD_INGOT 1"
  477.    - "&6Guild's Vault"
  478.  
  479. ###################################################
  480. # The Tablist                                     #
  481. # It is available only for 1.8 versions           #
  482. # and requires NorthTab plugin as a dependency    #
  483. # That plugin can be found in local               #
  484. # or remote maven repositories.                   #
  485. # http://repo.novaguilds.pl/tk/northpl/NorthTab/1.1-INDEV/NorthTab-1.1-INDEV.jar
  486. # It can be also found in                         #
  487. # ~/.m2/repository/tk/northpl/NorthTab/           #
  488. # if you've compiled the plugin yourself          #
  489. # All vars and info is available on the website   #
  490. # which is given on the top                       #
  491. #                                                 #
  492. # Players top:                                    #
  493. # By points: {PLAYER_TOP_POINTS_Nx}               #
  494. # By KDR (kills/deaths): {PLAYER_TOP_KDR_Nx}      #
  495. # Replace 'x' with numbers 1-20 and place lines   #
  496. # in the scheme. The plugin will do the rest      #
  497. tablist:
  498. # enabled?                                        #
  499. enabled: false
  500.  
  501. # refresh interval                                #
  502. refresh: 30s
  503.  
  504. # top patterns                                    #
  505. toprow:
  506.  players:
  507.   points: "&8[&c{N}&8] &a{PLAYERNAME} &c{POINTS}"
  508.   kdr: "&8[&c{N}&8] &a{PLAYERNAME} &c{KDR}"
  509.  guilds: "&8[&c{N}&8] &a{GUILDNAME} &c{POINTS}"
  510. scheme:
  511.  - "{PLAYER_NAME}"
  512.  - "Money: &2{PLAYER_BALANCE}$"
  513.  - "Kills: {PLAYER_KILLS}"
  514.  - "Deaths: {PLAYER_DEATHS}"
  515.  - "KDR: {PLAYER_KDR}"
  516.  - "ChatMode: {PLAYER_CHATMODE}"
  517.  - "SpyMode: {PLAYER_SPYMODE}"
  518.  - "Bypass: {PLAYER_BYPASS}"
  519.  - ""
  520.  - "{SERVER_ONLINE}/{SERVER_MAX}"
  521.  - "{WORLD_NAME}"
  522.  - "{WORLD_SPAWN}"
  523.  - ""
  524.  - "{DATE_DAY}-{DATE_MONTH}-{DATE_YEAR}"
  525.  - "{DATE_HOURS}:{DATE_MINUTES}:{DATE_SECONDS}"
  526.  - ""
  527.  - ""
  528.  - ""
  529.  - ""
  530.  - ""
  531.  - "Name: {GUILD_NAME}"
  532.  - "Tag: {GUILD_TAG}"
  533.  - "{GUILD_PLAYERS_ONLINE}/{GUILD_PLAYERS_MAX}"
  534.  - "Lives: {GUILD_LIVES}"
  535.  - "Progress: {GUILD_RAIDPROGRESS}"
  536.  - "PVP: {GUILD_PVP}"
  537.  - "Money: {GUILD_MONEY}"
  538.  - "Points: {GUILD_POINTS}"
  539.  - "Slots: {GUILD_SLOTS}"
  540.  - "OpenInv: {GUILD_OPENINVITATION}"
  541.  - "{GUILD_TIME_REGEN}"
  542.  - "{GUILD_TIME_REST}"
  543.  - "{GUILD_TIME_CREATED}"
  544.  - "{GUILD_TIME_PROTECTION}"
  545.  - "{GUILD_HOME}"
  546.  - ""
  547.  - ""
  548.  - ""
  549.  - ""
  550.  - ""
  551.  - "Guild top"
  552.  - ""
  553.  - "{GUILD_TOP_N1}"
  554.  - "{GUILD_TOP_N2}"
  555.  - "{GUILD_TOP_N3}"
  556.  - "{GUILD_TOP_N4}"
  557.  - "{GUILD_TOP_N5}"
  558.  - "{GUILD_TOP_N6}"
  559.  - "{GUILD_TOP_N7}"
  560.  - "{GUILD_TOP_N8}"
  561.  - "{GUILD_TOP_N9}"
  562.  - "{GUILD_TOP_N10}"
  563.  - ""
  564.  - ""
  565.  - ""
  566.  - ""
  567.  - ""
  568.  - ""
  569.  - ""
  570.  - ""
  571.  - "Players TOP (kdr)"
  572.  - "{PLAYER_TOP_KDR_N1}"
  573.  - "{PLAYER_TOP_KDR_N2}"
  574.  - "{PLAYER_TOP_KDR_N3}"
  575.  - "{PLAYER_TOP_KDR_N4}"
  576.  - "{PLAYER_TOP_KDR_N5}"
  577.  - "{PLAYER_TOP_KDR_N6}"
  578.  - "{PLAYER_TOP_KDR_N7}"
  579.  - "{PLAYER_TOP_KDR_N8}"
  580.  - "{PLAYER_TOP_KDR_N9}"
  581.  - "{PLAYER_TOP_KDR_N10}"
  582.  
  583. ###################################################
  584. # Region settings                                 #
  585. region:
  586.  
  587. # materials used with selection                   #
  588. materials:
  589.  
  590. # highlighting a region                           #
  591.  highlight:
  592.   region:
  593.    corner: DIAMOND_BLOCK
  594.    border: "null"
  595.  
  596. # Ready to resize                                 #
  597.   resize:
  598.    corner: GOLD_BLOCK
  599.    border: "null"
  600.  
  601. # creating regions                                #
  602.  selection:
  603.  
  604. # a valid rectangle                               #
  605.   valid:
  606.    corner: EMERALD_BLOCK
  607.    border: WOOL:14
  608.  
  609. # an invalid rectangle                            #
  610.   invalid:
  611.    corner: EMERALD_BLOCK
  612.    border: WOOL:15
  613.  
  614. # resizing                                        #
  615.  resize:
  616.   corner: GOLD_BLOCK
  617.   border: WOOL:6
  618.  
  619. # auto creating regions (when creating a guild)   #
  620. autoregion: true
  621.  
  622. # minimal region size                             #
  623. minsize: 10
  624.  
  625. # maximum region size                             #
  626. maxsize: 100
  627.  
  628. # particles when entering a region                #
  629. borderparticles: true
  630.  
  631. # water flow at regions                           #
  632. waterflow: true
  633.  
  634. # minimal distance from another guild or region   #
  635. mindistance: 20
  636.  
  637. # allow allies interact                           #
  638. allyinteract: false
  639.  
  640. # tool item                                       #
  641. tool: "STICK 1 name:&5NovaGuilds_&6Tool lore:&cLeft_Click_+_SHIFT|&6To_toggle_the_mode|&e****&2Check_Mode&e****|&6Right_click_to_check|&e****&2Select_Mode&e***|&cLeft/Right|&6click_to_select|&6Right_click_a_corner|&6to_resize"
  642.  
  643. # Disallow lava/water 5 blocks outside the region #
  644. fluidprotect: 5
  645.  
  646. # commands blocked at region                      #
  647. # when player is not member and not ally          #
  648. # ! commands have to be lowercase !               #
  649. blockedcmds:
  650.  - sethome
  651.  - home
  652.  - back
  653.  
  654. # deny interact (right click etc) at region       #
  655. denyinteract:
  656.  - WOODEN_DOOR
  657.  - DARK_OAK_DOOR
  658.  - SPRUCE_DOOR
  659.  - BIRCH_DOOR
  660.  - JUNGLE_DOOR
  661.  - ACACIA_DOOR
  662.  - DARK_OAK_FENCE_GATE
  663.  - SPRUCE_FENCE_GATE
  664.  - BIRCH_FENCE_GATE
  665.  - JUNGLE_FENCE_GATE
  666.  - ACACIA_FENCE_GATE
  667.  - LEVER
  668.  - DISPENSER
  669.  - STONE_BUTTON
  670.  - WOOD_BUTTON
  671.  - DROPPER
  672.  - HOPPER
  673.  - FENCE_GATE
  674.  - REDSTONE_COMPARATOR_OFF
  675.  - REDSTONE_COMPARATOR_ON
  676.  - REDSTONE_REPEATER
  677.  - TRAP_DOOR
  678.  - CHEST
  679.  - ANVIL
  680.  - ENCHANTMENT_TABLE
  681.  - WORKBENCH
  682.  - FURNACE
  683.  - DIODE_BLOCK_ON
  684.  - DIODE_BLOCK_OFF
  685.  - WOOD_PLATE
  686.  - STONE_PLATE
  687.  - IRON_PLATE
  688.  - GOLD_PLATE
  689.  - ENDER_CHEST
  690.  - ENDER_PORTAL_FRAME
  691.  - NOTE_BLOCK
  692.  - JUKEBOX
  693.  - BEACON
  694.  - ITEM_FRAME
  695.  - BREWING_STAND
  696.  - TRAPPED_CHEST
  697.  
  698. # deny using                                      #
  699. denyuse:
  700.  - ITEM_FRAME
  701.  - ARMOR_STAND
  702.  
  703. # deny hitting mobs                               #
  704. denymobdamage:
  705.  - PIG
  706.  - COW
  707.  - SHEEP
  708.  - HORSE
  709.  - WOLF
  710.  - OCELOT
  711.  - ARMOR_STAND
  712.  
  713. # deny riding mobs                                #
  714. denyriding:
  715.  - HORSE
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement