diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-03-29 12:51:27 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-03-29 12:51:27 -0300 |
commit | 9d528dd4a1977019839350ca092f06dbfcf6234f (patch) | |
tree | 46d11874c6a93ca076f2d92f33213ceeb047ad1a /npc/003-1/swezanne.txt | |
parent | df5497d1c765251f0a1cc4fa3f29441086384cf2 (diff) | |
download | serverdata-9d528dd4a1977019839350ca092f06dbfcf6234f.tar.gz serverdata-9d528dd4a1977019839350ca092f06dbfcf6234f.tar.bz2 serverdata-9d528dd4a1977019839350ca092f06dbfcf6234f.tar.xz serverdata-9d528dd4a1977019839350ca092f06dbfcf6234f.zip |
Ok, this half way done.
Diffstat (limited to 'npc/003-1/swezanne.txt')
-rw-r--r-- | npc/003-1/swezanne.txt | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/npc/003-1/swezanne.txt b/npc/003-1/swezanne.txt index 2b02c961a..b8a639194 100644 --- a/npc/003-1/swezanne.txt +++ b/npc/003-1/swezanne.txt @@ -69,7 +69,22 @@ L_Finish: L_Silvia: mesn; mesq l("Ah, my daughter Silvia is so far away... But I don't want to leave the shade of this tree..."); - goto L_Close; + next; + mesn; + mesq l("Perhaps you could tell her how much I love her? It is already some days since I last talked to her."); + next; + mesn; + mesq l("I don't want her to think that I am a bad mother."); + mes ""; + menu + l("Sure, I'll do it."), L_SilviaAccept, + l("One day more or less won't make a difference."), L_Close; + +L_SilviaAccept: + mesn; + mesq l("Oh, thank you! I will be waiting for you!"); + setq TulimsharQuest_Swezanne, 4; + close; L_Close: closedialog; @@ -88,7 +103,7 @@ OnInit: .sex = G_FEMALE; .distance = 5; - // Preventive check against faulty update + // Preventive check against faulty update. Must be removed afterwards. .@nb = query_sql("select `char_id` from `quest` WHERE ((`count1`=1 or `count1`=2) and `quest_id`=54) LIMIT 2", .@name$); if (getarraysize(.@name$) > 0) { debugmes "FATAL ERROR: Quest log not updated."; |