Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # Number of quests that can be in progress at a time
- questLimit: 5
- # When a quest is completed a leader board message is broadcast. Chose the maximum number of players to be displayed.
- # If this is set to 0 then the leader board message will be omitted.
- leaderBoardSize: 5
- # MUST BE IN ALL CAPS!
- # See color options here: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/boss/BarColor.html
- barColor: GREEN
- disableBossBar: true
- Quests:
- TestQuest: # Quest identifier can be whatever you'd like as long as it's unique
- displayName: "&c&lZombie and Pig Slayer"
- type: mobkill # required, see type list for available types
- 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
- - Zombie
- - Pig
- - Pig_Zombie
- description: "&fKill 10 zombies as fast as you can!"
- goal: 10 # The goal is the amount of the task to be completed
- rewards:
- experience: 100
- items:
- - material: DIAMOND
- amount: 5
- displayName: "&bPowerful Diamond"
- - material: APPLE
- amount: 12
- displayName: "&capples"
- GuiQuest:
- displayName: "&l&aGather 60 Potatoes"
- type: donate
- materials:
- - POTATO
- - APPLE
- description:
- "&Donate 60 potatoes using the command /cq donate to complete the
- quest!"
- goal: 60
- rewards:
- experience: 100
- commands:
- - give player stick 15
- items:
- - material: DIAMOND
- amount: 3
- displayName: "&bPowerful Diamond"
- - material: APPLE
- amount: 12
- displayName: "&capples"
- DiamondHunter:
- displayName: "&b&lDiamond Hunter"
- type: blockbreak
- materials:
- - DIAMOND_ORE
- description: "&fCollect 50 diamonds!"
- goal: 50
- rewards:
- experience: 100
- material: EMERALD
- amount: 64
- displayname: "&cEmerald"
- WolfQuest:
- displayName: Wolf Lover
- type: tame
- description: Make some friends
- goal: 5
- rewards:
- experience: 100
- items:
- - material: EMERALD
- amount: 64
- displayName: "&cEmerald"
- Fishing:
- displayName: Catch Fish
- type: catchfish
- description: Catch 5 fish!
- goal: 5
- rewards:
- experience: 100
- items:
- - material: EMERALD
- amount: 10
- displayName: "&cEmerald"
- SheepShear:
- displayName: Shear Sheep
- type: shear
- description: Let's get that wool baby
- goal: 100
- rewards:
- experience: 100
- items:
- - material: EMERALD
- amount: 64
- displayName: "&cEmerald"
- PlantTree:
- displayName: Save the Planet
- type: blockplace
- description: Place 10 oak or acacia trees to save the world!
- goal: 10
- materials:
- - OAK_SAPLING
- - ACACIA_SAPLING
- rewards:
- experience: 100
- items:
- - material: EMERALD
- amount: 64
- displayName: "&cEmerald"
- RaiseHell:
- displayName: Raise Hell
- type: mobkill
- entities:
- - Blaze
- description: Kill 20 Blaze as fast as you can!
- goal: 20
- rewards:
- experience: 150
- items:
- - material: DIAMOND
- amount: 10
- displayName: "&cDiamond"
- - material: GOLDEN_APPLE
- amount: 5
- displayName: "&cGolden Apple"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement