Advertisement
Guest User

Komodo

a guest
Oct 4th, 2016
389
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 11.69 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: 1
  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. # This is the mission name. You can add as many missions as you want.
  55. 'VipRank': # Please rename the mission to something else! This is only an example.
  56. item:
  57. # Materials: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/Material.html
  58. type: "SPAWN_EGG"
  59. data: 0
  60. name: "&eRank Mission"
  61. lore:
  62. - "&7Right click me to"
  63. - "&7Start the rank mission!"
  64. # This checks against the WorldGuard region.
  65. activate-in-region:
  66. - "warzone"
  67. - "pvp"
  68. settings:
  69. start-delay: 10
  70. # If true, it would require 'rankmissions.examplemission2' since that's the name you chose for the mission.
  71. use-permission: false
  72. repeatable: false
  73. required-missions: []
  74. blacklisted-if-mission-complete:
  75. - "ExampleMission3"
  76. entity:
  77. # Entity types: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/entity/EntityType.html
  78. mob: "COW"
  79. name: "&e%player%'s Rank Mission"
  80. health: 50.0
  81. # Follows format of EFFECT:LEVEL. The time will always be infinite.
  82. # Effect list: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/potion/PotionEffectType.html
  83. effects:
  84. - "SPEED:5"
  85. # Commands to be run.
  86. actions:
  87. on-click:
  88. - "broadcast %player% is about to start a %mission% mission at %x%, %y%, %z%!"
  89. on-start:
  90. - "broadcast %player% started a %mission% mission at %x%, %y%, %z%!"
  91. on-complete:
  92. - "broadcast %killer% has completed %player%'s mission!"
  93. - "rv give %killer% Vip 1"
  94. - "msg %killer% Congratulations on winning the rank mission! Your rank has been given."
  95. 'Vip': # Please rename the mission to something else! This is only an example.
  96. item:
  97. # Materials: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/Material.html
  98. type: "PAPER"
  99. data: 0
  100. name: "&eRank Mission"
  101. lore:
  102. - "&7Right click me to"
  103. - "&7Start the &2Vip&r&7 rank mission!"
  104. # This checks against the WorldGuard region.
  105. activate-in-region:
  106. - "warzone"
  107. - "pvp"
  108. settings:
  109. start-delay: 10
  110. # If true, it would require 'rankmissions.examplemission2' since that's the name you chose for the mission.
  111. use-permission: false
  112. repeatable: false
  113. required-missions: []
  114. blacklisted-if-mission-complete:
  115. - "ExampleMission3"
  116. entity:
  117. # Entity types: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/entity/EntityType.html
  118. mob: "COW"
  119. name: "&e%player%'s Rank Mission"
  120. health: 50.0
  121. # Follows format of EFFECT:LEVEL. The time will always be infinite.
  122. # Effect list: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/potion/PotionEffectType.html
  123. effects:
  124. - "SPEED:5"
  125. # Commands to be run.
  126. actions:
  127. on-click:
  128. - "broadcast %player% is about to start a %mission% mission at %x%, %y%, %z%!"
  129. on-start:
  130. - "broadcast %player% started a %mission% mission at %x%, %y%, %z%!"
  131. on-complete:
  132. - "broadcast %killer% has completed %player%'s mission!"
  133. - "rv give %killer% Vip 1"
  134. - "msg %killer% Congratulations on winning the rank mission! Your rank has been given."
  135. 'Mvp': # Please rename the mission to something else! This is only an example.
  136. item:
  137. # Materials: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/Material.html
  138. type: "PAPER"
  139. data: 0
  140. name: "&eRank Mission"
  141. lore:
  142. - "&7Right click me to"
  143. - "&7Start the &2Mvp&r&7 rank mission!"
  144. # This checks against the WorldGuard region.
  145. activate-in-region:
  146. - "warzone"
  147. - "pvp"
  148. settings:
  149. start-delay: 10
  150. # If true, it would require 'rankmissions.examplemission2' since that's the name you chose for the mission.
  151. use-permission: false
  152. repeatable: false
  153. required-missions: []
  154. blacklisted-if-mission-complete:
  155. - "Vip"
  156. entity:
  157. # Entity types: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/entity/EntityType.html
  158. mob: "COW"
  159. name: "&e%player%'s Rank Mission Cow"
  160. health: 100.0
  161. # Follows format of EFFECT:LEVEL. The time will always be infinite.
  162. # Effect list: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/potion/PotionEffectType.html
  163. effects:
  164. - "SPEED:5"\ 'Mvp': # Please rename the mission to something else! This is only an example.
  165. item:
  166. # Materials: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/Material.html
  167. type: "PAPER"
  168. data: 0
  169. name: "&eRank Mission"
  170. lore:
  171. - "&7Right click me to"
  172. - "&7Start the &2Mvp&r&7 rank mission!"
  173. # This checks against the WorldGuard region.
  174. activate-in-region:
  175. - "warzone"
  176. - "pvp"
  177. settings:
  178. start-delay: 10
  179. # If true, it would require 'rankmissions.examplemission2' since that's the name you chose for the mission.
  180. use-permission: false
  181. repeatable: false
  182. required-missions: []
  183. blacklisted-if-mission-complete:
  184. - "Vip"
  185. entity:
  186. # Entity types: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/entity/EntityType.html
  187. mob: "COW"
  188. name: "&e%player%'s Rank Mission"
  189. health: 100.0
  190. # Follows format of EFFECT:LEVEL. The time will always be infinite.
  191. # Effect list: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/potion/PotionEffectType.html
  192. effects:
  193. - "SPEED:5"
  194. 'Crate': # Please rename the mission to something else! This is only an example.
  195. item:
  196. # Materials: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/Material.html
  197. type: "PAPER"
  198. data: 0
  199. name: "&cCrate &eMission"
  200. lore:
  201. - "&7Right click me to"
  202. - "&7Start the &2Komodo Crate&r&7 mission!"
  203. # This checks against the WorldGuard region.
  204. activate-in-region:
  205. - "warzone"
  206. - "pvp"
  207. settings:
  208. start-delay: 10
  209. # If true, it would require 'rankmissions.examplemission2' since that's the name you chose for the mission.
  210. use-permission: false
  211. repeatable: true
  212. required-missions: []
  213. blacklisted-if-mission-complete:
  214. entity:
  215. # Entity types: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/entity/EntityType.html
  216. mob: "COW"
  217. name: "&e%player%'s Rank Mission Cow"
  218. health: 100.0
  219. # Follows format of EFFECT:LEVEL. The time will always be infinite.
  220. # Effect list: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/potion/PotionEffectType.html
  221. effects:
  222. - "SPEED:5"
  223. # Commands to be run.
  224. actions:
  225. on-click:
  226. - "broadcast %player% is about to start a %mission% mission at %x%, %y%, %z%!"
  227. on-start:
  228. - "broadcast %player% started a %mission% mission at %x%, %y%, %z%!"
  229. on-complete:
  230. - "broadcast %killer% has completed %player%'s mission!"
  231. - "rv give %killer% Komodo 1"
  232. - "msg %killer% Congratulations on winning the rank mission! Your rank has been given."
  233. 'KomodoClassic': # Please rename the mission to something else! This is only an example.
  234. item:
  235. # Materials: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/Material.html
  236. type: "PAPER"
  237. data: 0
  238. name: "&cKit &eMission"
  239. lore:
  240. - "&7Right click me to"
  241. - "&7Start the &2Komodo Classic&r&7 mission!"
  242. # This checks against the WorldGuard region.
  243. activate-in-region:
  244. - "warzone"
  245. - "pvp"
  246. settings:
  247. start-delay: 10
  248. # If true, it would require 'rankmissions.examplemission2' since that's the name you chose for the mission.
  249. use-permission: false
  250. repeatable: true
  251. required-missions: []
  252. blacklisted-if-mission-complete:
  253. entity:
  254. # Entity types: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/entity/EntityType.html
  255. mob: "COW"
  256. name: "&e%player%'s Kit Mission Cow"
  257. health: 100.0
  258. # Follows format of EFFECT:LEVEL. The time will always be infinite.
  259. # Effect list: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/potion/PotionEffectType.html
  260. effects:
  261. - "SPEED:5"
  262. # Commands to be run.
  263. actions:
  264. on-click:
  265. - "broadcast %player% is about to start a Kit mission at %x%, %y%, %z%!"
  266. on-start:
  267. - "broadcast %player% started a Kit mission at %x%, %y%, %z%!"
  268. on-complete:
  269. - "broadcast %killer% has completed %player%'s mission!"
  270. - "rv give %killer% KomodoClassic 1"
  271. - "msg %killer% Congratulations on winning the rank mission! Your rank has been given."
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement