inexorabletash / jsbasic

Applesoft BASIC in JavaScript
https://calormen.com/jsbasic
Other
187 stars 39 forks source link

Fix for Issue #36 #48

Closed jonatasdemello closed 5 months ago

jonatasdemello commented 5 months ago

Description

Fix error "Illegal quantity in line 7130" in the game "Text Adventure (Floyd McWilliams)". Add space (empty line) between player inputs.

Fixes # (issue)

Open issue #36

Type of change

Changes

1) Line 5010 - included a PRINT " " to add an extra line between inputs. This makes it more readable and provide a visual separation between the player's input and result messages.

2) Lines: 7450, 7530, 7720, 7830, 8200 - Replaced IMOFF by IMMOFF.

3) Lines 7120, 7215 and 7130 address the "Illegal quantity in line 7130"

How Has This Been Tested?

Click the Select a sample… drop down In the Games section, select "Text Adventure (Floyd McWilliams)" Click Run Run these commands:

w
w
w
s
take note
n
e
e
e
u
n
take key
s
w
w
unlock door
w
s
read note
(make a note of the missing door left|center|right)
n
open (left|center|right) door

References: Uncle Tays' House Adventure Walkthrough

Screenshots

chrome_dLiylL5q3d

inexorabletash commented 5 months ago

Thanks!