Storywriting
Alright, let's focus on the story.
As I explained at the start of this guide, we need a story for our quest. For this one, we'll be writing a simple gathering quest where the user will need to gather two different items in different stages.
Let's outline it.
In order to write a quest, I like to put each dialog and action on its own line in the outline.
For dialogs, I also like to have it in the format of NPC Name - Dialog
.
Let's write it.
For this guide, we'll say our NPC is named Julian
and we'll be giving the user a multiple option choice for the first dialog.
We'll also say that the user needs to firstly gather two oak logs, and then two pine logs, which has the item IDs 375
and 408
.
To specify a certain stage of the quest, we'll use two equals signs, the stage ID and another two equals signs in the format of == Stage <Stage ID> ==
To specify what happens when a user selects a certain option, we'll use square brackets ([]
)
To specify a certain action that doesn't directly relate to the dialog, we'll use curly brackets ({}
)
To specify that a line is related to the previous ones, we'll use tabs or four spaces to indent the line.
Now that we have written the quest, let's go ahead and build it.
Last updated