home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Carsten's PPE Collection
/
Carstens_PPE_Collection_2007.zip
/
S
/
STF-UNPW.ZIP
/
UNIXQ.PPE
(
.txt
)
< prev
next >
Wrap
PCBoard Programming Language Executable
|
1995-06-16
|
2KB
|
106 lines
;------------------------------------------------------------------------------
; .ss.
; `²²'
; .,sS$Ss,,s$ .,sS$$$Ss. .,sS$Ss,,s$ .ss. .sSs.
; .d$$²^°²$$$$'.d$P²°^^²$P'.d$$²^°²$$$$'.$$$' .$$$²Sb,.
; $$$' .$$$' $$$²Sçsµ²' .$$$' .$$$'.$$$' .$$$' `$$b.
; $$$b,,d$$$' ,$$$b,....,s$$$$b,,d$$$'.$$$;.,$$$' ;$$$
; `²S$$S²²S$$S²°²S$$$$S²°°²S$$$$$$',$$S²°²S$S'.sS$$$P²'
; .sS²°$$$²²°"' d²°'
; .$$² .$$'
; $$$.,d$$'
; `²S$$S²'
;------------------------------------------------------------------------------
; P.P.L.X. 2.OO (C)1996 - Lone Runner / AEGiS CoRP'96
;------------------------------------------------------------------------------
; PPE 3.O1 (Encryption type I) - Analysis ON - Postprocessing ON
;------------------------------------------------------------------------------
String STRING001
;------------------------------------------------------------------------------
Print "Welcome to A/UX Server Node @NODE@, located in London, UK."
Newline
Print "Running NexComm 15.6.1 Copyright (C) 1992-95 NexComm Communications."
Newline
Print "Registration NXC-1561. You are connected to Server Node @NODE@ at @CARRIER@ baud"
Newline
Print "Connection occured at @LOGTIME@ @LOGDATE@"
Newline
Newline
Print "Trying 143.45.32.10 6666....."
Delay 10
Print "."
Delay 10
Print "."
Delay 10
Print "."
Newline
Print "Connection Failed. Server is Unreachable."
Newline
Print "Trying 143.45.32.10 6667..... "
Newline
Print "Connection established."
Newline
Print "Escape character is `^]'."
Newline
Newline
Print "Terminal type: ansi, rip, askii. (A/r/n)? "
:LABEL001
STRING001 = Inkey()
If (Upper(STRING001) == "Y") Goto LABEL002
If (Upper(STRING001) == "A") Goto LABEL002
If (Upper(STRING001) == "N") Goto LABEL003
If (Upper(STRING001) == "R") Goto LABEL004
If (STRING001 == Chr(13)) Goto LABEL002
Goto LABEL001
:LABEL002
Print "A"
End
:LABEL003
Print "N"
End
:LABEL004
Print "R"
End
;------------------------------------------------------------------------------
;
; Usage report (before postprocessing)
;
; ■ Statements used :
;
; 3 End
; 6 Goto
; 1 Let
; 16 Print
; 5 If
; 3 Delay
; 11 Newline
;
;
; ■ Functions used :
;
; 5 ==
; 4 Upper()
; 1 Chr()
; 1 Inkey()
;
;------------------------------------------------------------------------------
;
; Analysis flags : No flag
;
;------------------------------------------------------------------------------
;
; Postprocessing report
;
; 0 For/Next
; 0 While/EndWhile
; 0 If/Then or If/Then/Else
; 0 Select Case
;
;------------------------------------------------------------------------------
; AEGiS Corp - Break the routines, code against the machines!
;------------------------------------------------------------------------------