home *** CD-ROM | disk | FTP | other *** search
- clearscreen
-
- :hoofd
- clearscreen
- changecolor 4
- display "|"
- display "Your current Security Level is: "
- listsecurity
- display "|"
- display "|"
- changecolor 14
- display " < 1 > Upgrade level with 1|"
- display " < 2 > Downgrade level with 1|"
- display " < 3 > Select completely new|"
- display " < 4 > Set security level to level 100|"
- display " < ! > Return to bbs|"
- display "|"
- changecolor 4
- display "Command: "
- getchar 1
- :
-
- if 1 = "1"
- setsecurity +1
- gotolabel hoofd
- endif
-
- if 1 = "2"
- setsecurity -1
- gotolabel hoofd
- endif
-
- if 1 = "3"
- display "|"
- display "|"
- display "Enter the new security level you want: "
- Ask 5 2
- display "|"
- display "|"
- setlevel 2
- display "Allright, you're now have Security level : "
- listsecurity 2
- display "|"
- display "Press <ENTER>"
- Ask 0 3
- gotolabel hoofd
- endif
-
- if 1 = "4"
- setsecurity 100
- 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 level.asw
- changecolor 15
- quit
- endif
-
-
- ifnot 1 = "!"
- display "|"
- display "|"
- display "Unknown Option....|"
- display "|"
- display "Press <ENTER>"
- Ask 0 3
- gotolabel hoofd
- endnotif
-
-