wonka101

Community Quests (default configuration)

Mar 31st, 2021 (edited)
2,332
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 12.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. disableBossBar: false
  9.  
  10. # Material used in the donate quest menu.
  11. donateMenuItem: EMERALD
  12.  
  13. # If true, blockbreak quests will not be able to break the same item multiple
  14. # times in a row.
  15. disableDuplicateBreaks: false
  16.  
  17. barColor: "GREEN"
  18.  
  19. # If true, blockplace quests will not be able to place the same item multiple
  20. # times in a row.
  21. disableDuplicatePlaces: false
  22.  
  23. ## configure the location and text of a hologram that displays quest information
  24. hologram:
  25.    # set to 0 or omit refresh-interval if you don't want it to refresh. Refresh is needed for dynamic placeholders
  26.     refresh-interval: 60
  27.     enabled: true
  28.     location:
  29.         world: world
  30.         x: -78
  31.         y: 67
  32.         z: 51
  33.     text:
  34.        - "<#B22AFE>&l&nCommunity Quests</#ff8157>"
  35.         - "&f&lRight click to view quests"
  36.         - "%communityquests_name%"
  37.         - "%communityquests_description%"
  38.         - "%communityquests_top_all%"
  39.  
  40. Quests:
  41.     TestQuest: # Quest identifier can be whatever you'd like as long as it's unique
  42.         displayName: "&cZombie and Pig Slayer"
  43.         displayItem: ZOMBIE_HEAD # optional parameter to set the item used in GUIs for a given quest
  44.         # See color options here: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/boss/BarColor.html
  45.         barColor: "GREEN"
  46.         barStyle: "SEGMENTED_20"
  47.         worlds: # this parameter is optional, if included the quest will only occur in the specified worlds
  48.             - world
  49.         objectives: # at least one objective is required, each quest can have infinite objectives
  50.             - type: mobkill ## required, see type list for available types
  51.               dynamicGoal: "%server_online%"
  52.               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
  53.                   - Zombie
  54.                   - Pig
  55.                   - ZOMBIFIED_PIGLIN
  56.               description: "Zombies & Pigs" # A short description of the objective used in the GUI
  57.             - type: mobkill
  58.               goal: 5
  59.               customMobNames:
  60.                  - Skeleton
  61.               description: Skeletons
  62.         description: "Kill 100 zombies and pigs! \nKill 50 skeletons!"
  63.         questDuration: 1d # The quest will last for 1 day or until the goal is reached, whichever comes first
  64.         rewards:
  65.             rankedRewards:
  66.                 "1": # The key is the rank of the player so this reward will be given to the player who contributed the most
  67.                     experience: 100
  68.                     items:
  69.                         - material: diamond_sword
  70.                           amount: 1
  71.                           displayName: "&bPowerful Diamond Sword"
  72.                 "2":
  73.                     experience: 50
  74.                     items:
  75.                         - material: iron_sword
  76.                           amount: 1
  77.                           displayName: "&7Iron Sword"
  78.                 "*": # This is a wildcard, this reward will apply to all other players who participated in the quest and didn't get a ranked reward
  79.                     experience: 25
  80.                     items:
  81.                         - material: stone_sword
  82.                           amount: 1
  83.                           displayName: "&8Stone Sword"
  84.     Egg:
  85.         displayName: "&6Eggcellent"
  86.         displayItem: EGG
  87.         questDuration: 7d
  88.         barColor: "WHITE"
  89.         barStyle: "SEGMENTED_20"
  90.         objectives:
  91.             - type: donate
  92.               materials:
  93.                  - EGG
  94.         description: H1 needs some cake, you can get some eggs!
  95.         rewards:
  96.             items:
  97.                 - material: CHICKEN_SPAWN_EGG
  98.                   amount: 1
  99.     MoveIt:
  100.         displayName: "&6Movement Quest"
  101.         displayItem: DIAMOND_BOOTS
  102.         questDuration: 7d
  103.         barColor: "WHITE"
  104.         barStyle: "SEGMENTED_20"
  105.         objectives:
  106.             - type: movement
  107.         description: Just keep on running until your shoes fall off!
  108.         rewards:
  109.             items:
  110.                 - material: CHICKEN_SPAWN_EGG
  111.                   amount: 1
  112.     FishFrenzy:
  113.         displayName: "&9&lFishing Frenzy"
  114.         questDuration: 30m
  115.         barColor: "BLUE"
  116.         barStyle: "SOLID"
  117.         objectives:
  118.             - type: catchfish
  119.               goal: 8
  120.               entities:
  121.                  - Cod
  122.               description: "&9&lCod"
  123.             - type: catchfish
  124.               goal: 4
  125.               entities:
  126.                  - Salmon
  127.               description: "&9&lSalmon"
  128.         description: "&fCatch 8 cod and 4 salmon as fast as you can!"
  129.         displayItem: fishing_rod
  130.         rewards:
  131.             rankedRewards:
  132.                 "1": # The key is the rank of the player so this reward will be given to the player who contributed the most
  133.                     experience: 100
  134.                     items:
  135.                         - material: diamond_sword
  136.                           amount: 1
  137.                           displayName: "&bPowerful Diamond Sword"
  138.                 "2":
  139.                     experience: 50
  140.                     items:
  141.                         - material: iron_sword
  142.                           amount: 1
  143.                           displayName: "&7Iron Sword"
  144.                 "*": # This is a wildcard, this reward will apply to all other players who participated in the quest and didn't get a ranked reward
  145.                     experience: 25
  146.                     items:
  147.                         - material: stone_sword
  148.                           amount: 1
  149.                           displayName: "&8Stone Sword"
  150.     CarrotQuest:
  151.         displayName: "&6&lCarrot King"
  152.         objectives:
  153.             - type: blockbreak
  154.               goal: 25
  155.               materials:
  156.                  - carrots
  157.               description: "&6&lCarrots"
  158.             - type: blockbreak
  159.               goal: 10
  160.               materials:
  161.                  - wheat
  162.               description: "&6&lWheat"
  163.         description: "&fPlant some carrots"
  164.         displayItem: CARROT
  165.         rewards:
  166.             rankedRewards:
  167.                 "1": # The key is the rank of the player so this reward will be given to the player who contributed the most
  168.                     experience: 100
  169.                     items:
  170.                         - material: diamond_sword
  171.                           amount: 1
  172.                           displayName: "&bPowerful Diamond Sword"
  173.                 "2":
  174.                     experience: 50
  175.                     items:
  176.                         - material: iron_sword
  177.                           amount: 1
  178.                           displayName: "&7Iron Sword"
  179.                 "*": # This is a wildcard, this reward will apply to all other players who participated in the quest and didn't get a ranked reward
  180.                     experience: 25
  181.                     items:
  182.                         - material: stone_sword
  183.                           amount: 1
  184.                           displayName: "&8Stone Sword"
  185.     GuiQuest:
  186.         displayName: "&a&lPotato Diamond Quest"
  187.         objectives:
  188.             - type: donate
  189.               goal: 60
  190.               materials:
  191.                  - POTATO
  192.               description: "&l&aPotatoes"
  193.             - type: donate
  194.               goal: 20
  195.               materials:
  196.                  - DIAMOND
  197.               description: "&l&aDiamonds"
  198.         description: "&fDonate 60 potatoes and 20 diamonds with /cq donate!"
  199.         rewards:
  200.             rankedRewards:
  201.                 "1": # The key is the rank of the player
  202.                     experience: 100
  203.                     commands:
  204.                        - "give %player% diamond_sword 1"
  205.                     items:
  206.                         - material: DIAMOND_SWORD
  207.                           amount: 1
  208.                           displayName: "&bPowerful Diamond Sword"
  209.                 "2":
  210.                     experience: 50
  211.                     items:
  212.                         - material: iron_sword
  213.                           amount: 1
  214.                           displayName: "&7Iron Sword"
  215.                 "*": # This is a wildcard, it will apply to all other players
  216.                     experience: 25
  217.                     items:
  218.                         - material: stone_sword
  219.                           amount: 1
  220.                           displayName: "&8Stone Sword"
  221.     PlantTree:
  222.         displayName: "&a&lSave the Planet"
  223.         description: "&fPlant 10 oak or acacia trees and break 10 logs!"
  224.         objectives:
  225.             - type: blockplace
  226.               materials:
  227.                  - OAK_SAPLING
  228.                   - ACACIA_SAPLING
  229.               description: "&fPlant trees"
  230.               goal: 10
  231.             - type: blockbreak
  232.               materials:
  233.                  - OAK_LOG
  234.                   - ACACIA_LOG
  235.                   - FIRE
  236.               goal: 10
  237.               description: "&fChop trees"
  238.         rewards:
  239.             experience: 100
  240.             items:
  241.                 - material: EMERALD
  242.                   amount: 64
  243.                   displayName: "&cEmerald"
  244.     EatFood:
  245.         displayName: "&l&aEat Food"
  246.         objectives:
  247.             - type: consumeitem
  248.               goal: 25
  249.               description: "&fFood consumed"
  250.               materials:
  251.                  - APPLE
  252.                   - POTATO
  253.                   - Mushroom_Stew
  254.         description: "&fEat 25 apples, potatoes, or mushroom stew!"
  255.         rewards:
  256.             experience: 100
  257.             items:
  258.                 - material: EMERALD
  259.                   amount: 64
  260.                   displayName: "&cEmerald"
  261.     CraftSwords:
  262.         displayName: "&l&aSwords and Sticks!"
  263.         description: "&fCraft 10 swords and 10 sticks!"
  264.         rewards:
  265.             experience: 100
  266.         objectives:
  267.             - type: craftitem
  268.               materials:
  269.                  - DIAMOND_SWORD
  270.                   - IRON_SWORD
  271.               description: "&bDiamond swords"
  272.               goal: 10
  273.             - type: craftItem
  274.               materials:
  275.                  - STICK
  276.               goal: 10
  277.               description: "&bStick"
  278.     ExpQuest: # Quest identifier can be whatever you'd like as long as it's unique
  279.         displayName: "&c&lGet that EXP"
  280.         objectives:
  281.             - type: experience
  282.               goal: 10000
  283.               description: "EXP"
  284.         description: "&fGet lots of experience"
  285.         rewards:
  286.             experience: 10000
  287.             items:
  288.                 - material: DIAMOND_SWORD
  289.                   amount: 1
  290.                   displayName: "&bPowerful Diamond Sword"
  291.     MythicQuest:
  292.         displayName: "&c&lKill mythic mobs"
  293.         objectives:
  294.             - type: mythicmob
  295.               goal: 4
  296.               description: "Spiderz"
  297.               entities:
  298.                  - CAVE_SPIDER
  299.         description: "&c&lKill 4 Cave Spiders!"
  300.         rewards:
  301.             experience: 10000
  302.             items:
  303.                 - material: DIAMOND_SWORD
  304.                   amount: 1
  305.                   displayName: "&bPowerful Diamond Sword"
  306.     BreakStuff:
  307.         displayName: "Just break stuff"
  308.         objectives:
  309.             - type: blockbreak
  310.               goal: 100
  311.               description: "Broken blox"
  312.         description: "&fbreak anythingggggg"
  313.         rewards:
  314.             experience: 10000
  315.             commands:
  316.                - 'give %player% diamond_sword 1
  317.     CarvePumpkin:
  318.         displayName: "Carve a pumpkin"
  319.         objectives:
  320.             - type: carvepumpkin
  321.               goal: 10
  322.               description: "pumpkinz"
  323.         description: "Lets carve some pumpkins for Halloween!"
  324.         rewards:
  325.             experience: 10000
  326.         commands:
  327.            - 'give %player% diamond_sword 1
  328.     Cane:
  329.         displayName: "&6Sugar it up"
  330.         displayItem: SUGAR_CANE
  331.         questDuration: 7d
  332.         objectives:
  333.             - type: blockbreak
  334.               goal: 10
  335.               materials:
  336.                  - SUGAR_CANE
  337.               description: "I need some Sugar!"
  338.         rewards:
  339.             items:
  340.                 - material: GRASS_BLOCK
  341.                   amount: 16
  342.  
  343.  
Comments
Add Comment
Please, Sign In to add comment