Advertisement
Guest User

Untitled

a guest
Aug 18th, 2016
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.49 KB | None | 0 0
  1. # RankMissions by Terrobility
  2. # Skype: huntergplays and Spigot: Terrobility <3
  3.  
  4. # x=x=x=x=x=x=x=x=x
  5. # | CONFIGURATION |
  6. # x=x=x=x=x=x=x=x=x
  7. # Please don't change the config version.
  8. config-version: 2
  9.  
  10. # To store all completed missions per player.
  11. database:
  12. # Either 'mysql' or 'sqlite'.
  13. type: sqlite
  14. mysql:
  15. host: localhost
  16. port: 3306
  17. database-name: rankmissions
  18. user: root
  19. password: password
  20.  
  21. plugin-messages:
  22. no-permission:
  23. - "&cYou don't have permission."
  24. invalid-args:
  25. - "&cInvalid arguments!"
  26. help-menu:
  27. - "&8 ---- &bCommands for RankMissions &8-- &7Page &d1 &8----"
  28. - "&6/rankmissions&f: &7Open this help menu."
  29. - "&6/rankmissions &estats [player]&f: &7See what missions a player has completed."
  30. - "&6/rankmissions &cgive [player] [mission]&f: &7Give a player a mission."
  31. - "&6/rankmissions &cgiveall [mission]&f: &7Give all online players missions."
  32. given-item:
  33. - "&aYou were given the item to spawn &2%mission%&a!"
  34. no-space:
  35. - "&cThere was no space in your inventory so the item was dropped where you're standing!"
  36. required-missions-not-completed:
  37. - "&cYou cannot activate this mission because you have not completed the required missions!"
  38. completed-mission-that-blacklists:
  39. - "&cYou can't complete this mission because you have completed another mission that disallows you from doing this one!"
  40. no-repeat:
  41. - "&cYou're not allowed to repeat this mission!"
  42. already-completing-mission:
  43. - "&cYou are already completing a mission!"
  44. failed-to-spawn-entity:
  45. - "&cYou can't spawn the entity here!"
  46. died-by-natural-causes:
  47. - "&cThe mob for the %mission% mission started by %player% died by natural causes! Better luck next time."
  48. not-in-region:
  49. - "&cYou can only start this mission in a warzone!"
  50.  
  51. region-needs-mob-spawning-allow: false
  52.  
  53. missions:
  54. 'Fazling': # Please rename the mission to something else! This is only an example.
  55. item:
  56. # Materials: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/Material.html
  57. type: "HAY_BLOCK"
  58. data: 0
  59. name: "&6Fazling RankQuest "
  60. lore:
  61. - "&7Right click me to"
  62. - "&7start a rank mission!"
  63. # The region must have mob spawning allowed.
  64. activate-in-region:
  65. - "WarZone"
  66. settings:
  67. start-delay: 10
  68. # If true, it would require 'rankmissions.examplemission2' since that's the name you chose for the mission.
  69. use-permission: false
  70. repeatable: false
  71. required-missions: []
  72. blacklisted-if-mission-complete:
  73. - "ExampleMission3"
  74. entity:
  75. # Entity types: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/entity/EntityType.html
  76. mob: "COW"
  77. name: "&e%player%'s Rank Mission Cow"
  78. health: 200.0
  79. # Follows format of EFFECT:LEVEL. The time will always be infinite.
  80. # Effect list: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/potion/PotionEffectType.html
  81. effects:
  82. - "SPEED:5"
  83. actions:
  84. on-click:
  85. - "broadcast %player% is about to start a %mission% mission at %x%, %y%, %z%!"
  86. on-start:
  87. - "broadcast %player% started a %mission% mission at %x%, %y%, %z%!"
  88. on-complete:
  89. - "broadcast %killer% has completed %player%'s mission!"
  90. - "zperms player %killer% addgroup example"
  91. - "msg %killer% Congratulations on winning the rank mission! Your rank has been applied."
  92. - "manuadd %player% Fazling"
  93. # This is the mission name. You can add as many missions as you want.
  94. 'Fazed': # Please rename the mission to something else! This is only an example.
  95. item:
  96. # Materials: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/Material.html
  97. type: "HAY_BLOCK"
  98. data: 0
  99. name: "&6Fazed RankQuest "
  100. lore:
  101. - "&7Right click me to"
  102. - "&7start a rank mission!"
  103. # The region must have mob spawning allowed.
  104. activate-in-region:
  105. - "WarZone"
  106. settings:
  107. start-delay: 10
  108. # If true, it would require 'rankmissions.examplemission2' since that's the name you chose for the mission.
  109. use-permission: false
  110. repeatable: false
  111. required-missions: []
  112. blacklisted-if-mission-complete:
  113. - "ExampleMission3"
  114. entity:
  115. # Entity types: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/entity/EntityType.html
  116. mob: "COW"
  117. name: "&e%player%'s Rank Mission Cow"
  118. health: 200.0
  119. # Follows format of EFFECT:LEVEL. The time will always be infinite.
  120. # Effect list: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/potion/PotionEffectType.html
  121. effects:
  122. - "SPEED:5"
  123. actions:
  124. on-click:
  125. - "broadcast %player% is about to start a %mission% mission at %x%, %y%, %z%!"
  126. on-start:
  127. - "broadcast %player% started a %mission% mission at %x%, %y%, %z%!"
  128. on-complete:
  129. - "broadcast %killer% has completed %player%'s mission!"
  130. - "zperms player %killer% addgroup example"
  131. - "msg %killer% Congratulations on winning the rank mission! Your rank has been applied."
  132. - "manuadd %player% Fazed"
  133. # This is the mission name. You can add as many missions as you want.
  134. 'Haxor': # Please rename the mission to something else! This is only an example.
  135. item:
  136. # Materials: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/Material.html
  137. type: "HAY_BLOCK"
  138. data: 0
  139. name: "&6Haxor RankQuest "
  140. lore:
  141. - "&7Right click me to"
  142. - "&7start a rank mission!"
  143. # The region must have mob spawning allowed.
  144. activate-in-region:
  145. - "WarZone"
  146. settings:
  147. start-delay: 10
  148. # If true, it would require 'rankmissions.examplemission2' since that's the name you chose for the mission.
  149. use-permission: false
  150. repeatable: false
  151. required-missions: []
  152. blacklisted-if-mission-complete:
  153. - "ExampleMission3"
  154. entity:
  155. # Entity types: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/entity/EntityType.html
  156. mob: "COW"
  157. name: "&e%player%'s Rank Mission Cow"
  158. health: 200.0
  159. # Follows format of EFFECT:LEVEL. The time will always be infinite.
  160. # Effect list: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/potion/PotionEffectType.html
  161. effects:
  162. - "SPEED:5"
  163. actions:
  164. on-click:
  165. - "broadcast %player% is about to start a %mission% mission at %x%, %y%, %z%!"
  166. on-start:
  167. - "broadcast %player% started a %mission% mission at %x%, %y%, %z%!"
  168. on-complete:
  169. - "broadcast %killer% has completed %player%'s mission!"
  170. - "zperms player %killer% addgroup example"
  171. - "msg %killer% Congratulations on winning the rank mission! Your rank has been applied."
  172. - "Voucher %player% Haxor"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement