Guest User

HAS

a guest
May 21st, 2018
379
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.70 KB | None | 0 0
  1. # ---------------------------------------------- #
  2. # General Configuration #
  3. # ---------------------------------------------- #
  4. # If you are unsure of how to use this file, #
  5. # but would like to change how the plugin shows #
  6. # text, visit the BukkitDev page at: #
  7. # http://dev.bukkit.org/bukkit-plugins/skillapi/ #
  8. # and look at the default configuration section #
  9. # ---------------------------------------------- #
  10. Accounts:
  11.  
  12. # The main class group used for GUI displays
  13. main-class-group: 'class'
  14.  
  15. # Currently disabled, ignore this
  16. one-per-class: 'false'
  17.  
  18. # The max number of accounts a normal user can use
  19. max-accounts: 3
  20.  
  21. # The max number of accounts users can have with certain permissions
  22. # must be in the format '<permission>:<accounts>'
  23. perm-accounts:
  24. - 'skillapi.account.admin:10'
  25.  
  26. # While targeting settings aren't necessary most of the time,
  27. # they can help make running ally checks much faster if
  28. # you are able to use them.
  29. Targeting:
  30.  
  31. # Whether or not all monsters are enemies.
  32. # If you are using pets that include zombies/spiders/etc,
  33. # you shouldn't enable this.
  34. monsters-enemy: 'false'
  35.  
  36. # Whether or not all passive mobs are allies.
  37. # If there are custom passive mobs that you can fight,
  38. # you should not enable this.
  39. passive-ally: 'false'
  40.  
  41. # Whether or not all players are allies.
  42. # If you have any PvP, this should not be enabled.
  43. player-ally: 'false'
  44.  
  45. Saving:
  46.  
  47. # Whether or not to auto save data periodically
  48. auto-save: 'false'
  49.  
  50. # How often to auto-save in minutes
  51. minutes: 30
  52.  
  53. # Whether or not to use an SQL database to save
  54. sql-database: 'false'
  55.  
  56. # Details for connecting to the database
  57. sql-details:
  58. host: 'localhost'
  59. port: 54321
  60. database: 'plugins'
  61. username: 'username'
  62. password: 'password'
  63.  
  64. Classes:
  65.  
  66. # Whether or not to use SkillAPI's health system
  67. modify-health: 'true'
  68.  
  69. # The default health for players without a class
  70. classless-hp: 20
  71.  
  72. # Whether or not non-castable auto-leveled skills are shown
  73. show-auto-skills: 'false'
  74.  
  75. # Whether or not attributes are enabled
  76. attributes-enabled: 'false'
  77.  
  78. # Whether or not attributes can be refunded
  79. attributes-downgrade: 'false'
  80.  
  81. # This casts the dynamic skill for the player when they level up,
  82. # allowing you to use dynamic mechanics for level up effects. If
  83. # there is no existing dynamic skill with the name, no effect
  84. # will be played. For level-specific effects, use the level condition.
  85. level-up-skill: 'lvlup'
  86.  
  87. Mana:
  88.  
  89. # Whether or not to use SkillAPI's mana system
  90. enabled: 'true'
  91.  
  92. # How frequently mana is gained in seconds
  93. freq: 1
  94.  
  95. Skills:
  96.  
  97. # Whether or not players are allowed to downgrade skills
  98. allow-downgrade: 'true'
  99.  
  100. # Whether or not messages should be shown on casting a skill
  101. show-messages: 'true'
  102.  
  103. # The radius in which to show cast messages to nearby players
  104. message-radius: 20
  105.  
  106. # Blocks to ignore when using the Block mechanic in dynamic skills
  107. block-filter:
  108. - 'chest'
  109. - 'ender chest'
  110. - 'trapped chest'
  111. - 'redstone*'
  112. - 'wall sign'
  113. - 'sign post'
  114.  
  115. Items:
  116.  
  117. # Whether or not to use SkillAPI's lore requirements feature
  118. lore-requirements: 'true'
  119.  
  120. # The text used for class requirements in the lore
  121. lore-class-text: 'Class Req: '
  122.  
  123. # the text used for level requirements in the lore
  124. lore-level-text: 'Level Req: '
  125.  
  126. # The text used for excluded classes in the lore
  127. lore-exclude-text: 'Excluded Class: '
  128.  
  129. # How many players to check for the requirements each tick
  130. # This should be increased on larger servers to prevent
  131. # large delays before the same player is checked again
  132. players-per-check: 1
  133.  
  134. GUI:
  135.  
  136. # Whether or not to lock the health bar to 10 hearts
  137. # This does not affect total health, only the display
  138. old-health-bar: 'false'
  139.  
  140. # This is what to display using the level bar, if anything.
  141. # Options are: none, mana, level
  142. level-bar: 'none'
  143.  
  144. # This is what to display using the food bar, if anything.
  145. # Options are: none, mana, exp
  146. food-bar: 'none'
  147.  
  148. # Whether or not to use the action bar
  149. use-action-bar: 'false'
  150.  
  151. # The text to display on the action bar.
  152. # Available filters:
  153. # {combo} - the player's current click combo
  154. # {class} - the player's main class name
  155. # {level} - the player's main class level
  156. # {exp} - the player's main class exp
  157. # {expReq} - the player's main class required experience
  158. # {expLeft} - the player's main class experience until the next level
  159. # {health} - the player's current health
  160. # {maxHealth} - the player's max health
  161. # {mana} - the player's current mana
  162. # {maxMana} - the player's max mana
  163. # {name} - the name of the player
  164. # {attr} - the player's attribute points
  165. # {sp} - the player's main class skill points
  166. # {value:<key>} - a skill value
  167. action-bar-text: '{combo}'
  168.  
  169. # Whether or not to display class information on a scoreboard
  170. scoreboard-enabled: 'true'
  171.  
  172. # Whether or not to add a prefix to players with their class name
  173. show-class-name: 'true'
  174.  
  175. # Whether or not to display a player's level below their name
  176. show-class-level: 'true'
  177.  
  178. # Whether or not to use map trees instead of the regular ones
  179. # View map.yml for further customization for this option
  180. # Also add more schemes by adding folders in the "img" folder
  181. map-tree-enabled: 'false'
  182.  
  183. Click Combos:
  184.  
  185. # Whether or not to use click combinations
  186. enabled: 'false'
  187.  
  188. # Whether or not left clicks are allowed at all
  189. use-click-left: 'true'
  190.  
  191. # Whether or not right clicks are allowed at all
  192. use-click-right: 'true'
  193.  
  194. # Whether or not shift clicks are allowed at all
  195. use-click-shift: 'false'
  196.  
  197. # How many clicks are needed to perform a combo
  198. combo-size: 4
  199.  
  200. # Inactivity time in seconds before clicks for a combo are reset
  201. click-time: 1.0
  202.  
  203. Skill Bar:
  204.  
  205. # Whether or not to use skill bars
  206. enabled: 'false'
  207.  
  208. # Whether or not to show skill cooldowns in the skill bar
  209. show-cooldown: 'true'
  210.  
  211. # The item to use as a placeholder in the skill bar
  212. empty-icon:
  213. material: 'PUMPKIN_SEEDS'
  214. data: 0
  215. text: '&7Unassigned'
  216.  
  217. # The default layout for skill bars
  218. # Players can customize unlocked slots
  219. layout:
  220. 1:
  221. skill: 'true'
  222. locked: 'false'
  223. 2:
  224. skill: 'true'
  225. locked: 'false'
  226. 3:
  227. skill: 'true'
  228. locked: 'false'
  229. 4:
  230. skill: 'true'
  231. locked: 'false'
  232. 5:
  233. skill: 'true'
  234. locked: 'false'
  235. 6:
  236. skill: 'false'
  237. locked: 'false'
  238. 7:
  239. skill: 'false'
  240. locked: 'false'
  241. 8:
  242. skill: 'false'
  243. locked: 'false'
  244. 9:
  245. skill: 'false'
  246. locked: 'false'
  247.  
  248. Experience:
  249.  
  250. # Whether or not to use vanilla exp drops for class exp
  251. # Note: any dropped exp will not count towards class exp,
  252. # only enabled sources will count. By default, this is only
  253. # mob deaths.
  254. use-exp-orbs: 'false'
  255.  
  256. # Whether or not to prevent gaining experience from mobs
  257. # spawned via a mob spawner block
  258. block-mob-spawner: 'true'
  259.  
  260. # Whether or not to prevent gaining experience from mobs
  261. # spawned vai a mob spawn egg
  262. block-mob-egg: 'false'
  263.  
  264. # Whether or not to prevent gaining experience while
  265. # in creative mode
  266. block-creative: 'true'
  267.  
  268. # Whether or not to display a message when gaining experience
  269. exp-message-enabled: 'true'
  270.  
  271. # Whether or not to display a message when gaining a level
  272. level-message-enabled: 'true'
  273.  
  274. # The formula used for calculating required experience
  275. # The formula is: x*lvl*lvl + y*lvl + z
  276. formula:
  277. x: 1
  278. y: 8
  279. z: 16
  280.  
  281. # The experience yields from each mob type
  282. # When exp orbs are enabled, these values are ignored
  283. yields:
  284. blaze: 10
  285. cavespider: 5
  286. creeper: 3
  287. enderdragon: 400
  288. enderman: 5
  289. ghast: 5
  290. giant: 20
  291. irongolem: 10
  292. magmacube: 1
  293. pigzombie: 5
  294. player: 5
  295. silverfish: 2
  296. skeleton: 3
  297. slime: 1
  298. spider: 3
  299. witch: 3
  300. wither: 500
  301. witherskeleton: 5
  302. zombie: 2
  303.  
  304. # How much logging to do when loading SkillAPI
  305. # When testing setting up skills/classes, increase this to 1-5
  306. Logging: 0
  307.  
  308. Worlds:
  309.  
  310. # Whether or not to enable the world restriction
  311. enable: 'false'
  312.  
  313. # Whether or not to use the list as an enabling list
  314. # If true, only worlds in the list will let players use SkillAPI
  315. # If false, any world not in the list will let players use SkillAPI
  316. use-as-enabling: 'true'
  317.  
  318. # The worlds to include in the enable/disable list
  319. worlds:
  320. - 'world'
Add Comment
Please, Sign In to add comment