diff options
author | Jesusaves <cpntb1@ymail.com> | 2022-04-11 20:39:07 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-11 23:39:07 +0000 |
commit | 429f1d87a34997ebb053ee4b159fe30e6c6a3f85 (patch) | |
tree | 2139f862821d8bdd14cb99293366ac98c3173044 /world/map/npc/013-2 | |
parent | 5eabaebca391ad226cda69c811b59e73fad2be9c (diff) | |
download | serverdata-429f1d87a34997ebb053ee4b159fe30e6c6a3f85.tar.gz serverdata-429f1d87a34997ebb053ee4b159fe30e6c6a3f85.tar.bz2 serverdata-429f1d87a34997ebb053ee4b159fe30e6c6a3f85.tar.xz serverdata-429f1d87a34997ebb053ee4b159fe30e6c6a3f85.zip |
CRC Day utilities (#609)
CRC Day utilities and minor bugfixes (revert upmarmu changes)
Diffstat (limited to 'world/map/npc/013-2')
-rw-r--r-- | world/map/npc/013-2/wizard.txt | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/world/map/npc/013-2/wizard.txt b/world/map/npc/013-2/wizard.txt index f4e81a72..13f3fc9c 100644 --- a/world/map/npc/013-2/wizard.txt +++ b/world/map/npc/013-2/wizard.txt @@ -25,6 +25,7 @@ L_Start: menu "Thanks, that's very kind of you!", L_Thanks, "Can you teach me magic?", L_TeachRude, + "What do you know about the Mirror Lake?", L_MirrorLake, "Oh, shut up!", L_ShutUp; L_TeachRude: @@ -32,6 +33,19 @@ L_TeachRude: mes "\"I certainly could, but I already have an apprentice.\""; goto L_Close; +L_MirrorLake: + mes "##9The Old Wizard looks intently at you."; + next; + if (##VAULT <= 0) goto L_NoLake; + // Will never reach here + mes "This is a bug, you are not using the Steam version nor the itch.io launcher."; + goto L_Close; + +L_NoLake: + mes "[Old Wizard]"; + mes "\"You don't have to concern yourself with that, as you cannot use them.\""; + goto L_Close; + L_ShutUp: mes "[Old Wizard]"; mes "\"That attitude isn't going to get you very far, my dear.\""; |