diff options
author | Jesusaves <cpntb1@ymail.com> | 2024-01-13 23:46:34 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2024-01-13 23:46:34 -0300 |
commit | eccf197be645e399cc0fc59ed7eb35335e1a2091 (patch) | |
tree | e2482e02042f70092c2770caef869f0d57559122 | |
parent | a670a9c3ad1f1babc00377dcc97b34395e9ea4f0 (diff) | |
download | serverdata-eccf197be645e399cc0fc59ed7eb35335e1a2091.tar.gz serverdata-eccf197be645e399cc0fc59ed7eb35335e1a2091.tar.bz2 serverdata-eccf197be645e399cc0fc59ed7eb35335e1a2091.tar.xz serverdata-eccf197be645e399cc0fc59ed7eb35335e1a2091.zip |
Fix bugs
-rw-r--r-- | npc/014-2/dock.txt | 2 | ||||
-rw-r--r-- | npc/functions/hub.txt | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/npc/014-2/dock.txt b/npc/014-2/dock.txt index c979c639d..7b0c56602 100644 --- a/npc/014-2/dock.txt +++ b/npc/014-2/dock.txt @@ -4,7 +4,7 @@ 014-2,22,96,0 script #Dock0142 NPC_HIDDEN,0,1,{ end; OnTouch: - if (@rowboat_rented) { + if (!@rowboat_rented) { dispbottom l("You need a rowboat to set sail here."); close; } diff --git a/npc/functions/hub.txt b/npc/functions/hub.txt index c4870262e..54fd2d2da 100644 --- a/npc/functions/hub.txt +++ b/npc/functions/hub.txt @@ -209,6 +209,10 @@ function script HUB_Logout { if (.@mapa$ == "020-7-1") { callfunc("BSClearNest", @nestid); } + // Died or logged out on Eternal Swamps (Navigation Area) + if (.@mapa$ == "011-4") { + setmount 0; + } // Died or logged out on Player Story 2 - Magic School Port if (compare(.@mapa$, "0030")) { if (@ASSASSIN > 0) |