diff options
Diffstat (limited to 'npc/009-1/guards.txt')
-rw-r--r-- | npc/009-1/guards.txt | 24 |
1 files changed, 21 insertions, 3 deletions
diff --git a/npc/009-1/guards.txt b/npc/009-1/guards.txt index 7574fd07f..50df598ee 100644 --- a/npc/009-1/guards.txt +++ b/npc/009-1/guards.txt @@ -13,9 +13,27 @@ mesn; mesq l("Was not it only flooded constantly, the graveyard is not too far. If you stray away from the path, you'll get lost."); next; - mesn; - mesq l("Various people already went missing, including GMs. This is why if you plan to cross, @@.", b(l("You won't be allowed to walk sideways, except to avoid a monster or two."))); - mesc l("If you try to walk west or east too much, you'll hit an \"invisible wall\" to prevent you from getting lost."); + .@fd=!(getmapmask("011-3")&1024); // .@fd - is flooded? + if (!.@fd) { + mesn; + mesq l("Various people already went missing, including GMs. This is why if you plan to cross, @@.", b(l("You won't be allowed to walk sideways, except to avoid a monster or two."))); + mesc l("If you try to walk west or east too much, you'll hit an \"invisible wall\" to prevent you from getting lost."); + next; + select + l("I'm fine, thanks."), + l("My equipment is good, let me through!"); + mes ""; + if (@menu == 2) { + warp "011-3", 37, 219; + closedialog; + close; + } + } else { + mesn; + mesq l("In fact, it is flooded at the moment. Come back later."); + next; + } + if (GHQUEST) GHQ_Assign(Snake, "Halinarzo"); end; |