diff options
-rw-r--r-- | npc/017-1/drowned_man.txt | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/npc/017-1/drowned_man.txt b/npc/017-1/drowned_man.txt index d565c7788..f111ae1fc 100644 --- a/npc/017-1/drowned_man.txt +++ b/npc/017-1/drowned_man.txt @@ -71,6 +71,7 @@ close; OnWarn: + @lofcanjump=true; npctalkonce l("@@, don't jump there! It may be fatal!", strcharinfo(0)); end; @@ -96,6 +97,12 @@ OnInit: // Of course, I could use a blackbox too, but this is not the purpose. // You don't want to solve the map hint, then you'll solve my formula!! /tableflip 017-1,162,226,0 script #JumpArea01 NPC_NO_SPRITE,0,0,{ + // Do you want to jump? + if (!@lofcanjump) { + dispbottom l("What interesting water. Just don't ask me why."); + end; + } + // Are you in the bridge? if (!isin("017-1", 158, 222, 1)) { dispbottom l("I'm too far to jump there."); |