home *** CD-ROM | disk | FTP | other *** search
- clearscreen
-
- :hoofd
- clearscreen
- changecolor 4
- display "|"
- display "Your time left: "
- listtimeleft
- display "|"
- display "|"
- changecolor 14
- display " < 1 > Increase timeleft with 1 min.|"
- display " < 2 > Decrease timeleft with 1 min.|"
- display " < 3 > Increase timeleft with 10 min.|"
- display " < 4 > Decrease timeleft with 10 min.|"
- display " < ! > Return to bbs|"
- display "|"
- changecolor 4
- display "Command: "
- getchar 1
- :
-
- if 1 = "1"
- settime +1
- gotolabel hoofd
- endif
-
- if 1 = "2"
- settime -1
- gotolabel hoofd
- endif
-
- if 1 = "3"
- settime +10
- gotolabel hoofd
- endif
-
- if 1 = "4"
- settime -10
- gotolabel hoofd
- endif
-
- if 1 = "!"
- display "|"
- display "|"
- display "Nice of you to try out this small door...|"
- display "This door was made with Quesdoor; the Extended Questionaire Language !|"
- display "|"
- display "Press <ENTER>"
- Ask 0 3
- clearscreen
- delete time.asw
- changecolor 15
- quit
- endif
-
-
- ifnot 1 = "!"
- display "|"
- display "|"
- display "Unknown Option....|"
- display "|"
- display "Press <ENTER>"
- Ask 0 3
- gotolabel hoofd
- endnotif
-
-