summaryrefslogtreecommitdiff
path: root/npc/functions
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2019-04-16 18:32:08 +0000
committerJesusaves <cpntb1@ymail.com>2019-04-16 18:32:08 +0000
commitcfdac168646533c73d56da77b95b90d2b995c6eb (patch)
tree8a092147e03ef4be86fb5288c5a27690bedaa4ab /npc/functions
parent69dd9c2d6dac4bcf3a396a8c375c1098a86dd541 (diff)
parent2c225255950a09ee5641913bb6022e8881c1c679 (diff)
downloadserverdata-s20190422.tar.gz
serverdata-s20190422.tar.bz2
serverdata-s20190422.tar.xz
serverdata-s20190422.zip
Merge branch 'jesusalva/legion' into 'master's20190422
Package Legion for travel. Closes evol-all#25 See merge request evol/serverdata!174
Diffstat (limited to 'npc/functions')
-rw-r--r--npc/functions/quest-debug/033-Artis_Legion_Progress.txt3
-rw-r--r--npc/functions/quest-debug/042-General_Brotherhood.txt27
2 files changed, 29 insertions, 1 deletions
diff --git a/npc/functions/quest-debug/033-Artis_Legion_Progress.txt b/npc/functions/quest-debug/033-Artis_Legion_Progress.txt
index c4ea5558..ff6f1d16 100644
--- a/npc/functions/quest-debug/033-Artis_Legion_Progress.txt
+++ b/npc/functions/quest-debug/033-Artis_Legion_Progress.txt
@@ -19,7 +19,8 @@ function script QuestDebug33 {
l("Finished training"), 2,
l("Sent to battle"), 3,
l("Finished battle"), 4,
- l("Sent to Q'Anon"), 5;
+ l("Sent to Q'Anon"), 5,
+ l("Indefinite Traning"), 6;
if (@menuret < 0)
{
diff --git a/npc/functions/quest-debug/042-General_Brotherhood.txt b/npc/functions/quest-debug/042-General_Brotherhood.txt
new file mode 100644
index 00000000..3eb3683b
--- /dev/null
+++ b/npc/functions/quest-debug/042-General_Brotherhood.txt
@@ -0,0 +1,27 @@
+// Mona quest debug
+// Authors:
+// gumi
+// monwarez
+// jesusalva
+
+function script QuestDebug42 {
+ do
+ {
+ clear;
+ setnpcdialogtitle l("Quest debug");
+ mes "General_Brotherhood";
+ mes "---";
+ mes l("Quest state: @@", getq(General_Brotherhood));
+ next;
+
+ GenericQuestDebug General_Brotherhood,
+ l("Does not have the quest"), 0,
+ l("Contacted by Sopiahalla"), 1;
+
+ if (@menuret < 0)
+ {
+ return;
+ }
+
+ } while (1);
+}