-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #16 from yuyukey/progressTutorial
Progress tracking tutorial
- Loading branch information
Showing
18 changed files
with
170 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
15 changes: 15 additions & 0 deletions
15
QuestPackages/Features/Tracking-Quest-Progress/1-ExampleQuest/conversations/bonny.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
conversations: | ||
Bonny: | ||
quester: "Bonny" | ||
first: "firstGreeting" | ||
NPC_options: | ||
firstGreeting: | ||
text: "Hey Stranger! You look new to me. Can you introduce yourself?" | ||
pointer: "introduce" | ||
niceToMeetYou: | ||
text: "Nice to meet you %player%. Please also introduce yourself to Joe and Fren and come back when | ||
you've done it!" | ||
player_options: | ||
introduce: | ||
text: "I am %player%" | ||
pointer: "niceToMeetYou" |
14 changes: 14 additions & 0 deletions
14
QuestPackages/Features/Tracking-Quest-Progress/1-ExampleQuest/conversations/fren.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
conversations: | ||
Fren: | ||
quester: "Fren" | ||
first: "firstGreeting" | ||
NPC_options: | ||
firstGreeting: | ||
text: "Hey %player%. Already know you because bonny told me about you and that you're new here!" | ||
pointer: "introduce" | ||
niceToMeetYou: | ||
text: "Nice to meet you tho! I really like new people in our town!" | ||
player_options: | ||
introduce: | ||
text: "That's correct!" | ||
pointer: "niceToMeetYou" |
7 changes: 7 additions & 0 deletions
7
QuestPackages/Features/Tracking-Quest-Progress/1-ExampleQuest/conversations/joe.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
conversations: | ||
Joe: | ||
quester: "Joe" | ||
first: "firstGreeting" | ||
NPC_options: | ||
firstGreeting: | ||
text: "Hey %player% Bonny already told me about you! Nice to have you here in our town." |
Empty file.
4 changes: 4 additions & 0 deletions
4
QuestPackages/Features/Tracking-Quest-Progress/1-ExampleQuest/package.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
npcs: | ||
'1': "Joe" | ||
'2': "Bonny" | ||
'3': "Fren" |
4 changes: 4 additions & 0 deletions
4
QuestPackages/Features/Tracking-Quest-Progress/2-HalfExample/conditions.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
conditions: | ||
introducedToBonny: "tag introducedToBonny" | ||
metJoe: "tag metJoe" | ||
metFren: "tag metFren" |
22 changes: 22 additions & 0 deletions
22
QuestPackages/Features/Tracking-Quest-Progress/2-HalfExample/conversations/bonny.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
conversations: | ||
Bonny: | ||
quester: "Bonny" | ||
first: "finishedTask,askingForProgress,firstGreeting" | ||
NPC_options: | ||
firstGreeting: | ||
text: "Hey Stranger! You look new to me. Can you introduce yourself?" | ||
pointer: "introduce" | ||
niceToMeetYou: | ||
text: "Nice to meet you %player%. Please also introduce yourself to Joe and Fren and come back when | ||
you've done it!" | ||
askingForProgress: | ||
text: "Hey %player% I think you don't have met them all yet.. Come back when you are ready!" | ||
conditions: "!metJoe,!metFren,introducedToBonny" | ||
finishedTask: | ||
text: "You have met Joe and Fren! We are all there for you if you need something!" | ||
conditions: "metJoe,metFren" | ||
player_options: | ||
introduce: | ||
text: "I am %player%" | ||
pointer: "niceToMeetYou" | ||
events: "addTagIntroducedToBonny" |
16 changes: 16 additions & 0 deletions
16
QuestPackages/Features/Tracking-Quest-Progress/2-HalfExample/conversations/fren.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
conversations: | ||
Fren: | ||
quester: "Fren" | ||
first: "firstGreeting" | ||
NPC_options: | ||
firstGreeting: | ||
text: "Hey %player%. Already know you because Bonny told me about you and that you're new here!" | ||
pointer: "introduce" | ||
conditions: "introducedToBonny" | ||
niceToMeetYou: | ||
text: "Nice to meet you tho! I really like new people in our town!" | ||
player_options: | ||
introduce: | ||
text: "That's correct!" | ||
pointer: "niceToMeetYou" | ||
events: "addTagMetFren" |
9 changes: 9 additions & 0 deletions
9
QuestPackages/Features/Tracking-Quest-Progress/2-HalfExample/conversations/joe.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
conversations: | ||
Joe: | ||
quester: "Joe" | ||
first: "firstGreeting" | ||
NPC_options: | ||
firstGreeting: | ||
text: "Hey %player% Bonny already told me about you! Nice to have you here in our town." | ||
events: "addTagMetJoe" | ||
conditions: "introducedToBonny" |
4 changes: 4 additions & 0 deletions
4
QuestPackages/Features/Tracking-Quest-Progress/2-HalfExample/events.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
events: | ||
addTagIntroducedToBonny: "tag add introducedToBonny" | ||
addTagMetJoe: "tag add metJoe" | ||
addTagMetFren: "tag add metFren" |
4 changes: 4 additions & 0 deletions
4
QuestPackages/Features/Tracking-Quest-Progress/2-HalfExample/package.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
npcs: | ||
'1': "Joe" | ||
'2': "Bonny" | ||
'3': "Fren" |
5 changes: 5 additions & 0 deletions
5
QuestPackages/Features/Tracking-Quest-Progress/3-FullExample/conditions.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
conditions: | ||
introducedToBonny: "tag introducedToBonny" | ||
metJoe: "tag metJoe" | ||
metFren: "tag metFren" | ||
introducedToEveryone: "tag introducedToEveryone" |
26 changes: 26 additions & 0 deletions
26
QuestPackages/Features/Tracking-Quest-Progress/3-FullExample/conversations/bonny.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
conversations: | ||
Bonny: | ||
quester: "Bonny" | ||
first: "startMainQuest,finishedTask,askingForProgress,firstGreeting" | ||
NPC_options: | ||
firstGreeting: | ||
text: "Hey Stranger! You look new to me. Can you introduce yourself?" | ||
pointer: "introduce" | ||
niceToMeetYou: | ||
text: "Nice to meet you %player%. Please also introduce yourself to Joe and Fren and come back when | ||
you've done it!" | ||
askingForProgress: | ||
text: "Hey %player% I think you don't have met them all yet.. Come back when you are ready!" | ||
conditions: "!metJoe,!metFren,introducedToBonny" | ||
finishedTask: | ||
text: "You have met Joe and Fren! We are all there for you if you need something!" | ||
conditions: "metJoe,metFren" | ||
events: "addTagIntroducedToEveryone" | ||
startMainQuest: | ||
text: "Now I could need your help! Would you mind bringing me XXX?" | ||
conditions: "introducedToEveryone" | ||
player_options: | ||
introduce: | ||
text: "I am %player%" | ||
pointer: "niceToMeetYou" | ||
events: "addTagIntroducedToBonny" |
19 changes: 19 additions & 0 deletions
19
QuestPackages/Features/Tracking-Quest-Progress/3-FullExample/conversations/fren.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
conversations: | ||
Fren: | ||
quester: "Fren" | ||
first: "mainConversation,firstGreeting" | ||
NPC_options: | ||
firstGreeting: | ||
text: "Hey %player%. Already know you because Bonny told me about you and that you're new here!" | ||
pointer: "introduce" | ||
conditions: "introducedToBonny" | ||
niceToMeetYou: | ||
text: "Nice to meet you tho! I really like new people in our town!" | ||
mainConversation: | ||
text: "You again! I dont have anything to do for you! Come back later." | ||
conditions: "metFren" | ||
player_options: | ||
introduce: | ||
text: "That's correct!" | ||
pointer: "niceToMeetYou" | ||
events: "addTagMetFren" |
12 changes: 12 additions & 0 deletions
12
QuestPackages/Features/Tracking-Quest-Progress/3-FullExample/conversations/joe.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
conversations: | ||
Joe: | ||
quester: "Joe" | ||
first: "mainConversation,firstGreeting" | ||
NPC_options: | ||
firstGreeting: | ||
text: "Hey %player% Bonny already told me about you! Nice to have you here in our town." | ||
events: "addTagMetJoe" | ||
conditions: "introducedToBonny" | ||
mainConversation: | ||
text: "Very nice to see you again! I dont have any tasks for you at the moment" | ||
conditions: "metJoe" |
5 changes: 5 additions & 0 deletions
5
QuestPackages/Features/Tracking-Quest-Progress/3-FullExample/events.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
events: | ||
addTagIntroducedToBonny: "tag add introducedToBonny" | ||
addTagMetJoe: "tag add metJoe" | ||
addTagMetFren: "tag add metFren" | ||
addTagIntroducedToEveryone: "run ^tag add introducedToEveryone ^tag delete metFren,metJoe" |
4 changes: 4 additions & 0 deletions
4
QuestPackages/Features/Tracking-Quest-Progress/3-FullExample/package.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
npcs: | ||
'1': "Joe" | ||
'2': "Bonny" | ||
'3': "Fren" |