home *** CD-ROM | disk | FTP | other *** search
/ Amiga Elysian Archive / AmigaElysianArchive.iso / comm / stel220.lha / STELLAR / RESETME.RX < prev    next >
Text File  |  1993-07-15  |  817b  |  31 lines

  1. /* use this file to clean slate the game */
  2. address command "delete doors:stellar/army/#?.dat"
  3. address command "delete doors:stellar/days/user-#?"
  4. address command "delete doors:stellar/flags/mail_for-#?"
  5. address command "delete doors:stellar/send/#?.dat"
  6. address command "delete doors:stellar/user/#?.dat"
  7.  
  8. address command "delete doors:stellar/players.dat"
  9.  
  10. OPEN('file','doors:stellar/players.dat','W')
  11. CLOSE('file')
  12.  
  13. OPEN('file','doors:stellar/mail_for-1','W')
  14. CLOSE('file')
  15.  
  16. OPEN('file','doors:stellar/daysleft.dat','W')
  17. WRITELN('file','30')
  18. CLOSE('file')
  19.  
  20. OPEN('file','doors:stellar/calldata','W')
  21. WRITELN('file','0')
  22. WRITELN('file','0')
  23. CLOSE('file')
  24.  
  25. address command "delete doors:stellar/log"
  26.  
  27. OPEN('file','doors:stellar/log','W')
  28. WRITELN('file','Stellar Wars V 2.0 Log File')
  29. WRITELN('file','')
  30. CLOSE('file')
  31.