home *** CD-ROM | disk | FTP | other *** search
- {
- | Lines script
- | For NewsFlash BBS
- | Alex Howarth 1995/6
- | Integrated version
-
- REPORT "Lines script"
- DECLARE aline,78
- LOCATE 0,DLINES-1
- NL
- TAB 0 STD CLL
- BFG 7 PRINT "Do you wish to "
- BFG 6 PRINT "A"
- BFG 7 PRINT "dd a line, "
- BFG 6 PRINT "V"
- BFG 7 PRINT "iew lines or "
- BFG 6 PRINT "C"
- BFG 7 PRINT "ancel?"
- GETd lineresponse,"CAV"
- IF lineresponse="A" THEN
- REPORT "Adding a line"
- CLEARRECORD
- BFG 7
- TAB 0 STD CLL
- PRINT "Enter line: "
- INPUT aline,78
- RECORDPRINT "{BFG 6}Opened for {BFG 2}"+USERNAME
- RECORDPRINT "{BFG 3}- "+aline
- WRITERECORD "<NewsFlash$Temp>.Lines"
- RUNAPP "<NewsFlash$BBS>Scripts.Lines.Trim"
- OSCLI "Settype <NewsFlash$Temp>.Lines &FFF"
- ENDIF
- IF lineresponse="V" THEN
- REPORT "Viewing lines"
- ATTR 7,0
- CLS
- STARTMORE
- SCRIPT "<NewsFlash$Temp>.Lines"
- ENDMORE
- NL
- GOSUB anykey
- ENDIF
- }