Advertisement
wonka101

Untitled

May 1st, 2022
1,630
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 3.48 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. # MUST BE IN ALL CAPS!
  9. # See color options here: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/boss/BarColor.html
  10. barColor: GREEN
  11.  
  12. disableBossBar: true
  13.  
  14. Quests:
  15.   TestQuest: # Quest identifier can be whatever you'd like as long as it's unique
  16.     displayName: "&c&lZombie and Pig Slayer"
  17.     type: mobkill # required, see type list for available types
  18.     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
  19.       - Zombie
  20.       - Pig
  21.       - Pig_Zombie
  22.     description: "&fKill 10 zombies as fast as you can!"
  23.     goal: 10 # The goal is the amount of the task to be completed
  24.     rewards:
  25.       experience: 100
  26.       items:
  27.         - material: DIAMOND
  28.           amount: 5
  29.           displayName: "&bPowerful Diamond"
  30.         - material: APPLE
  31.           amount: 12
  32.           displayName: "&capples"
  33.  
  34.   GuiQuest:
  35.     displayName: "&l&aGather 60 Potatoes"
  36.     type: donate
  37.     materials:
  38.      - POTATO
  39.       - APPLE
  40.     description:
  41.      "&Donate 60 potatoes using the command /cq donate to complete the
  42.      quest!"
  43.     goal: 60
  44.     rewards:
  45.       experience: 100
  46.       commands:
  47.        - give player stick 15
  48.       items:
  49.         - material: DIAMOND
  50.           amount: 3
  51.           displayName: "&bPowerful Diamond"
  52.         - material: APPLE
  53.           amount: 12
  54.           displayName: "&capples"
  55.  
  56.   DiamondHunter:
  57.     displayName: "&b&lDiamond Hunter"
  58.     type: blockbreak
  59.     materials:
  60.      - DIAMOND_ORE
  61.     description: "&fCollect 50 diamonds!"
  62.     goal: 50
  63.     rewards:
  64.       experience: 100
  65.       material: EMERALD
  66.       amount: 64
  67.       displayname: "&cEmerald"
  68.  
  69.   WolfQuest:
  70.     displayName: Wolf Lover
  71.     type: tame
  72.     description: Make some friends
  73.     goal: 5
  74.     rewards:
  75.       experience: 100
  76.       items:
  77.         - material: EMERALD
  78.           amount: 64
  79.           displayName: "&cEmerald"
  80.  
  81.   Fishing:
  82.     displayName: Catch Fish
  83.     type: catchfish
  84.     description: Catch 5 fish!
  85.     goal: 5
  86.     rewards:
  87.       experience: 100
  88.       items:
  89.         - material: EMERALD
  90.           amount: 10
  91.           displayName: "&cEmerald"
  92.  
  93.   SheepShear:
  94.     displayName: Shear Sheep
  95.     type: shear
  96.     description: Let's get that wool baby
  97.     goal: 100
  98.     rewards:
  99.       experience: 100
  100.       items:
  101.         - material: EMERALD
  102.           amount: 64
  103.           displayName: "&cEmerald"
  104.  
  105.   PlantTree:
  106.     displayName: Save the Planet
  107.     type: blockplace
  108.     description: Place 10 oak or acacia trees to save the world!
  109.     goal: 10
  110.     materials:
  111.      - OAK_SAPLING
  112.       - ACACIA_SAPLING
  113.     rewards:
  114.       experience: 100
  115.       items:
  116.         - material: EMERALD
  117.           amount: 64
  118.           displayName: "&cEmerald"
  119.  
  120.   RaiseHell:
  121.     displayName: Raise Hell
  122.     type: mobkill
  123.     entities:
  124.      - Blaze
  125.     description: Kill 20 Blaze as fast as you can!
  126.     goal: 20
  127.     rewards:
  128.       experience: 150
  129.       items:
  130.         - material: DIAMOND
  131.           amount: 10
  132.           displayName: "&cDiamond"
  133.         - material: GOLDEN_APPLE
  134.           amount: 5
  135.           displayName: "&cGolden Apple"
  136.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement