Guest User

Untitled

a guest
Oct 7th, 2017
33
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.10 KB | None | 0 0
  1. # Config.yml
  2. # Welcome to MCPerks!
  3. # Perks are located in Perks folder
  4. # Permissions are mcperks.(filename) - filename without extenstion
  5.  
  6. # Enable debug mode
  7. Debug: true
  8.  
  9. # Show extra debug info
  10. # Only needed in extreme cases
  11. ExtraDebug: false
  12.  
  13. # Valid Options:
  14. # - FLAT
  15. # - SQLITE
  16. # - MYSQL
  17. DataStorage: FLAT
  18.  
  19. # Information for mysql
  20. MySQL:
  21. Host: ''
  22. # Default port is 3306
  23. Port: 3306
  24. Database: ''
  25. Username: ''
  26. Password: ''
  27. # Max number of connections
  28. MaxConnections: 1
  29. # Wether or not to preload table
  30. # Increases performance greatly when using mysql
  31. # Set to false if you want multiple servers using the same table
  32. PreLoadTable: true
  33.  
  34. # Wether or not to load command aliases
  35. LoadCommandAliases: true
  36.  
  37. # If true only one perk can be activated at a time
  38. # If false, unlimited number of perks can be activated at a time
  39. PerkQue: true
  40.  
  41. # If true, players can only see perks in /mcperks
  42. # they have permission to
  43. # Default is True
  44. RequirePermToView: true
  45.  
  46. # Give Perks for the player that activated it only
  47. # Old config option, may not work, use the one below
  48. #PerPlayerPerks: false
  49.  
  50. # Valid options
  51. # - ALL
  52. # - PLAYER
  53. # - TOWNY
  54. PerkSystemType: 'ALL'
  55.  
  56. # At how many seconds left a count should be broadcasted
  57. CountDownTimes:
  58. - '10'
  59. - '3'
  60. - '2'
  61. - '1'
  62.  
  63. CountDownEffect:
  64. Firework:
  65. Enabled: false
  66. Power: 2
  67. # Colors can be found here:
  68. # https://hub.spigotmc.org/javadocs/spigot/org/bukkit/Color.html
  69. Colors:
  70. - GRAY
  71. - SILVER
  72. FadeOutColor:
  73. - RED
  74. Trail: true
  75. Flicker: true
  76. # Types can be found here:
  77. # https://hub.spigotmc.org/javadocs/spigot/org/bukkit/FireworkEffect.Type.html
  78. Types:
  79. - BALL_LARGE
  80.  
  81. BossBar:
  82. Enabled: true
  83. # Message to send
  84. Message: '&aBossbar'
  85. # Bar Colors:
  86. # https://hub.spigotmc.org/javadocs/spigot/org/bukkit/boss/BarColor.html
  87. Color: 'BLUE'
  88. # Bar Styles:
  89. # https://hub.spigotmc.org/javadocs/spigot/org/bukkit/boss/BarStyle.html
  90. Style: 'SOLID'
  91. # Precentage for bar
  92. Progress: 0.50
  93. # Delay until bar goes away (in ticks)
  94. Delay: 10
  95.  
  96. DeactivationEffect:
  97. Firework:
  98. Enabled: false
  99. Power: 2
  100. # Colors can be found here:
  101. # https://hub.spigotmc.org/javadocs/spigot/org/bukkit/Color.html
  102. Colors:
  103. - GRAY
  104. - SILVER
  105. FadeOutColor:
  106. - RED
  107. Trail: true
  108. Flicker: true
  109. # Types can be found here:
  110. # https://hub.spigotmc.org/javadocs/spigot/org/bukkit/FireworkEffect.Type.html
  111. Types:
  112. - BALL_LARGE
  113.  
  114. # Default Item lore
  115. # Can also put this in each perk file
  116. # to define specific messages for each perk in gui
  117. # PlaceHolders:
  118. # %Description% - Perk description
  119. # %HasPerm% - True/False
  120. # %CoolDownLeft% - Seconds left until cooldown over
  121. # %CoolDown% - Perk cooldown
  122. Lore:
  123. Available:
  124. - '&aClick to activate perk'
  125. - '&aCoolDown: %CoolDown%'
  126. - '&aDescription: %Description%'
  127. Active:
  128. - '&aCurrently active'
  129. - '&aTimeLeft: %TimeLeft%'
  130. InCoolDown:
  131. - '&aCoolDownLeft: %CoolDownLeft%'
  132. LimitReached:
  133. - '&aPerk limit reached'
Add Comment
Please, Sign In to add comment