home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
AMOS PD CD
/
amospdcd.iso
/
251-275
/
apd258
/
hangman.amos
/
hangman.amosSourceCode
Wrap
AMOS Source Code
|
1991-07-05
|
2KB
|
64 lines
Hide On
Screen Open 0,640,256,2,Hires
Curs Off
Flash Off
Proc INS
Procedure INS
Cls
Shade On
Centre "HANGMAN V1.0 By Simon Walklate"
Shade Off
Print : Print : Print : Print : Print : Print : Print
Centre "Press 1 for playing instructions"
Print : Print : Print : Print : Print
Centre "Press 2 for info on HANGMAN V1.0"
Print : Print : Print : Print : Print
Centre "Press 3 to begin the game"
Do
Z$=Inkey$
If Z$="1" Then Proc GAME
If Z$="2" Then Proc INFO
If Z$="3" Then Run "Hangman1.AMOS"
Loop
End Proc
Procedure INFO
Cls
Print : Print : Print
Print "HANGMAN V1.0 was written on 8-9/6/91 By Simon Walklate"
Print "Watch out for V2.0 with data disks such as:"
Print : Print
Print "Motorbikes"
Print
Print "Films"
Print
Print "Etc."
Print
Print "Also look out for a computer games data disk with around 300 computer games!!!"
Print : Print : Print
Centre "Press SPACE Bar"
Do
Z$=Inkey$
If Z$=" " Then Proc INS
Loop
End Proc
Procedure GAME
Cls
Print " At the begining you get the option of playing with a friend i.e. one types the word(s) the other";
Print " guesses."
Print " You guess the letters one by one and each time you get one wrong you man gets";
Print " that bit closer to being hanged!! At any point during the game you may press '0'";
Print " as your guess to try and guess the entire word(s). You must try and get the word(s)";
Print " before your man is hung!!"
Print
Print " There are 208 Computer games on the disk. These will autoboot.";
Print " To make your own words list with this version you need to change the data statements and the RANDOM procedure."
Print : Print : Print
Print "Look out for HANGMAN V2.0 soon including an editor to make your own data files!!"
Print " and some ready made data disks"
Print : Print : Print : Print : Print
Centre "Press SPACE Bar"
Do
Z$=Inkey$
If Z$=" " Then Proc INS
Loop
End Proc