home *** CD-ROM | disk | FTP | other *** search
/ Amiga Elysian Archive / AmigaElysianArchive.iso / comm / stel210.lha / RESETME.RX < prev    next >
Text File  |  1993-01-31  |  758b  |  28 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/daysleft.dat','W')
  14. WRITELN('file','30')
  15. CLOSE('file')
  16.  
  17. OPEN('file','doors:stellar/calldata','W')
  18. WRITELN('file','0')
  19. WRITELN('file','0')
  20. CLOSE('file')
  21.  
  22. address command "delete doors:stellar/log"
  23.  
  24. OPEN('file','doors:stellar/log','W')
  25. WRITELN('file','Stellar Wars V 2.0 Log File')
  26. WRITELN('file','')
  27. CLOSE('file')
  28.