An old college project (for the module "Developing Computer Games") in which I developed - against my better judgement, seriously - a puzzle-platformer inspired by Terry Cavanagh's *VVVVVV*.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

17 lines
327 B

If picHelp is not visible then
Set picScores to not visible
Set picHelp to visible
Clear picHelp
Open "Help.txt" for reading, as file 1
While not at the end of file
Read a line from file 1 and pass it to HelpLine
print HelpLine to picHelp
Loop
Close file 1
Else
Set picHelp to not visible
End If