diff options
author | Reid <reidyaro@gmail.com> | 2012-09-01 02:16:45 +0200 |
---|---|---|
committer | Reid <reidyaro@gmail.com> | 2012-09-01 02:16:45 +0200 |
commit | bade571986ffa8ca3f106a0e1ebd43d013b12db9 (patch) | |
tree | 86fb8055aeafe5e68096c7f82af4bd2ec58f3a69 /npc/000-1/darlin.txt | |
parent | 3d14b11e01ccd137abb17d057c7112e48100c939 (diff) | |
download | serverdata-bade571986ffa8ca3f106a0e1ebd43d013b12db9.tar.gz serverdata-bade571986ffa8ca3f106a0e1ebd43d013b12db9.tar.bz2 serverdata-bade571986ffa8ca3f106a0e1ebd43d013b12db9.tar.xz serverdata-bade571986ffa8ca3f106a0e1ebd43d013b12db9.zip |
Change var number on darlin, it can now be added on the quest log.
Diffstat (limited to 'npc/000-1/darlin.txt')
-rw-r--r-- | npc/000-1/darlin.txt | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/npc/000-1/darlin.txt b/npc/000-1/darlin.txt index 168f31cf..4a625e57 100644 --- a/npc/000-1/darlin.txt +++ b/npc/000-1/darlin.txt @@ -4,10 +4,11 @@ // Description:
// Darlin talks from the top of the tall mast.
// Variable:
-// ShipQuests_Darlin
+// 0x ShipQuests_Darlin
// Values:
-// 0 Does not speak
-// 1 Speak & Quest
+// 00 Does not speak
+// 01 Speak & Quest
+// 02
000-1.gat,89,89,0,1 script Darlin 103;14,{
@@ -140,7 +141,7 @@ l_QuestGiven: menu
l("I forgot where it was..."), -,
- l("Yes, it's a chest."), l_Chest,
+ rif(getq(ShipQuests_Darlin) == 1, l("Yes, it's a chest.")), l_Chest,
l("Oh, nothing important."), l_Nothing;
mes "";
@@ -164,7 +165,8 @@ l_Chest: mesq l("SORRY, BUT WHAT DID YOU SAY? SPEAK LOUDER!");
next;
mesq l("IF YOU FIND SOMETHING, THEN IT'S GREAT!");
-
+ + setq ShipQuests_Darlin, 2; goto l_Menu;
l_DangerAround:
|