home *** CD-ROM | disk | FTP | other *** search
- ; Page Killer
- ;
- ; Silly little .PPE that will make a caller think
- ; they've really ticked you off when they page you.
- ;
- ; To make this work, change record # 128 in PCBTEXT
- ; to say !c:\pcb\ppe\page.ppe (or wherever you keep
- ; your .ppe programs). When paging is turned off,
- ; program will run, then dump the user back to the
- ; "Leave a comment?" prompt. The text file "WARN"
- ; must also be in c:\pcb\ppe for it to display.
-
- STRING ans
-
- ; Display a warning that the sysop is busy
-
- DISPFILE ppepath()+"WARN",SEC+GRAPH+LANG
-
- PRINTLN
-
- ; Ask if they REALLY want to bother the sysop
-
- INPUTTEXT "Are you sure you want to Page the Sysop",ans,@X0E,1
-
- ; If they say yes, start the siren...
-
- IF (UPPER(ans) = "Y") THEN
-
- NEWLINE
- PRINTLN "@X0EConnecting to Sysop Paging siren."
- NEWLINE
- DELAY 36
- PRINTLN "@X09Sounding Paging Siren."
- DELAY 36
- PRINTLN "@X0EWaiting for response from sysop......"
- DELAY 36
- PRINTLN "@X09Sysop has turned off the Paging Siren"
- DELAY 36
- PRINTLN
- ; This next series simulates the sysop typing at the keys...
- PRINT "@X0EThis is the Sysop.... Wha"
- DELAY 6
- PRINT "t's t"
- DELAY 9
- PRINT "he b"
- DELAY 7
- PRINT "ig i"
- DELAY 9
- PRINT "dea? I"
- DELAY 9
- PRINT " was t"
- DELAY 4
- PRINT "rying"
- DELAY 10
- PRINT " to rel"
- DELAY 6
- PRINT "ax!"
- PRINTLN
- DELAY 9
- PRINTLN "@X09Sysop chat ended..."
- DELAY 20
- PRINTLN "Logoff Sequence Initiated!"
- DELAY 30
- NEWLINE
- NEWLINE
- PRINT "NO CARRIER"
- NEWLINE
- DELAY 48
- NEWLINE
- PRINT "@X0EJust kidding..... Leave me comment please."
- NEWLINE
- ELSE
- NEWLINE
- DELAY 18
- NEWLINE
- PRINT "@X0EGood choice.... he's probably drinking his coffee!"
- NEWLINE
- DELAY 18
- ENDIF
-
- END
-