diff options
Diffstat (limited to 'npc/025-1/commander.txt')
-rw-r--r-- | npc/025-1/commander.txt | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/npc/025-1/commander.txt b/npc/025-1/commander.txt index c23d0c07e..5ff52fb47 100644 --- a/npc/025-1/commander.txt +++ b/npc/025-1/commander.txt @@ -58,6 +58,7 @@ // Switch the quest if (.@q == 21) goto L_Intro; if (.@q == 22) goto L_Short; + if (.@q == 23) goto L_Storage; // ... // Endtrail @@ -115,6 +116,16 @@ L_Short: mesq l("They might have sealed the direct path, but there's a tunnel in a cave which you can go in now that you have the magic key to open it."); close; +L_Storage: + if ($GAME_STORYLINE < 5) close; + if (REBIRTH < 4) close; + mesn; + mesq l("Actually, given you are a key part of our defenses and the Monster King is dead, you have acquired a special leave to use our storage."); + next; + closeclientdialog; + openstorage 3; + close; + OnInit: .sex = G_MALE; .distance = 5; |