diff options
author | Jesusaves <cpntb1@ymail.com> | 2024-01-19 18:59:52 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2024-01-19 18:59:52 -0300 |
commit | 8c60f3e429febd56523c7092e9e4f5dc7db1475c (patch) | |
tree | 0b7d8d44b1c453047a0cc01526d18bde7c6ae7b4 | |
parent | 48dc0d1f198126d565c2db11f5cc903849212931 (diff) | |
download | serverdata-8c60f3e429febd56523c7092e9e4f5dc7db1475c.tar.gz serverdata-8c60f3e429febd56523c7092e9e4f5dc7db1475c.tar.bz2 serverdata-8c60f3e429febd56523c7092e9e4f5dc7db1475c.tar.xz serverdata-8c60f3e429febd56523c7092e9e4f5dc7db1475c.zip |
Patch a bit MKIF B2F riddle so it is less stupid... Still a stupid idea, tho.
-rw-r--r-- | npc/026-2/ctrl.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/npc/026-2/ctrl.c b/npc/026-2/ctrl.c index dbff5ff3e..3eac823fe 100644 --- a/npc/026-2/ctrl.c +++ b/npc/026-2/ctrl.c @@ -18,10 +18,13 @@ mesc l("After staring dumbfounded at the book for a while, you find something actually useful:"); mesc l("Near the aquarium, chant the magic words; his true name. Only then, you may advance to his Throne Room."), 1; // The door to left leads to the living quarters area and whatnot. Both doors should be locked. The riddle should be black boxed. His true name cannot be found in the fortress, but is registered in any history bard or book. - if (getq2(General_Fortress) == 1) + if (getq2(General_Fortress) == 1) { mesc l("There seems to be scribbled something about 'the latin part of the prophecy', whatever that means. Seems to be an old passphrase to access 'the World Heart'."); - else + mesc l("This will not be found here, however."), 1; + } else { + mesc l("Lets try it first, otherwise it is always possible to read the book again in search of clues."); setq2 General_Fortress, 1; + } close; OnInit: |