summaryrefslogtreecommitdiff
path: root/npc/functions/quest-debug/100-General_Narrator.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/functions/quest-debug/100-General_Narrator.txt')
-rw-r--r--npc/functions/quest-debug/100-General_Narrator.txt27
1 files changed, 27 insertions, 0 deletions
diff --git a/npc/functions/quest-debug/100-General_Narrator.txt b/npc/functions/quest-debug/100-General_Narrator.txt
new file mode 100644
index 00000000..a88f5d6a
--- /dev/null
+++ b/npc/functions/quest-debug/100-General_Narrator.txt
@@ -0,0 +1,27 @@
+// Narrator debug
+// Author:
+// gumi
+
+function script QuestDebug100 {
+ do
+ {
+ clear;
+ setnpcdialogtitle l("Quest debug");
+ mes "General_Narrator";
+ mes "---";
+ mes l("Quest state: @@", getq(General_Narrator));
+ next;
+
+ GenericQuestDebug General_Narrator,
+ l("Game introduction"), 0,
+ l("Arrived in Artis"), 1,
+ l("Arrived in Argaes"), 2,
+ l("Sent to Airlia"), 3;
+
+ if (@menuret < 0)
+ {
+ return;
+ }
+
+ } while (1);
+}