home *** CD-ROM | disk | FTP | other *** search
- Script
-
- ; ***** REBELOG v1.0 ~ March 18, 1990 ~ by Outrider *****
- ; ***** Rock 'n' Roll Rebel BBS ~ 300-2400 Baud ~ 702/435-0786 *****
-
- ; ***** Use with REBELOG.SCR provided to maintain your Log File... *****
-
- Define CD
-
- CD = file_chgdir 'C:\BBS\' ; *** Your BBS Path
-
- Define Log = 'C:\BBS\Log' ; *** Your Log file
- Define Backup = 'C:\Log' ; *** Your Backup file
-
-
- ;~~~~~~~~~~~~~~~~~~~~~~ ROUTINE FOR YOUR _LOCAL_ LOGONS ~~~~~~~~~~~~~~~~~~~
-
- if command_level 10 ; *** Change to a level your LOCAL
- goto TOP ; Handles _don't_ have!
- endif
-
- if file_exists Log
- CD = file_delete Log ; *** Deletes Log with Local logon
- endif
-
- if file_exists Backup
- CD = file_copy Backup, Log ; *** Copy Backup over to your Log
- endif
-
- exit
-
- ;~~~~~~~~~~~~~~~~~~~~~~~~~ ROUTINE FOR YOUR CALLERS ~~~~~~~~~~~~~~~~~~~~~~~
-
- TOP:
-
- if file_exists Log
- CD = file_copy Log, Backup ; *** Create your backup
- endif
-
-
- ;~~~~~~~~~~~~~~~~~~~~~ REST OF YOUR ENDCALL.SCR GOES HERE ~~~~~~~~~~~~~~~~~
-