diff options
| author | fatpigsarefat <fatpigsarefat@outlook.com> | 2018-10-20 23:19:36 +0100 |
|---|---|---|
| committer | fatpigsarefat <fatpigsarefat@outlook.com> | 2018-10-20 23:19:36 +0100 |
| commit | 454445c356e745fac1779bb1b8a4b4b0ccafc5a6 (patch) | |
| tree | 20f108628063762f9355bbcebbf8a2d85b6f243d /src/main/resources | |
| parent | a72873c0ee57d9bb32a4506c95d61e436e1e258a (diff) | |
Added Citizens task type
- "citizens_deliver" and "citizens_interact" added
- Fixed a stupid bug with the startQuest response codes
- Removed "beta" tag
- Added Citizens to softdepend & pom.xml
Diffstat (limited to 'src/main/resources')
| -rw-r--r-- | src/main/resources/config.yml | 65 | ||||
| -rw-r--r-- | src/main/resources/plugin.yml | 2 |
2 files changed, 66 insertions, 1 deletions
diff --git a/src/main/resources/config.yml b/src/main/resources/config.yml index 79bcadfd..84aff28f 100644 --- a/src/main/resources/config.yml +++ b/src/main/resources/config.yml @@ -812,6 +812,71 @@ quests: enabled: true time: 1440 + citizensdeliver: + tasks: + deliver: + type: "citizens_deliver" + item: IRON_BLOCK + amount: 1 + npc-name: "Gerald" + remove-items-when-complete: true + display: + name: "&cDeliverer (Citizens)" + lore-normal: + - "&7This quest requires you to:" + - "&7 - Deliver 1 iron block to a NPC named Gerald" + - "" + - "&7Rewards:" + - "&7 - $30 added to your in-game balance." + - "" + - "&cRequires plugin Citizens!" + lore-started: + - "" + - "&7Your current progression:" + - "&7 - Iron block delivered: {deliver:complete}." + type: "MILK_BUCKET" + rewards: + - "eco give {player} 30" + options: + category: "dependent" + requires: + - "" + repeatable: false + cooldown: + enabled: true + time: 1440 + + citizensinteract: + tasks: + talker: + type: "citizens_interact" + npc-name: "Krystina" + display: + name: "&cTalker (Citizens)" + lore-normal: + - "&7This quest requires you to:" + - "&7 - Deliver 1 iron block to a NPC named Krystina" + - "" + - "&7Rewards:" + - "&7 - $30 added to your in-game balance." + - "" + - "&cRequires plugin Citizens!" + lore-started: + - "" + - "&7Your current progression:" + - "&7 - Citizen talked to: {deliver:complete}." + type: "PAPER" + rewards: + - "eco give {player} 30" + options: + category: "dependent" + requires: + - "" + repeatable: false + cooldown: + enabled: true + time: 1440 + # Categories are a way of grouping up quests. # When a player uses /quests, a menu of categories will be presented to them. # When a player clicks ona category, a list of quests under that category will show. diff --git a/src/main/resources/plugin.yml b/src/main/resources/plugin.yml index 691112a8..460c5122 100644 --- a/src/main/resources/plugin.yml +++ b/src/main/resources/plugin.yml @@ -5,7 +5,7 @@ version: %PLUGIN_VERSION% main: com.leonardobishop.quests.Quests author: lmbishop -softdepend: [ASkyBlock, uSkyBlock] +softdepend: [ASkyBlock, uSkyBlock, Citizens] prefix: Quests commands: |
