Advertisement
Guest User

SkyRutbe

a guest
Jul 17th, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.99 KB | None | 0 0
  1. ##########################################################################################
  2. # Challenges
  3. # Rewards and required items have to be described using Bukkit Materials
  4. # and be exactly correct
  5. # Do not use Type Id's - they will not work
  6. # Challenges can be one of three types - inventory, island or level.
  7. # inventory - means the player must have the items on them
  8. # island - means the items have to be on the island and within 10 blocks of the player
  9. # entities are also supported, e.g., COW.
  10. # level - means the island level has to be equal or over this amount.
  11. # If level is set as nothing '', then the challenge is a free challenge and can be
  12. # done at any time.
  13. # Challenges can be repeatable only if they are inventory challenges
  14. # permissions can be given as a reward
  15. #
  16. # Reward Commands - commands can be run when a challenge is completed and repeated
  17. # Commands are:
  18. # rewardcommands:
  19. # - command1
  20. # - command2
  21. # repeatrewardcommands:
  22. # - command1
  23. # - command2
  24. # The commands are listed and run in order. Do not put a / in front of the command.
  25. # The token [player] will be replaced with the player's name.
  26. # Example:
  27. # rewardcommands:
  28. # - pex promote [player]
  29. # - heal [player]
  30. # - warp winner_circle [player]
  31. # If a command fails, it will be noted in the console.
  32. #
  33. # The format for POTIONS is as follows:
  34. #
  35. # Format POTION:NAME:<LEVEL>:<EXTENDED>:<SPLASH/LINGER>:QTY
  36. # LEVEL, EXTENDED, SPLASH, LINGER are optional.
  37. # LEVEL is a number, 1 or 2
  38. # LINGER is for V1.9 servers and later
  39. # Examples:
  40. # POTION:STRENGTH:1:EXTENDED:SPLASH:1
  41. # POTION:INSTANT_DAMAGE:2::LINGER:2
  42. # POTION:JUMP:2:NOTEXTENDED:NOSPLASH:1
  43. # POTION:WEAKNESS::::1 - any weakness potion
  44. #
  45. # Valid potion names are:
  46. # WATER, REGEN, SPEED, FIRE_RESISTANCE, POISON, INSTANT_HEAL, NIGHT_VISION, WEAKNESS,
  47. # STRENGTH, SLOWNESS, JUMP, INSTANT_DAMAGE, WATER_BREATHING, INVISIBILITY
  48. # For V1.9 these are also available:
  49. # LUCK, MUNDANE, THICK, AWKWARD
  50. #
  51. #
  52. # Reseting islands and challenges - usually challenges are reset when a player resets
  53. # their island (see resetchallenges in config.yml). You can stop some challenges from
  54. # being reset by using resetallowed:false in the challenge.
  55. ##########################################################################################
  56.  
  57. challenges:
  58. # Challenge levels - list as many as you like. If a challenge's level is '' it can
  59. # be done anytime. You cannot name a challenge the same as a level.
  60. levels: 'Novice Competent Expert Advanced Elite'
  61.  
  62. # The number of undone tasks that can be left on a level before unlocking next level
  63. waiveramount: 1
  64.  
  65. # Free levels - which levels above should be auto done when reached, therefore unlocking next level.
  66. # Example:
  67. # freelevels: 'Novice' will immediately put player onto Competent level challenges
  68. # freelevels: 'Novice Competent' will make all Novice, Competent and Expert challenges available immediately.
  69. # freelevels: 'Competent' will open Competent and Expert levels once Novice is complete
  70. freelevels: ''
  71.  
  72. # This section determines what happens when a player unlocks a new level
  73. # The subname should correspond to the levels listed above
  74. # Note that there is no section for the first level as it is automatically unlocked
  75. levelUnlock:
  76. Competent:
  77. # What additional message to send player
  78. message: 'Congratulations - you unlocked the &9Competent level!'
  79. rewardDesc: 'A diamond!'
  80. itemReward: 'DIAMOND:1'
  81. moneyReward: 100
  82. expReward: 100
  83. # List permissions separated by spaces
  84. permissionReward: ''
  85. # Commands to run on this player. Use [player] for their name.
  86. commands:
  87. #- kit tools [player]
  88. #- some other command
  89. Expert:
  90. # What additional message to send player
  91. message: 'Congratulations - you unlocked the &aExpert level!'
  92. rewardDesc: '3 diamonds!'
  93. itemReward: 'DIAMOND:3'
  94. moneyReward: 100
  95. expReward: 100
  96. permissionReward: ''
  97. # Commands to run on this player. Use [player] for their name.
  98. commands:
  99. #- kit tools [player]
  100. #- some other command
  101. Advanced:
  102. # What additional message to send player
  103. message: 'Congratulations - you unlocked the &bAdvanced level!'
  104. rewardDesc: '5 diamonds!'
  105. itemReward: 'DIAMOND:5'
  106. moneyReward: 100
  107. expReward: 100
  108. permissionReward: ''
  109. # Commands to run on this player. Use [player] for their name.
  110. commands:
  111. #- kit tools [player]
  112. #- some other command
  113. Elite:
  114. # What additional message to send player
  115. message: 'Congratulations - you unlocked the &dElite level!'
  116. rewardDesc: '7 diamonds!'
  117. itemReward: 'DIAMOND:7'
  118. moneyReward: 100
  119. expReward: 100
  120. permissionReward: ''
  121. # Commands to run on this player. Use [player] for their name.
  122. commands:
  123. #- kit tools [player]
  124. #- some other command
  125.  
  126. # Challenge list
  127. # Challenge names must be in lowercase. Do not use the same name as a level!
  128. challengeList:
  129. skylord:
  130. friendlyname: 'SkyLord'
  131. description: 'Adani 100000 Level Yap'
  132. icon: IRON_BLOCK
  133. level: 'Elite'
  134. type: level
  135. requiredItems: 100000
  136. takeItems: false
  137. permissionReward: 'skylord.ol'
  138. repeatable: false
  139. repeatItemReward: ''
  140. repeatRewardText: ''
  141. repeatMoneyReward: 0
  142. repeatExpReward: 0
  143. skyking:
  144. friendlyname: 'SkyKing'
  145. description: 'Adani 150000 Level Yap'
  146. icon: GOLD_BLOCK
  147. level: 'Elite'
  148. type: level
  149. requiredItems: 150000
  150. takeItems: false
  151. permissionReward: 'skyking.ol'
  152. repeatable: false
  153. repeatItemReward: ''
  154. repeatRewardText: ''
  155. repeatMoneyReward: 0
  156. repeatExpReward: 0
  157. skymaster:
  158. friendlyname: 'SkyMaster'
  159. description: 'Adani 250000 Level Yap'
  160. icon: DIAMOND_BLOCK
  161. level: 'Elite'
  162. type: level
  163. requiredItems: 250000
  164. takeItems: false
  165. permissionReward: 'skymaster.ol'
  166. repeatable: false
  167. repeatItemReward: ''
  168. repeatRewardText: ''
  169. repeatMoneyReward: 0
  170. repeatExpReward: 0
  171. skylegend:
  172. friendlyname: 'SkyLegend'
  173. description: 'Adani 500000 Level Yap'
  174. icon: EMERALD_BLOCK
  175. level: 'Elite'
  176. type: level
  177. requiredItems: 500000
  178. takeItems: false
  179. permissionReward: 'skylegend.ol'
  180. repeatable: false
  181. repeatItemReward: ''
  182. repeatRewardText: ''
  183. repeatMoneyReward: 0
  184. repeatExpReward: 0
  185. skykaos:
  186. friendlyname: 'SkyKaos'
  187. description: 'Adani 800000 Level Yap'
  188. icon: REDSTONE_BLOCK
  189. level: 'Elite'
  190. type: level
  191. requiredItems: 800000
  192. takeItems: false
  193. permissionReward: 'skykaos.ol'
  194. repeatable: false
  195. repeatItemReward: ''
  196. repeatRewardText: ''
  197. repeatMoneyReward: 0
  198. repeatExpReward: 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement