Advertisement
wonka101

Community Quests (default configuration)

Mar 31st, 2021 (edited)
1,178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 3.81 KB | None | 0 0
  1. # Number of quests that can be in progress at a time
  2. questLimit: 5
  3.  
  4. # When a quest is completed a leader board message is broadcast. Chose the maximum number of players to be displayed.
  5. # If this is set to 0 then the leader board message will be omitted.
  6. leaderBoardSize: 5
  7.  
  8. # See color options here: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/boss/BarColor.html
  9. barColor: GREEN
  10.  
  11. disableBossBar: false
  12.  
  13. donateMenuItem: BLACK_STAINED_GLASS_PANE
  14.  
  15. Quests:
  16.   MineStone:
  17.     displayName: '&lWeekly Quest - Iron Mining'
  18.     type: blockbreak
  19.     description: '&eMine 50 iron ore!'
  20.     displayItem: DIAMOND_PICKAXE
  21.     questDuration: 1d20h5s
  22.     goal: 50
  23.     materials:
  24.      - IRON_ORE
  25.   GuiQuest:
  26.     displayName: '&a&lGather 10 Potatoes'
  27.     type: donate
  28.     materials:
  29.      - POTATO
  30.       - APPLE
  31.     description: '&eDonate 10 potatoes with /cq donate'
  32.     questDuration: 60000s
  33.     displayItem: POTATO
  34.     goal: 10
  35.     rewards:
  36.       experience: 100
  37.       money: 1000 # You must have Vault and an Economy plugin installed for this to work
  38.       commands:
  39.        - give player stick 15
  40.       items:
  41.         - material: DIAMOND_SWORD
  42.           amount: 1
  43.           displayName: '&bPowerful Diamond Sword'
  44.         - material: APPLE
  45.           amount: 12
  46.           displayName: '&capples'
  47.   TestQuest: # Quest identifier can be whatever you'd like as long as it's unique
  48.     displayName: '&c&lZombie and Pig Slayer'
  49.     type: mobkill # required, see type list for available types
  50.     entities: # This is an optional parameter, if it doesn't exist the quest will count all mob kills. entity reference: https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/entity/EntityType.html
  51.       - Zombie
  52.       - Pig
  53.       - Pig_Zombie
  54.     description: '&fKill 10 zombies as fast as you can!'
  55.     displayItem: ZOMBIE_HEAD
  56.     questDuration: 300m
  57.     worlds:
  58.      - world
  59.     goal: 15 # The goal is the amount of the task to be completed
  60.     rewards:
  61.       money: 1000
  62.       experience: 100
  63.       items:
  64.         - material: DIAMOND
  65.           amount: 5
  66.           displayName: '&bPowerful Diamond'
  67.         - material: APPLE
  68.           amount: 12
  69.           displayName: '&capples'
  70.   MoneyQuest:
  71.     displayName: '&l&aDonate 1000$ dollars'
  72.     type: money
  73.     description: '&fDonate 1000$ with command /cq deposit <amount>!'
  74.     goal: 1000
  75.     displayItem: GOLD_INGOT
  76.     questDuration: 1d
  77.     rewards:
  78.       experience: 100
  79.       money: 1000 # You must have Vault and an Economy plugin installed for this to work
  80.       commands:
  81.        - give player stick 15
  82.   EnchantQuest:
  83.     displayName: '&l&aEnchantments!'
  84.     type: enchantitem
  85.     materials:
  86.      - DIAMOND_SWORD
  87.       - IRON_SWORD
  88.     description: '&fEnchant 10 diamond or iron swords'
  89.     displayItem: ENCHANTING_TABLE
  90.     questDuration: 3d
  91.     goal: 10
  92.     rewards:
  93.       experience: 100
  94.       money: 1000
  95.   Fishing:
  96.     displayName: Catch Fish
  97.     type: catchfish
  98.     displayItem: FISHING_ROD
  99.     description: Catch 10 fish!
  100.     goal: 10
  101.     entities:
  102.      - Salmon
  103.       - Pufferfish
  104.     rewards:
  105.       experience: 100
  106.   EasyQuest: # Quest identifier can be whatever you'd like as long as it's unique
  107.     displayName: '&c&lOne Dirt Block'
  108.     type: blockbreak # required, see type list for available types
  109.     materials:
  110.      - DIRT
  111.     description: '&fNo more info needed!'
  112.     displayItem: DIRT
  113.     questDuration: 300m
  114.     goal: 1 # The goal is the amount of the task to be completed
  115.     rewards:
  116.       rewardPlayerLimit: 3 # only top 3 players get the reward if not set all contributors get the reward
  117.       money: 1000
  118.       experience: 100
  119.       items:
  120.         - material: DIAMOND
  121.           amount: 5
  122.           displayName: '&bPowerful Diamond'
  123.         - material: APPLE
  124.           amount: 12
  125.           displayName: '&capples'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement