Allow ladder to work while boat is moving

This commit is contained in:
2025-06-04 22:56:32 -04:00
parent 822d982e86
commit c0086c9a0c
2 changed files with 5 additions and 1 deletions

BIN
RowYourBoat.zip Normal file

Binary file not shown.

View File

@@ -1,5 +1,9 @@
ScriptName RYBLadderScript
begin OnActivate
set RYB.TriggerGetOnBoat to 2
if (RYB.BoatMoving >= 1)
set RYB.TriggerGetOnBoat to 1
else ; can only use the seat if the boat is not moving
set RYB.TriggerGetOnBoat to 2
endif
end