Advertisement
Guest User

Untitled

a guest
Oct 21st, 2016
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 17.84 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. Gracz:
  380.  guild:
  381. # teleporting to guild's home                     #
  382.    home:
  383.  
  384. # teleport delay                                  #
  385.     tpdelay: 7
  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. # the name goes here                              #
  409.  Vip:
  410.   guild:
  411. # teleporting to guild's home                     #
  412.   home:
  413.  
  414. # teleport delay                                  #
  415.    tpdelay: 7
  416.  
  417. # money required                                  #
  418.    money: 0
  419.  
  420. # items required                                  #
  421.    items: []
  422.  
  423. # join a guild                                    #
  424.   join:
  425.    money: 0
  426.    items: []
  427.  
  428. # creating a guild                                #
  429.   create:
  430.    money: 0
  431.    items:
  432.     - 5 coal_block
  433.     - 5 diamond_block
  434.     - 3 gold_block
  435.     - 3 iron_block
  436.     - 6 bone
  437.  
  438. # schematic that gets pasted when creating guild  #
  439. # This is WorldEdit compatible                    #
  440. # Save schematic with                             #
  441. # //schem save schematic <name>                   #
  442. # And move to plugins/NovaGuilds/schematic/       #
  443.    schematic: ""
  444.  
  445. # buying a life                                   #
  446.   buylife:
  447.    money: 10
  448.    items:
  449.     - DIAMOND_BLOCK 1
  450.  
  451. # buying a slot                                   #
  452.   buyslot:
  453.    money: 10
  454.    items:
  455.     - DIAMOND_BLOCK 1
  456.  
  457. # buying an effect                                #
  458.   effect:
  459.    money: 100
  460.    items:
  461.     - DIAMOND_BLOCK 1
  462.  
  463. # buying a banner                                 #
  464.   banner:
  465.    money: 0
  466.    items:
  467.     - DIAMOND_BLOCK 1
  468.  
  469.  region:
  470. # size (radius) of auto created region (5=10x10)  #
  471.   autoregionsize: 5
  472. # create price                                    #
  473.   createmoney: 100
  474. # price per block                                 #
  475.   ppb: 1
  476.  
  477. # Admin group (missing values are 0/empty (free)  #
  478. admin:
  479.  guild:
  480.   create:
  481.    schematic: ""
  482.  region:
  483.   autoregionsize: 10
  484.  
  485.  
  486. ###################################################
  487. # Guild's vault                                   #
  488. vault:
  489.  enabled: false
  490.  
  491. # vault item #
  492.  item: CHEST 1 name:&6Guild's_Vault
  493.  
  494. # deny placing items from the list next           #
  495. # to the vault                                    #
  496. denyrelative:
  497.  - HOPPER
  498.  
  499. # vault hologram #
  500. hologram:
  501.  enabled: true
  502.  
  503. # Adding item holograms:                          #
  504. # [ITEM]NAMEORID AMOUNT                           #
  505.  lines:
  506.   - "[ITEM]GOLD_INGOT 1"
  507.   - "&6Guild's Vault"
  508.  
  509. ###################################################
  510. # The Tablist                                     #
  511. # It is available only for 1.8 versions           #
  512. # and requires NorthTab plugin as a dependency    #
  513. # That plugin can be found in local               #
  514. # or remote maven repositories.                   #
  515. # http://repo.novaguilds.pl/tk/northpl/NorthTab/1.1-INDEV/NorthTab-1.1-INDEV.jar
  516. # It can be also found in                         #
  517. # ~/.m2/repository/tk/northpl/NorthTab/           #
  518. # if you've compiled the plugin yourself          #
  519. # All vars and info is available on the website   #
  520. # which is given on the top                       #
  521. #                                                 #
  522. # Players top:                                    #
  523. # By points: {PLAYER_TOP_POINTS_Nx}               #
  524. # By KDR (kills/deaths): {PLAYER_TOP_KDR_Nx}      #
  525. # Replace 'x' with numbers 1-20 and place lines   #
  526. # in the scheme. The plugin will do the rest      #
  527. tablist:
  528. # enabled?                                        #
  529. enabled: false
  530.  
  531. # refresh interval                                #
  532. refresh: 30s
  533.  
  534. # top patterns                                    #
  535. toprow:
  536.  players:
  537.   points: "&8[&c{N}&8] &a{PLAYERNAME} &c{POINTS}"
  538.   kdr: "&8[&c{N}&8] &a{PLAYERNAME} &c{KDR}"
  539.  guilds: "&8[&c{N}&8] &a{GUILDNAME} &c{POINTS}"
  540. scheme:
  541.  - "{PLAYER_NAME}"
  542.  - "Money: &2{PLAYER_BALANCE}$"
  543.  - "Kills: {PLAYER_KILLS}"
  544.  - "Deaths: {PLAYER_DEATHS}"
  545.  - "KDR: {PLAYER_KDR}"
  546.  - "ChatMode: {PLAYER_CHATMODE}"
  547.  - "SpyMode: {PLAYER_SPYMODE}"
  548.  - "Bypass: {PLAYER_BYPASS}"
  549.  - ""
  550.  - "{SERVER_ONLINE}/{SERVER_MAX}"
  551.  - "{WORLD_NAME}"
  552.  - "{WORLD_SPAWN}"
  553.  - ""
  554.  - "{DATE_DAY}-{DATE_MONTH}-{DATE_YEAR}"
  555.  - "{DATE_HOURS}:{DATE_MINUTES}:{DATE_SECONDS}"
  556.  - ""
  557.  - ""
  558.  - ""
  559.  - ""
  560.  - ""
  561.  - "Name: {GUILD_NAME}"
  562.  - "Tag: {GUILD_TAG}"
  563.  - "{GUILD_PLAYERS_ONLINE}/{GUILD_PLAYERS_MAX}"
  564.  - "Lives: {GUILD_LIVES}"
  565.  - "Progress: {GUILD_RAIDPROGRESS}"
  566.  - "PVP: {GUILD_PVP}"
  567.  - "Money: {GUILD_MONEY}"
  568.  - "Points: {GUILD_POINTS}"
  569.  - "Slots: {GUILD_SLOTS}"
  570.  - "OpenInv: {GUILD_OPENINVITATION}"
  571.  - "{GUILD_TIME_REGEN}"
  572.  - "{GUILD_TIME_REST}"
  573.  - "{GUILD_TIME_CREATED}"
  574.  - "{GUILD_TIME_PROTECTION}"
  575.  - "{GUILD_HOME}"
  576.  - ""
  577.  - ""
  578.  - ""
  579.  - ""
  580.  - ""
  581.  - "Guild top"
  582.  - ""
  583.  - "{GUILD_TOP_N1}"
  584.  - "{GUILD_TOP_N2}"
  585.  - "{GUILD_TOP_N3}"
  586.  - "{GUILD_TOP_N4}"
  587.  - "{GUILD_TOP_N5}"
  588.  - "{GUILD_TOP_N6}"
  589.  - "{GUILD_TOP_N7}"
  590.  - "{GUILD_TOP_N8}"
  591.  - "{GUILD_TOP_N9}"
  592.  - "{GUILD_TOP_N10}"
  593.  - ""
  594.  - ""
  595.  - ""
  596.  - ""
  597.  - ""
  598.  - ""
  599.  - ""
  600.  - ""
  601.  - "Players TOP (kdr)"
  602.  - "{PLAYER_TOP_KDR_N1}"
  603.  - "{PLAYER_TOP_KDR_N2}"
  604.  - "{PLAYER_TOP_KDR_N3}"
  605.  - "{PLAYER_TOP_KDR_N4}"
  606.  - "{PLAYER_TOP_KDR_N5}"
  607.  - "{PLAYER_TOP_KDR_N6}"
  608.  - "{PLAYER_TOP_KDR_N7}"
  609.  - "{PLAYER_TOP_KDR_N8}"
  610.  - "{PLAYER_TOP_KDR_N9}"
  611.  - "{PLAYER_TOP_KDR_N10}"
  612.  
  613. ###################################################
  614. # Region settings                                 #
  615. region:
  616.  
  617. # materials used with selection                   #
  618. materials:
  619.  
  620. # highlighting a region                           #
  621.  highlight:
  622.   region:
  623.    corner: DIAMOND_BLOCK
  624.    border: "null"
  625.  
  626. # Ready to resize                                 #
  627.   resize:
  628.    corner: GOLD_BLOCK
  629.    border: "null"
  630.  
  631. # creating regions                                #
  632.  selection:
  633.  
  634. # a valid rectangle                               #
  635.   valid:
  636.    corner: EMERALD_BLOCK
  637.    border: WOOL:14
  638.  
  639. # an invalid rectangle                            #
  640.   invalid:
  641.    corner: EMERALD_BLOCK
  642.    border: WOOL:15
  643.  
  644. # resizing                                        #
  645.  resize:
  646.   corner: GOLD_BLOCK
  647.   border: WOOL:6
  648.  
  649. # auto creating regions (when creating a guild)   #
  650. autoregion: true
  651.  
  652. # minimal region size                             #
  653. minsize: 10
  654.  
  655. # maximum region size                             #
  656. maxsize: 100
  657.  
  658. # particles when entering a region                #
  659. borderparticles: true
  660.  
  661. # water flow at regions                           #
  662. waterflow: true
  663.  
  664. # minimal distance from another guild or region   #
  665. mindistance: 20
  666.  
  667. # allow allies interact                           #
  668. allyinteract: false
  669.  
  670. # tool item                                       #
  671. 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"
  672.  
  673. # Disallow lava/water 5 blocks outside the region #
  674. fluidprotect: 5
  675.  
  676. # commands blocked at region                      #
  677. # when player is not member and not ally          #
  678. # ! commands have to be lowercase !               #
  679. blockedcmds:
  680.  - sethome
  681.  - home
  682.  - back
  683.  
  684. # deny interact (right click etc) at region       #
  685. denyinteract:
  686.  - WOODEN_DOOR
  687.  - DARK_OAK_DOOR
  688.  - SPRUCE_DOOR
  689.  - BIRCH_DOOR
  690.  - JUNGLE_DOOR
  691.  - ACACIA_DOOR
  692.  - DARK_OAK_FENCE_GATE
  693.  - SPRUCE_FENCE_GATE
  694.  - BIRCH_FENCE_GATE
  695.  - JUNGLE_FENCE_GATE
  696.  - ACACIA_FENCE_GATE
  697.  - LEVER
  698.  - DISPENSER
  699.  - STONE_BUTTON
  700.  - WOOD_BUTTON
  701.  - DROPPER
  702.  - HOPPER
  703.  - FENCE_GATE
  704.  - REDSTONE_COMPARATOR_OFF
  705.  - REDSTONE_COMPARATOR_ON
  706.  - REDSTONE_REPEATER
  707.  - TRAP_DOOR
  708.  - CHEST
  709.  - ANVIL
  710.  - ENCHANTMENT_TABLE
  711.  - WORKBENCH
  712.  - FURNACE
  713.  - DIODE_BLOCK_ON
  714.  - DIODE_BLOCK_OFF
  715.  - WOOD_PLATE
  716.  - STONE_PLATE
  717.  - IRON_PLATE
  718.  - GOLD_PLATE
  719.  - ENDER_CHEST
  720.  - ENDER_PORTAL_FRAME
  721.  - NOTE_BLOCK
  722.  - JUKEBOX
  723.  - BEACON
  724.  - ITEM_FRAME
  725.  - BREWING_STAND
  726.  - TRAPPED_CHEST
  727.  
  728. # deny using                                      #
  729. denyuse:
  730.  - ITEM_FRAME
  731.  - ARMOR_STAND
  732.  
  733. # deny hitting mobs                               #
  734. denymobdamage:
  735.  - PIG
  736.  - COW
  737.  - SHEEP
  738.  - HORSE
  739.  - WOLF
  740.  - OCELOT
  741.  - ARMOR_STAND
  742.  
  743. # deny riding mobs                                #
  744. denyriding:
  745.  - HORSE
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement