1.31k likes | 1.45k Views
;So-Long.ppe. ;Version 1.0. ;Francis "gorilla" Amato. ;Fido: 1:2619/222. ;Variables and such. integer count. string key, prompt, prompt2. prompt =" @X0FESC to stay on, ENTER to log-off immediately ". count = 1. ;There are the following choices. ;1) Press ESC to stay on-line.
E N D
prompt =" @X0FESC to stay on, ENTER to log-off immediately "
;If key = ESC • if (key = chr(27)) goto OK
;Where to go when the Count = X • if (count=1) gosub one • if (count=2) gosub two • if (count=3) gosub three • if (count=4) gosub four • if (count=5) gosub five • if (count=6) gosub six • if (count=7) gosub seven
;This is mildly interesting. After displaying the "7" number, it
;gives a PRESS ENTER TO CONTINUE prompt. The easist way to fix it was
;to stuff an enter command into the buffer. The "press to continue" prompt
;might be only on my system and not yours. U may need to remove or relocate
;the following command • command chr(13), false • if (count=8) gosub eight • if (count=9) gosub nine