1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
name: Quests
# This will be replaced with the property "version" in build.gradle
version: "${version}"
main: com.leonardobishop.quests.bukkit.BukkitQuestsPlugin
website: https://github.com/LMBishop/Quests
author: "LMBishop & contributors"
softdepend: [ASkyBlock, BentoBox, Citizens, CoreProtect, Essentials, FabledSkyBlock, IridiumSkyblock, MythicMobs, PlaceholderAPI, PlayerBlockTracker, PlayerPoints, ShopGUIPlus, SuperiorSkyblock2, uSkyBlock, Votifier, VotingPlugin]
prefix: Quests
api-version: "1.13" # allows new API features but Quests will still work pre-1.13
folia-supported: true
commands:
quests:
description: Interact with your quests
usage: /quests
permission: quests.command
aliases: [q, quest]
#todo redo perms
permissions:
quests.command:
description: Permission for main command
default: true
quests.command.category:
description: Permission to execute /q category
default: op
quests.command.started:
description: Permission to execute /q started
default: op
quests.command.quest:
description: Permission to execute /q quest
default: op
quests.command.start:
description: Permission to execute /q start
default: op
quests.command.track:
description: Permission to execute /q track
default: op
quests.command.cancel:
description: Permission to execute /q cancel
default: op
quests.command.random:
description: Permission to execute /q random
default: op
quests.admin:
description: Permission for the admin commands
default: op
|