diff options
Diffstat (limited to 'npc/017-3/vault.txt')
-rw-r--r-- | npc/017-3/vault.txt | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/npc/017-3/vault.txt b/npc/017-3/vault.txt index 9f48bc3be..35434eae9 100644 --- a/npc/017-3/vault.txt +++ b/npc/017-3/vault.txt @@ -15,11 +15,20 @@ mesq l("Booty!"); } else { mesn; - mesq l("Arrested!"); .@inch=(Zeny/100); Zeny-=.@inch; $VAULT_01738039+=.@inch; - atcommand("@jailfor 5mn "+strcharinfo(0)); + if (ArrestedChances()) { + mesc l("Arrested!"); + atcommand("@jailfor 5mn "+strcharinfo(0)); + } else { + if (is_night()) + .@p$=l("The darkness of night gives you cover."); + else + .@p$=l("Your agile legs and sheer luck allows you to outrun the cops."); + mesc l("You run as far as you could. %s", .@p$); + warp "000-1", 22, 22; + } } close; |