diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-02-05 09:48:47 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-02-05 09:48:47 -0300 |
commit | 848d8649375222160fd6d0e4dd2e7687cb17a3f0 (patch) | |
tree | 0c32c2fff903d909d4dcc9936163fa01100e09d5 /npc/009-2 | |
parent | f254fa5a66bc1103e5f02b17d60505f67ae02be1 (diff) | |
download | serverdata-848d8649375222160fd6d0e4dd2e7687cb17a3f0.tar.gz serverdata-848d8649375222160fd6d0e4dd2e7687cb17a3f0.tar.bz2 serverdata-848d8649375222160fd6d0e4dd2e7687cb17a3f0.tar.xz serverdata-848d8649375222160fd6d0e4dd2e7687cb17a3f0.zip |
Magic School: Warn about level 30 design.
Halinarzo Librarian: Chop down half hour if you got magic.
This should, under normal circumstances, finish the quest.
Diffstat (limited to 'npc/009-2')
-rw-r--r-- | npc/009-2/librarian.txt | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/npc/009-2/librarian.txt b/npc/009-2/librarian.txt index 4a471bbea..8b0c137c1 100644 --- a/npc/009-2/librarian.txt +++ b/npc/009-2/librarian.txt @@ -31,9 +31,18 @@ L_Advance: setq2 General_Narrator, santime()+(60*60); .@nt=santime()+(60*60); } + + // You got magic, so, why waiting so long. Chop half hour. + // Should be plenty to instantly finish. + if (MAGIC_LVL && !@halinskip) { + setq2 General_Narrator, .@nt-1800; + @halinskip=true; + } + // Wait time is over! if (.@nt <= santime()) goto L_Complete; + mesn; mesq l("Have you found out magic already? It should not be possible, but the girl reading the book says it is. I don't know in what to believe."); next; @@ -59,7 +68,7 @@ L_Prologue: next; mesn; mesq l("Alright, I'll look in the archives. I'll have an answer for you in @@. Meanwhile, why don't you suppress the bandits on the cliff?", l("45 minutes")); - // Please wait 2 hours + // Please wait 45 minutes setq General_Narrator, 7, santime()+(60*45); next; mesn; |