diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-01-25 22:49:10 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-01-25 22:49:10 -0300 |
commit | d7534c8fe946258a831b91ccf3099e4fcee5e688 (patch) | |
tree | f322fef097ce73983cf7fb257c217b9f5a888d49 /npc/017-1 | |
parent | 1a52afe8ffc4b6a3617abd50315324d734af8061 (diff) | |
download | serverdata-d7534c8fe946258a831b91ccf3099e4fcee5e688.tar.gz serverdata-d7534c8fe946258a831b91ccf3099e4fcee5e688.tar.bz2 serverdata-d7534c8fe946258a831b91ccf3099e4fcee5e688.tar.xz serverdata-d7534c8fe946258a831b91ccf3099e4fcee5e688.zip |
Enforcement
Diffstat (limited to 'npc/017-1')
-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."); |