diff options
| author | LMBishop <13875753+LMBishop@users.noreply.github.com> | 2019-09-02 20:13:10 +0100 |
|---|---|---|
| committer | LMBishop <13875753+LMBishop@users.noreply.github.com> | 2019-09-02 20:13:10 +0100 |
| commit | 05b6f210c822cee5eee31f5958ed57e4c249136d (patch) | |
| tree | 8e533a8540e9fb70582a7c2582e3e0d197980990 /src/main/resources | |
| parent | 6c4c3d3811bead8a5e4b0dbdf3cb74a4c5a7f01b (diff) | |
Start strings on quests
- Sends the player a custom string when the quest is started
Diffstat (limited to 'src/main/resources')
| -rw-r--r-- | src/main/resources/quests/example4.yml | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/src/main/resources/quests/example4.yml b/src/main/resources/quests/example4.yml index f8ee7d69..28734ae7 100644 --- a/src/main/resources/quests/example4.yml +++ b/src/main/resources/quests/example4.yml @@ -1,5 +1,5 @@ # This is a quest which requires the previous quest to be complete to start. -# Unlike the previous quests, this quest has a reward string. +# Unlike the previous quests, this quest has a reward string and a start string. tasks: mobkilling: @@ -18,17 +18,24 @@ display: - "" - "&7Rewards:" - "&7 - $50 added to your in-game balance." + - "&7 - 1 diamond ." lore-started: - "" - "&7Your current progression:" - "&7 - {mobkilling:progress}/3 mobs killed." type: "STRING" +# Here you can list messages which will be sent to the player (if they are online) upon the quest starting. +startstring: + - "&7Upon completion of this quest, you will be rewarded with" + - " &8* &c$50" + - " &8* &c1 diamonds" rewards: - "eco give {player} 50" + - "give {player} diamond 1" # Here you can list messages which will be sent to the player (if they are online) upon completion. rewardstring: - - " &8* &c$10 &7was added to your in-game balance." - - " &8* &c30 diamonds &7was added to your inventory." + - " &8* &c$1000 &7was added to your in-game balance." + - " &8* &c1 diamond &7was added to your inventory." options: category: "examples" requires: |
