Advertisement
Guest User

Untitled

a guest
May 8th, 2017
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 33.94 KB | None | 0 0
  1. # ======================================================
  2. #
  3. # ProQuests Version: 1.5.1.5 build: 38604
  4. # Created by: JC_Plays_MC
  5. #
  6. # ======================================================
  7. #
  8. # Quests File
  9. #
  10. # This is the quest file where all quest data will be saved and stored. You can
  11. # create quests directly from this file however it is recommended that you use the
  12. # in-game editor as it will assist you in making sure everything is formatted correctly.
  13. #
  14. # ======================================================
  15. #
  16. # Quests Example
  17. #
  18. # Quests you want to be automatically started
  19. # auto_start:
  20. # - <Quest Identifier>
  21. #
  22. # quests:
  23. # <Quest Identifier>:
  24. # type: BREAK_QUEST
  25. # total: 50
  26. # duration: 600
  27. # repeat_delay: 600
  28. # repeatable: true
  29. # required_quests: []
  30. # allowed_worlds: []
  31. # allowed_materials:
  32. # - STONE;0
  33. # complete_actions:
  34. # - '[Message] &aYou completed it!'
  35. # - '[ConsoleCommand] op %player%'
  36. #
  37. # ======================================================
  38. #
  39. # Quest Type:
  40. # Each quest has a unique type identifier which must be specified per quest as they all
  41. # have unqiue attributes and toggles that will be checked for. For a complete description and a
  42. # list of quest attributes be sure to view the plugin page.
  43. #
  44. # Placeholders:
  45. # There are a bunch of placeholders built into the plugin that can be used in messages or
  46. # item names, lore etc. These can all be found on the plugin page.
  47. #
  48. # Actions:
  49. # Actions are the method used to reward players for completing quests. Whether it be executing a
  50. # command or giving a player an item there are extensive ways to reward players. Below are the valid
  51. # actions that can be used in the plugin. Also you can use placeholders in the actions to have even
  52. # more customization options.
  53. #
  54. # ** Please note that all actions are case-sensitive **
  55. #
  56. # [Chance=<percent>] [<action>] - Chance out of 100% that this action will be performed
  57. # [Delay=<time>] [<action>] - Delays the action to be performed after the delay period in seconds
  58. # [PlayerCommand] <command> - Executes the command as a player
  59. # [ConsoleCommand] <command> - Executes the command as the console
  60. # [OperatorCommand] <command> - Executes the command as the console
  61. # [Broadcast] <message> - Broadcasts the following message to the server
  62. # [Message] <message> - Sends the following message to the player
  63. # [JSONBroadcast] <message> - Sends the following json message to the server
  64. # [JSONMessage] <message> - Sends the following json to the player
  65. # [Sound] <sound value> - Plays the sound for the player
  66. # [VaultGive] <amount> - Adds the amount to the players Vault economy balance
  67. # [VaultTake] <amount> - Take the amount from the players Vault economy balance
  68. # [GiveItem] <material;amount> - Gives the specified item to the player
  69. # [GiveItem] <material;amount;data> - Gives the specified item to the player
  70. # [GiveItem] <material;amount;data;name> - Gives the specified item to the player
  71. # [Teleport] <world name;x;y;z> - Teleports the player to the specified coordinates
  72. # [Teleport] <world name;x;y;z;yaw;pitch> - Teleports the player to the specified coordinates
  73. # [TitleBroadcast] <title> - Displays the title for the server
  74. # [TitleBroadcast] <title>;<subtitle> - Displays the title & subtitle for the server
  75. # [Title] <title> - Displays the title for the player
  76. # [Title] <title>;<subtitle> - Displays the title & subtitle for the player
  77. # [ActionBarBroadcast] <message> - Displays the message in the actionbar for the server
  78. # [ActionBar] <message> - Displays the message in the actionbar for the player
  79. # [Bungee] <server> - Sends the player to the specified bungee server
  80. # [AddPoints] <amount> - Adds X points for the player
  81. # [SubtractPoints] <amount> - Subtracts X points from the player
  82. #
  83. # ======================================================
  84. quests:
  85. Obsidian_Breaker_1:
  86. type: BREAK_QUEST
  87. total: 64
  88. duration: -1
  89. repeat_delay: 31622400
  90. repeatable: false
  91. cancelable: false
  92. command_start: true
  93. required_quests: Wood_Breaker_3
  94. allowed_worlds: []
  95. allowed_materials:
  96. - OBSIDIAN;0
  97. start_actions:
  98. - '[Title] &aGoal:;&7Break 64 Obsidian Blocks!'
  99. complete_actions:
  100. - '[Title] &eQuest Completed!;&6Reward: &a$&f50k &9 1 Obsidian Genbucket;&f A chance to win a Key'
  101. - '[ConsoleCommand] eco give %player% 50000'
  102. - '[ConsoleCommand] instawall give %player% Obsidian 1'
  103. - '[Chance=5] [ConsoleCommand] crate gk %player% Mystic 1'
  104. Obsidian_Breaker_2:
  105. type: BREAK_QUEST
  106. total: 128
  107. duration: -1
  108. repeat_delay: 31622400
  109. repeatable: false
  110. cancelable: false
  111. command_start: true
  112. required_quests: Obsidian_Breaker_1
  113. allowed_worlds: []
  114. allowed_materials:
  115. - OBSIDIAN;0
  116. start_actions:
  117. - '[Title] &aGoal:;&7Break 128 Obsidian Blocks!'
  118. complete_actions:
  119. - '[Title] &eQuest Completed!;&6Reward: &a$&f100k &9 2 Obsidian Genbucket;&f A chance to win a Key'
  120. - '[ConsoleCommand] eco give %player% 100000'
  121. - '[ConsoleCommand] instawall give %player% Obsidian 2'
  122. - '[Chance=25] [ConsoleCommand] crate gk %player% Legendary 1'
  123. Stone_Breaker_1:
  124. type: BREAK_QUEST
  125. total: 64
  126. duration: -1
  127. repeat_delay: 31622400
  128. repeatable: false
  129. cancelable: false
  130. command_start: true
  131. required_quests: []
  132. allowed_worlds: []
  133. allowed_materials:
  134. - STONE;0
  135. start_actions:
  136. - '[Title] &aGoal:;&7Break 64 Stone Blocks!'
  137. complete_actions:
  138. - '[Title] &eQuest Completed!;&6Reward: &a$&f5k &9 16 Cobblestone Genbucket;&f A chance to win a Key'
  139. - '[ConsoleCommand] eco give %player% 5000'
  140. - '[ConsoleCommand] instawall give %player% Cobblestone 16'
  141. - '[Chance=1] [ConsoleCommand] crate gk %player% Mystic 1'
  142. Stone_Breaker_2:
  143. type: BREAK_QUEST
  144. total: 128
  145. duration: -1
  146. repeat_delay: 31622400
  147. repeatable: false
  148. cancelable: false
  149. command_start: true
  150. required_quests: Stone_Breaker_1
  151. allowed_worlds: []
  152. allowed_materials:
  153. - STONE;0
  154. start_actions:
  155. - '[Title] &aGoal:;&7Break 128 Stone Blocks!'
  156. complete_actions:
  157. - '[Title] &eQuest Completed!;&6Reward: &a$&f10k &9 32 Cobblestone Genbucket;&f A chance to win a Key'
  158. - '[ConsoleCommand] eco give %player% 10000'
  159. - '[ConsoleCommand] instawall give %player% Cobblestone 32'
  160. - '[Chance=1] [ConsoleCommand] crate gk %player% Mystic 1'
  161. Stone_Breaker_3:
  162. type: BREAK_QUEST
  163. total: 576
  164. duration: -1
  165. repeat_delay: 31622400
  166. repeatable: false
  167. cancelable: false
  168. command_start: true
  169. required_quests: Stone_Breaker_2
  170. allowed_worlds: []
  171. allowed_materials:
  172. - STONE;0
  173. start_actions:
  174. - '[Title] &aGoal:;&7Break 576 Stone Blocks!'
  175. complete_actions:
  176. - '[Title] &eQuest Completed!;&6Reward: &a$&f25k &9 128 Cobblestone Genbucket;&f A chance to win a Key'
  177. - '[ConsoleCommand] eco give %player% 5000'
  178. - '[ConsoleCommand] instawall give %player% Cobblestone 128'
  179. - '[Chance=5] [ConsoleCommand] crate gk %player% Mystic 1'
  180. Stone_Breaker_4:
  181. type: BREAK_QUEST
  182. total: 1152
  183. duration: -1
  184. repeat_delay: 31622400
  185. repeatable: false
  186. cancelable: false
  187. command_start: true
  188. required_quests: Stone_Breaker_3
  189. allowed_worlds: []
  190. allowed_materials:
  191. - STONE;0
  192. start_actions:
  193. - '[Title] &aGoal:;&7Break 1152 Stone Blocks!'
  194. complete_actions:
  195. - '[Title] &eQuest Completed!;&6Reward: &a$&f50k &9 128 Cobblestone Genbucket;&f A chance to win a Key'
  196. - '[ConsoleCommand] eco give %player% 50000'
  197. - '[ConsoleCommand] instawall give %player% Cobblestone 128'
  198. - '[Chance=5] [ConsoleCommand] crate gk %player% Mystic 1'
  199. Stone_Breaker_5:
  200. type: BREAK_QUEST
  201. total: 2304
  202. duration: -1
  203. repeat_delay: 31622400
  204. repeatable: false
  205. cancelable: false
  206. command_start: true
  207. required_quests: Stone_Breaker_4
  208. allowed_worlds: []
  209. allowed_materials:
  210. - STONE;0
  211. start_actions:
  212. - '[Title] &aGoal:;&7Break 2304 Stone Blocks!'
  213. complete_actions:
  214. - '[Title] &eQuest Completed!;&6Reward: &a$&f100k &9 256 Cobblestone Genbucket;&f A chance to win a Key'
  215. - '[ConsoleCommand] eco give %player% 100000'
  216. - '[ConsoleCommand] instawall give %player% Cobblestone 256'
  217. - '[Chance=25] [ConsoleCommand] crate gk %player% Legendary 1'
  218. Wood_Breaker_1:
  219. type: BREAK_QUEST
  220. total: 64
  221. duration: -1
  222. repeat_delay: 31622400
  223. repeatable: false
  224. cancelable: false
  225. command_start: true
  226. required_quests: Stone_Breaker_5
  227. allowed_worlds: []
  228. allowed_materials:
  229. - LOG;0
  230. - LOG;1
  231. - LOG;2
  232. - LOG;3
  233. - LOG_2;0
  234. - LOG_2;1
  235. start_actions:
  236. - '[Title] &aGoal:;&7Break 64 Logs!'
  237. complete_actions:
  238. - '[Title] &eQuest Completed!;&6Reward: &a$&f5k &f A chance to win a Key'
  239. - '[ConsoleCommand] eco give %player% 5000'
  240. - '[Chance=1] [ConsoleCommand] crate gk %player% Mystic 1'
  241. Wood_Breaker_2:
  242. type: BREAK_QUEST
  243. total: 128
  244. duration: -1
  245. repeat_delay: 31622400
  246. repeatable: false
  247. cancelable: false
  248. command_start: true
  249. required_quests: Wood_Breaker_1
  250. allowed_worlds: []
  251. allowed_materials:
  252. - LOG;0
  253. - LOG;1
  254. - LOG;2
  255. - LOG;3
  256. - LOG_2;0
  257. - LOG_2;1
  258. start_actions:
  259. - '[Title] &aGoal:;&7Break 128 Wood Blocks!'
  260. complete_actions:
  261. - '[Title] &eQuest Completed!;&6Reward: &a$&f25k &f A chance to win a Key'
  262. - '[ConsoleCommand] eco give %player% 25000'
  263. - '[Chance=5] [ConsoleCommand] crate gk %player% Mystic 1'
  264. Wood_Breaker_3:
  265. type: BREAK_QUEST
  266. total: 256
  267. duration: -1
  268. repeat_delay: 31622400
  269. repeatable: false
  270. cancelable: false
  271. command_start: true
  272. required_quests: Wood_Breaker_2
  273. allowed_worlds: []
  274. allowed_materials:
  275. - LOG;0
  276. - LOG;1
  277. - LOG;2
  278. - LOG;3
  279. - LOG_2;0
  280. - LOG_2;1
  281. start_actions:
  282. - '[Title] &aGoal:;&7Break 256 Wood Blocks!'
  283. complete_actions:
  284. - '[Title] &eQuest Completed!;&6Reward: &a$&f50k &f A chance to win a Key'
  285. - '[ConsoleCommand] eco give %player% 50000'
  286. - '[Chance=25] [ConsoleCommand] crate gk %player% Legendary 1'
  287. Obsidian_Machine_1:
  288. type: PLACE_QUEST
  289. total: 64
  290. duration: -1
  291. repeat_delay: 31622400
  292. repeatable: false
  293. cancelable: false
  294. command_start: true
  295. required_quests: Cobblestone_Machine_4
  296. allowed_worlds: []
  297. allowed_materials:
  298. - OBSIDIAN;0
  299. start_actions:
  300. - '[Title] &aGoal:;&7Place 64 Obsidian Blocks!'
  301. complete_actions:
  302. - '[Title] &eQuest Completed!;&6Reward: &a$&f10k &9 1 Obsidian Genbucket;&f A chance to win a Key'
  303. - '[ConsoleCommand] eco give %player% 50000'
  304. - '[ConsoleCommand] instawall give %player% Obsidian 1'
  305. - '[Chance=1] [ConsoleCommand] crate gk %player% Mystic 1'
  306. Obsidian_Machine_2:
  307. type: PLACE_QUEST
  308. total: 128
  309. duration: -1
  310. repeat_delay: 31622400
  311. repeatable: false
  312. cancelable: false
  313. command_start: true
  314. required_quests: Obsidian_Machine_1
  315. allowed_worlds: []
  316. allowed_materials:
  317. - OBSIDIAN;0
  318. start_actions:
  319. - '[Title] &aGoal:;&7Place 128 Obsidian Blocks!'
  320. complete_actions:
  321. - '[Title] &eQuest Completed!;&6Reward: &a$&f25k &9 2 Obsidian Genbucket;&f A chance to win a Key'
  322. - '[ConsoleCommand] eco give %player% 25000'
  323. - '[ConsoleCommand] instawall give %player% Obsidian 2'
  324. - '[Chance=1] [ConsoleCommand] crate gk %player% Mystic 1'
  325. Obsidian_Machine_3:
  326. type: PLACE_QUEST
  327. total: 576
  328. duration: -1
  329. repeat_delay: 31622400
  330. repeatable: false
  331. cancelable: false
  332. command_start: true
  333. required_quests: Obsidian_Machine_2
  334. allowed_worlds: []
  335. allowed_materials:
  336. - OBSIDIAN;0
  337. start_actions:
  338. - '[Title] &aGoal:;&7Place 576 Obsidian Blocks!'
  339. complete_actions:
  340. - '[Title] &eQuest Completed!;&6Reward: &a$&f50k &9 3 Obsidian Genbucket;&f A chance to win a Key'
  341. - '[ConsoleCommand] eco give %player% 50000'
  342. - '[ConsoleCommand] instawall give %player% Obsidian 3'
  343. - '[Chance=3] [ConsoleCommand] crate gk %player% Mystic 1'
  344. Obsidian_Machine_4:
  345. type: PLACE_QUEST
  346. total: 2304
  347. duration: -1
  348. repeat_delay: 31622400
  349. repeatable: false
  350. cancelable: false
  351. command_start: true
  352. required_quests: Obsidian_Machine_3
  353. allowed_worlds: []
  354. allowed_materials:
  355. - OBSIDIAN;0
  356. start_actions:
  357. - '[Title] &aGoal:;&7Place 2304 Obsidian Blocks!'
  358. complete_actions:
  359. - '[Title] &eQuest Completed!;&6Reward: &a$&f100k &9 5 Obsidian Genbucket;&f A chance to win a Key'
  360. - '[ConsoleCommand] eco give %player% 100000'
  361. - '[ConsoleCommand] instawall give %player% Obsidian 5'
  362. - '[Chance=25] [ConsoleCommand] crate gk %player% Legendary 1'
  363. Cobblestone_Machine_1:
  364. type: PLACE_QUEST
  365. total: 64
  366. duration: -1
  367. repeat_delay: 31622400
  368. repeatable: false
  369. cancelable: false
  370. command_start: true
  371. required_quests: []
  372. allowed_worlds: []
  373. allowed_materials:
  374. - COBBLESTONE;0
  375. start_actions:
  376. - '[Title] &aGoal:;&7Place 64 Cobblestone Blocks!'
  377. complete_actions:
  378. - '[Title] &eQuest Completed!;&6Reward: &a$&f1k &9 16 Cobblestone Genbucket;&f A chance to win a Key'
  379. - '[ConsoleCommand] eco give %player% 1000'
  380. - '[ConsoleCommand] instawall give %player% Cobblestone 16'
  381. - '[Chance=1] [ConsoleCommand] crate gk %player% Mystic 1'
  382. Cobblestone_Machine_2:
  383. type: PLACE_QUEST
  384. total: 128
  385. duration: -1
  386. repeat_delay: 31622400
  387. repeatable: false
  388. cancelable: false
  389. command_start: true
  390. required_quests: Cobblestone_Machine_1
  391. allowed_worlds: []
  392. allowed_materials:
  393. - COBBLESTONE;0
  394. start_actions:
  395. - '[Title] &aGoal:;&7Place 128 Cobblestone Blocks!'
  396. complete_actions:
  397. - '[Title] &eQuest Completed!;&6Reward: &a$&f1k &9 32 Cobblestone Genbucket;&f A chance to win a Key'
  398. - '[ConsoleCommand] eco give %player% 5000'
  399. - '[ConsoleCommand] instawall give %player% Cobblestone 32'
  400. - '[Chance=1] [ConsoleCommand] crate gk %player% Mystic 1'
  401. Cobblestone_Machine_3:
  402. type: PLACE_QUEST
  403. total: 576
  404. duration: -1
  405. repeat_delay: 31622400
  406. repeatable: false
  407. cancelable: false
  408. command_start: true
  409. required_quests: Cobblestone_Machine_2
  410. allowed_worlds: []
  411. allowed_materials:
  412. - COBBLESTONE;0
  413. start_actions:
  414. - '[Title] &aGoal:;&7Place 576 Cobblestone Blocks!'
  415. complete_actions:
  416. - '[Title] &eQuest Completed!;&6Reward: &a$&f10k &9 128 Cobblestone Genbucket;&f A chance to win a Key'
  417. - '[ConsoleCommand] eco give %player% 10000'
  418. - '[ConsoleCommand] instawall give %player% Cobblestone 128'
  419. - '[Chance=5] [ConsoleCommand] crate gk %player% Mystic 1'
  420. Cobblestone_Machine_4:
  421. type: PLACE_QUEST
  422. total: 2304
  423. duration: -1
  424. repeat_delay: 31622400
  425. repeatable: false
  426. cancelable: false
  427. command_start: true
  428. required_quests: Cobblestone_Machine_3
  429. allowed_worlds: []
  430. allowed_materials:
  431. - COBBLESTONE;0
  432. start_actions:
  433. - '[Title] &aGoal:;&7Place 2304 Cobblestone Blocks!'
  434. complete_actions:
  435. - '[Title] &eQuest Completed!;&6Reward: &a$&f25k &9 256 Cobblestone Genbucket;&f A chance to win a Key'
  436. - '[ConsoleCommand] eco give %player% 5000'
  437. - '[ConsoleCommand] instawall give %player% Cobblestone 256'
  438. - '[Chance=25] [ConsoleCommand] crate gk %player% Legendary 1'
  439. Blaze_Slaughter_1:
  440. type: MOB_QUEST
  441. total: 50
  442. duration: -1
  443. repeat_delay: 31622400
  444. repeatable: false
  445. cancelable: false
  446. command_start: true
  447. required_quests: Zombie_Slaughter_5
  448. allowed_worlds: []
  449. allowed_mobs:
  450. - BLAZE;50
  451. start_actions:
  452. - '[Title] &aGoal:;&7Kill 50 Blaze Mobs!'
  453. complete_actions:
  454. - '[Title] &eQuest Completed!;&6Reward: &a$&f10k &f A chance to win a Key'
  455. - '[ConsoleCommand] eco give %player% 10000'
  456. - '[Chance=1] [ConsoleCommand] crate gk %player% Mystic 1'
  457. Blaze_Slaughter_2:
  458. type: MOB_QUEST
  459. total: 100
  460. duration: -1
  461. repeat_delay: 31622400
  462. repeatable: false
  463. cancelable: false
  464. command_start: true
  465. required_quests: Blaze_Slaughter_1
  466. allowed_worlds: []
  467. allowed_mobs:
  468. - BLAZE;100
  469. start_actions:
  470. - '[Title] &aGoal:;&7Kill 100 Blaze Mobs!'
  471. complete_actions:
  472. - '[Title] &eQuest Completed!;&6Reward: &a$&f25k &f A chance to win a Key'
  473. - '[ConsoleCommand] eco give %player% 25000'
  474. - '[Chance=1] [ConsoleCommand] crate gk %player% Mystic 1'
  475. Blaze_Slaughter_3:
  476. type: MOB_QUEST
  477. total: 250
  478. duration: -1
  479. repeat_delay: 31622400
  480. repeatable: false
  481. cancelable: false
  482. command_start: true
  483. required_quests: Blaze_Slaughter_2
  484. allowed_worlds: []
  485. allowed_mobs:
  486. - BLAZE;250
  487. start_actions:
  488. - '[Title] &aGoal:;&7Kill 250 Blaze Mobs!'
  489. complete_actions:
  490. - '[Title] &eQuest Completed!;&6Reward: &a$&f50k &f A chance to win a Key'
  491. - '[ConsoleCommand] eco give %player% 50000'
  492. - '[Chance=5] [ConsoleCommand] crate gk %player% Mystic 1'
  493. Blaze_Slaughter_4:
  494. type: MOB_QUEST
  495. total: 500
  496. duration: -1
  497. repeat_delay: 31622400
  498. repeatable: false
  499. cancelable: false
  500. command_start: true
  501. required_quests: Blaze_Slaughter_3
  502. allowed_worlds: []
  503. allowed_mobs:
  504. - BLAZE;500
  505. start_actions:
  506. - '[Title] &aGoal:;&7Kill 500 Blaze Mobs!'
  507. complete_actions:
  508. - '[Title] &eQuest Completed!;&6Reward: &a$&f100k &f A chance to win a Key'
  509. - '[ConsoleCommand] eco give %player% 100000'
  510. - '[Chance=10] [ConsoleCommand] crate gk %player% Mystic 1'
  511. Blaze_Slaughter_5:
  512. type: MOB_QUEST
  513. total: 1000
  514. duration: -1
  515. repeat_delay: 31622400
  516. repeatable: false
  517. cancelable: false
  518. command_start: true
  519. required_quests: Blaze_Slaughter_4
  520. allowed_worlds: []
  521. allowed_mobs:
  522. - BLAZE;1000
  523. start_actions:
  524. - '[Title] &aGoal:;&7Kill 1000 Blaze Mobs!'
  525. complete_actions:
  526. - '[Title] &eQuest Completed!;&6Reward: &a$&f250k &f A chance to win a Key'
  527. - '[ConsoleCommand] eco give %player% 250000'
  528. - '[Chance=25] [ConsoleCommand] crate gk %player% Legendary 1'
  529. Pig_Slaughter_1:
  530. type: MOB_QUEST
  531. total: 10
  532. duration: -1
  533. repeat_delay: 31622400
  534. repeatable: false
  535. cancelable: false
  536. command_start: true
  537. required_quests: []
  538. allowed_worlds: []
  539. allowed_mobs:
  540. - PIG;10
  541. start_actions:
  542. - '[Title] &aGoal:;&7Kill 10 Pig Mobs!'
  543. complete_actions:
  544. - '[Title] &eQuest Completed!;&6Reward: &a$&f5k &f A chance to win a Key'
  545. - '[ConsoleCommand] eco give %player% 5000'
  546. - '[Chance=1] [ConsoleCommand] crate gk %player% Mystic 1'
  547. Pig_Slaughter_2:
  548. type: MOB_QUEST
  549. total: 25
  550. duration: -1
  551. repeat_delay: 31622400
  552. repeatable: false
  553. cancelable: false
  554. command_start: true
  555. required_quests: Pig_Slaughter_1
  556. allowed_worlds: []
  557. allowed_mobs:
  558. - PIG;25
  559. start_actions:
  560. - '[Title] &aGoal:;&7Kill 25 Pig Mobs!'
  561. complete_actions:
  562. - '[Title] &eQuest Completed!;&6Reward: &a$&f10k &f A chance to win a Key'
  563. - '[ConsoleCommand] eco give %player% 10000'
  564. - '[Chance=1] [ConsoleCommand] crate gk %player% Mystic 1'
  565. Pig_Slaughter_3:
  566. type: MOB_QUEST
  567. total: 50
  568. duration: -1
  569. repeat_delay: 31622400
  570. repeatable: false
  571. cancelable: false
  572. command_start: true
  573. required_quests: Pig_Slaughter_2
  574. allowed_worlds: []
  575. allowed_mobs:
  576. - PIG;50
  577. start_actions:
  578. - '[Title] &aGoal:;&7Kill 50 Pig Mobs!'
  579. complete_actions:
  580. - '[Title] &eQuest Completed!;&6Reward: &a$&f25k &f A chance to win a Key'
  581. - '[ConsoleCommand] eco give %player% 25000'
  582. - '[Chance=5] [ConsoleCommand] crate gk %player% Mystic 1'
  583. Pig_Slaughter_4:
  584. type: MOB_QUEST
  585. total: 100
  586. duration: -1
  587. repeat_delay: 31622400
  588. repeatable: false
  589. cancelable: false
  590. command_start: true
  591. required_quests: Pig_Slaughter_3
  592. allowed_worlds: []
  593. allowed_mobs:
  594. - PIG;100
  595. start_actions:
  596. - '[Title] &aGoal:;&7Kill 100 Pig Mobs!'
  597. complete_actions:
  598. - '[Title] &eQuest Completed!;&6Reward: &a$&f50k &f A chance to win a Key'
  599. - '[ConsoleCommand] eco give %player% 50000'
  600. - '[Chance=5] [ConsoleCommand] crate gk %player% Mystic 1'
  601. Pig_Slaughter_5:
  602. type: MOB_QUEST
  603. total: 250
  604. duration: -1
  605. repeat_delay: 31622400
  606. repeatable: false
  607. cancelable: false
  608. command_start: true
  609. required_quests: Pig_Slaughter_4
  610. allowed_worlds: []
  611. allowed_mobs:
  612. - PIG;250
  613. start_actions:
  614. - '[Title] &aGoal:;&7Kill 250 Pig Mobs!'
  615. complete_actions:
  616. - '[Title] &eQuest Completed!;&6Reward: &a$&f100k &f A chance to win a Key'
  617. - '[ConsoleCommand] eco give %player% 10000'
  618. - '[Chance=10] [ConsoleCommand] crate gk %player% Legendary 1'
  619. Zombie_Slaughter_1:
  620. type: MOB_QUEST
  621. total: 50
  622. duration: -1
  623. repeat_delay: 31622400
  624. repeatable: false
  625. cancelable: false
  626. command_start: true
  627. required_quests: Pig_Slaughter_5
  628. allowed_worlds: []
  629. allowed_mobs:
  630. - ZOMBIE;50
  631. start_actions:
  632. - '[Title] &aGoal:;&7Kill 50 Zombie Mobs!'
  633. complete_actions:
  634. - '[Title] &eQuest Completed!;&6Reward: &a$&f5k &f A chance to win a Key'
  635. - '[ConsoleCommand] eco give %player% 5000'
  636. - '[Chance=1] [ConsoleCommand] crate gk %player% Mystic 1'
  637. Zombie_Slaughter_2:
  638. type: MOB_QUEST
  639. total: 100
  640. duration: -1
  641. repeat_delay: 31622400
  642. repeatable: false
  643. cancelable: false
  644. command_start: true
  645. required_quests: Zombie_Slaughter_1
  646. allowed_worlds: []
  647. allowed_mobs:
  648. - ZOMBIE;100
  649. start_actions:
  650. - '[Title] &aGoal:;&7Kill 100 Zombie Mobs!'
  651. complete_actions:
  652. - '[Title] &eQuest Completed!;&6Reward: &a$&f10k &f A chance to win a Key'
  653. - '[ConsoleCommand] eco give %player% 10000'
  654. - '[Chance=1] [ConsoleCommand] crate gk %player% Mystic 1'
  655. Zombie_Slaughter_3:
  656. type: MOB_QUEST
  657. total: 250
  658. duration: -1
  659. repeat_delay: 31622400
  660. repeatable: false
  661. cancelable: false
  662. command_start: true
  663. required_quests: Zombie_Slaughter_2
  664. allowed_worlds: []
  665. allowed_mobs:
  666. - ZOMBIE;250
  667. start_actions:
  668. - '[Title] &aGoal:;&7Kill 250 Zombie Mobs!'
  669. complete_actions:
  670. - '[Title] &eQuest Completed!;&6Reward: &a$&f25k &f A chance to win a Key'
  671. - '[ConsoleCommand] eco give %player% 25000'
  672. - '[Chance=5] [ConsoleCommand] crate gk %player% Mystic 1'
  673. Zombie_Slaughter_4:
  674. type: MOB_QUEST
  675. total: 500
  676. duration: -1
  677. repeat_delay: 31622400
  678. repeatable: false
  679. cancelable: false
  680. command_start: true
  681. required_quests: Zombie_Slaughter_3
  682. allowed_worlds: []
  683. allowed_mobs:
  684. - ZOMBIE;500
  685. start_actions:
  686. - '[Title] &aGoal:;&7Kill 500 Zombie Mobs!'
  687. complete_actions:
  688. - '[Title] &eQuest Completed!;&6Reward: &a$&f50k &f A chance to win a Key'
  689. - '[ConsoleCommand] eco give %player% 50000'
  690. - '[Chance=10] [ConsoleCommand] crate gk %player% Mystic 1'
  691. Zombie_Slaughter_5:
  692. type: MOB_QUEST
  693. total: 1000
  694. duration: -1
  695. repeat_delay: 31622400
  696. repeatable: false
  697. cancelable: false
  698. command_start: true
  699. required_quests: Zombie_Slaughter_4
  700. allowed_worlds: []
  701. allowed_mobs:
  702. - ZOMBIE;1000
  703. start_actions:
  704. - '[Title] &aGoal:;&7Kill 1000 Zombie Mobs!'
  705. complete_actions:
  706. - '[Title] &eQuest Completed!;&6Reward: &a$&f100k &f A chance to win a Key'
  707. - '[ConsoleCommand] eco give %player% 100000'
  708. - '[Chance=25] [ConsoleCommand] crate gk %player% Legendary 1'
  709. Creeper_Slaughter_1:
  710. type: MOB_QUEST
  711. total: 50
  712. duration: -1
  713. repeat_delay: 31622400
  714. repeatable: false
  715. cancelable: false
  716. command_start: true
  717. required_quests: Blaze_Slaughter_5
  718. allowed_worlds: []
  719. allowed_mobs:
  720. - CREEPER;50
  721. start_actions:
  722. - '[Title] &aGoal:;&7Kill 50 Creeper Mobs!'
  723. complete_actions:
  724. - '[Title] &eQuest Completed!;&6Reward: &a$&f10k &f A chance to win a Key'
  725. - '[ConsoleCommand] eco give %player% 10000'
  726. - '[Chance=1] [ConsoleCommand] crate gk %player% Mystic 1'
  727. Creeper_Slaughter_2:
  728. type: MOB_QUEST
  729. total: 100
  730. duration: -1
  731. repeat_delay: 31622400
  732. repeatable: false
  733. cancelable: false
  734. command_start: true
  735. required_quests: Creeper_Slaughter_1
  736. allowed_worlds: []
  737. allowed_mobs:
  738. - CREEPER;100
  739. start_actions:
  740. - '[Title] &aGoal:;&7Kill 100 Creeper Mobs!'
  741. complete_actions:
  742. - '[Title] &eQuest Completed!;&6Reward: &a$&f25k &f A chance to win a Key'
  743. - '[ConsoleCommand] eco give %player% 25000'
  744. - '[Chance=1] [ConsoleCommand] crate gk %player% Mystic 1'
  745. Creeper_Slaughter_3:
  746. type: MOB_QUEST
  747. total: 250
  748. duration: -1
  749. repeat_delay: 31622400
  750. repeatable: false
  751. cancelable: false
  752. command_start: true
  753. required_quests: Creeper_Slaughter_2
  754. allowed_worlds: []
  755. allowed_mobs:
  756. - CREEPER;250
  757. start_actions:
  758. - '[Title] &aGoal:;&7Kill 250 Creeper Mobs!'
  759. complete_actions:
  760. - '[Title] &eQuest Completed!;&6Reward: &a$&f50k &f A chance to win a Key'
  761. - '[ConsoleCommand] eco give %player% 50000'
  762. - '[Chance=5] [ConsoleCommand] crate gk %player% Mystic 1'
  763. Creeper_Slaughter_4:
  764. type: MOB_QUEST
  765. total: 500
  766. duration: -1
  767. repeat_delay: 31622400
  768. repeatable: false
  769. cancelable: false
  770. command_start: true
  771. required_quests: Creeper_Slaughter_3
  772. allowed_worlds: []
  773. allowed_mobs:
  774. - CREEPER;500
  775. start_actions:
  776. - '[Title] &aGoal:;&7Kill 500 Creeper Mobs!'
  777. complete_actions:
  778. - '[Title] &eQuest Completed!;&6Reward: &a$&f100k &f A chance to win a Key'
  779. - '[ConsoleCommand] eco give %player% 100000'
  780. - '[Chance=10] [ConsoleCommand] crate gk %player% Mystic 1'
  781. Creeper_Slaughter_5:
  782. type: MOB_QUEST
  783. total: 1000
  784. duration: -1
  785. repeat_delay: 31622400
  786. repeatable: false
  787. cancelable: false
  788. command_start: true
  789. required_quests: Creeper_Slaughter_4
  790. allowed_worlds: []
  791. allowed_mobs:
  792. - CREEPER;1000
  793. start_actions:
  794. - '[Title] &aGoal:;&7Kill 1000 Creeper Mobs!'
  795. complete_actions:
  796. - '[Title] &eQuest Completed!;&6Reward: &a$&f250k &f A chance to win a Key'
  797. - '[ConsoleCommand] eco give %player% 250000'
  798. - '[Chance=25] [ConsoleCommand] crate gk %player% Legendary 1'
  799. Player_Domination_1:
  800. type: KILL_QUEST
  801. total: 5
  802. same_player: false
  803. duration: -1
  804. repeat_delay: 31622400
  805. repeatable: false
  806. cancelable: false
  807. command_start: true
  808. required_quests: []
  809. allowed_worlds: []
  810. start_actions:
  811. - '[Title] &aGoal:;&7Kill 5 Unique Players!'
  812. complete_actions:
  813. - '[Title] &eQuest Completed!;&6Reward: &a$&f50k &f A chance to win a Key'
  814. - '[ConsoleCommand] eco give %player% 50000'
  815. - '[Chance=10] [ConsoleCommand] crate gk %player% Mystic 1'
  816. Player_Domination_2:
  817. type: KILL_QUEST
  818. total: 10
  819. same_player: false
  820. duration: -1
  821. repeat_delay: 31622400
  822. repeatable: false
  823. cancelable: false
  824. command_start: true
  825. required_quests: Player_Domination_1
  826. allowed_worlds: []
  827. start_actions:
  828. - '[Title] &aGoal:;&7Kill 10 Unique Players!'
  829. complete_actions:
  830. - '[Title] &eQuest Completed!;&6Reward: &a$&f100k &f A chance to win a Key'
  831. - '[ConsoleCommand] eco give %player% 100000'
  832. - '[Chance=25] [ConsoleCommand] crate gk %player% Legendary 1'
  833. Player_Domination_3:
  834. type: KILL_QUEST
  835. total: 25
  836. same_player: false
  837. duration: -1
  838. repeat_delay: 31622400
  839. repeatable: false
  840. cancelable: false
  841. command_start: true
  842. required_quests: Player_Domination_2
  843. allowed_worlds: []
  844. start_actions:
  845. - '[Title] &aGoal:;&7Kill 25 Unique Players!'
  846. complete_actions:
  847. - '[Title] &eQuest Completed!;&6Reward: &a$&f200k &f A chance to win a Key'
  848. - '[ConsoleCommand] eco give %player% 200000'
  849. - '[Chance=50] [ConsoleCommand] crate gk %player% Legendary 1'
  850. Player_Domination_4:
  851. type: KILL_QUEST
  852. total: 50
  853. same_player: false
  854. duration: -1
  855. repeat_delay: 31622400
  856. repeatable: false
  857. cancelable: false
  858. command_start: true
  859. required_quests: Player_Domination_3
  860. allowed_worlds: []
  861. start_actions:
  862. - '[Title] &aGoal:;&7Kill 50 Unique Players!'
  863. complete_actions:
  864. - '[Title] &eQuest Completed!;&6Reward: &a$&f500k &f A chance to win a Key'
  865. - '[ConsoleCommand] eco give %player% 500000'
  866. - '[Chance=100] [ConsoleCommand] crate gk %player% Legendary 1'
  867. Making_Bank:
  868. type: COMMAND_QUEST
  869. required_commands: /ah sell
  870. ignore_case: false
  871. duration: -1
  872. repeat_delay: 31622400
  873. repeatable: false
  874. cancelable: false
  875. command_start: true
  876. required_quests: []
  877. allowed_worlds: []
  878. start_actions:
  879. - '[Title] &aGoal:;&7Sell An Item On Auction House!'
  880. complete_actions:
  881. - '[Title] &eQuest Completed!;&6Reward: &a$&f10k'
  882. - '[ConsoleCommand] eco give %player% 10000'
  883. Search_The_Auction_House:
  884. type: COMMAND_QUEST
  885. required_commands: /ah
  886. ignore_case: false
  887. duration: -1
  888. repeat_delay: 31622400
  889. repeatable: false
  890. cancelable: false
  891. command_start: true
  892. required_quests: []
  893. allowed_worlds: []
  894. start_actions:
  895. - '[Title] &aGoal:;&7Look Through The Auction House!'
  896. complete_actions:
  897. - '[Title] &eQuest Completed!;&6Reward: &a$&f20k'
  898. - '[ConsoleCommand] eco give %player% 20000'
  899. Spawner_Monster_1:
  900. type: PLACE_QUEST
  901. total: 1
  902. duration: -1
  903. repeat_delay: 31622400
  904. repeatable: false
  905. cancelable: false
  906. command_start: true
  907. required_quests: []
  908. allowed_worlds: []
  909. allowed_materials:
  910. - 52;90
  911. start_actions:
  912. - '[Title] &aGoal:;&7Place A Pig Spawner!'
  913. complete_actions:
  914. - '[Title] &eQuest Completed!;&6Reward: &a$&f5k &f A chance to win a Key'
  915. - '[ConsoleCommand] eco give %player% 5000'
  916. - '[Chance=5] [ConsoleCommand] crate gk %player% Mystic 1'
  917. Spawner_Monster_2:
  918. type: PLACE_QUEST
  919. total: 1
  920. duration: -1
  921. repeat_delay: 31622400
  922. repeatable: false
  923. cancelable: false
  924. command_start: true
  925. required_quests: Spawner_Monster_1
  926. allowed_worlds: []
  927. allowed_materials:
  928. - 52;92
  929. start_actions:
  930. - '[Title] &aGoal:;&7Place A Cow Spawner!'
  931. complete_actions:
  932. - '[Title] &eQuest Completed!;&6Reward: &a$&f10k &f A chance to win a Key'
  933. - '[ConsoleCommand] eco give %player% 10000'
  934. - '[Chance=5] [ConsoleCommand] crate gk %player% Mystic 1'
  935. Spawner_Monster_3:
  936. type: PLACE_QUEST
  937. total: 1
  938. duration: -1
  939. repeat_delay: 31622400
  940. repeatable: false
  941. cancelable: false
  942. command_start: true
  943. required_quests: Spawner_Monster_2
  944. allowed_worlds: []
  945. allowed_materials:
  946. - 52;54
  947. start_actions:
  948. - '[Title] &aGoal:;&7Place A Zombie Spawner!'
  949. complete_actions:
  950. - '[Title] &eQuest Completed!;&6Reward: &a$&f25k &f A chance to win a Key'
  951. - '[ConsoleCommand] eco give %player% 25000'
  952. - '[Chance=10] [ConsoleCommand] crate gk %player% Mystic 1'
  953. Spawner_Monster_4:
  954. type: PLACE_QUEST
  955. total: 1
  956. duration: -1
  957. repeat_delay: 31622400
  958. repeatable: false
  959. cancelable: false
  960. command_start: true
  961. required_quests: Spawner_Monster_3
  962. allowed_worlds: []
  963. allowed_materials:
  964. - 52;50
  965. start_actions:
  966. - '[Title] &aGoal:;&7Place A Creeper Spawner!'
  967. complete_actions:
  968. - '[Title] &eQuest Completed!;&6Reward: &a$&f50k &f A chance to win a Key'
  969. - '[ConsoleCommand] eco give %player% 50000'
  970. - '[Chance=10] [ConsoleCommand] crate gk %player% Legendary 1'
  971. Spawner_Monster_5:
  972. type: PLACE_QUEST
  973. total: 1
  974. duration: -1
  975. repeat_delay: 31622400
  976. repeatable: false
  977. cancelable: false
  978. command_start: true
  979. required_quests: Spawner_Monster_4
  980. allowed_worlds: []
  981. allowed_materials:
  982. - 52;61
  983. start_actions:
  984. - '[Title] &aGoal:;&7Place A Blaze Spawner!'
  985. complete_actions:
  986. - '[Title] &eQuest Completed!;&6Reward: &a$&f100k &f A chance to win a Key'
  987. - '[ConsoleCommand] eco give %player% 100000'
  988. - '[Chance=25] [ConsoleCommand] crate gk %player% Legendary 1'
  989. Spawner_Monster_6:
  990. type: PLACE_QUEST
  991. total: 1
  992. duration: -1
  993. repeat_delay: 31622400
  994. repeatable: false
  995. cancelable: false
  996. command_start: true
  997. required_quests: Spawner_Monster_5
  998. allowed_worlds: []
  999. allowed_materials:
  1000. - 52;99
  1001. start_actions:
  1002. - '[Title] &aGoal:;&7Place A IronGolem Spawner!'
  1003. complete_actions:
  1004. - '[Title] &eQuest Completed!;&6Reward: &a$&f250k &f A chance to win a Key'
  1005. - '[ConsoleCommand] eco give %player% 250000'
  1006. - '[Chance=50] [ConsoleCommand] crate gk %player% Legendary 1'
  1007. Spawner_Monster_7:
  1008. type: PLACE_QUEST
  1009. total: 1
  1010. duration: -1
  1011. repeat_delay: 31622400
  1012. repeatable: false
  1013. cancelable: false
  1014. command_start: true
  1015. required_quests: Spawner_Monster_6
  1016. allowed_worlds: []
  1017. allowed_materials: 52:56
  1018. start_actions:
  1019. - '[Title] &aGoal:;&7Place A Ghast Spawner!'
  1020. complete_actions:
  1021. - '[Title] &eQuest Completed!;&6Reward: &a$&f250k &f A chance to win a Key'
  1022. - '[ConsoleCommand] eco give %player% 250000'
  1023. - '[Chance=50] [ConsoleCommand] crate gk %player% Legendary 1'
  1024. Spawner_Monster_8:
  1025. type: PLACE_QUEST
  1026. total: 1
  1027. duration: -1
  1028. repeat_delay: 31622400
  1029. repeatable: false
  1030. cancelable: false
  1031. command_start: true
  1032. required_quests: Spawner_Monster_7
  1033. allowed_worlds: []
  1034. allowed_materials:
  1035. - 52;62
  1036. start_actions:
  1037. - '[Title] &aGoal:;&7Place A Magma Cube Spawner!'
  1038. complete_actions:
  1039. - '[Title] &eQuest Completed!;&6Reward: &a$&f250k &f A chance to win a Key'
  1040. - '[ConsoleCommand] eco give %player% 250000'
  1041. - '[Chance=50] [ConsoleCommand] crate gk %player% Legendary 1'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement