home *** CD-ROM | disk | FTP | other *** search
/ rtsi.com / 2014.01.www.rtsi.com.tar / www.rtsi.com / OS9 / OS9_6X09 / GAMES / Rogue_Mods.lzh / Install.scr next >
Text File  |  1991-12-24  |  1KB  |  45 lines

  1. echo Enter the full pathlist to the Directory that the rogue
  2. echo datafiles are currently in (eg. /DD/ROGUE):
  3. var.0
  4. Echo Creating /DD/R directory
  5. makdir /dd/R
  6. echo Setting Attibutes on /dd/R
  7. attr /dd/R -pe pr pw r w e
  8. Echo Changeing current data dir to /dd/R
  9. cd /dd/R
  10. echo Copying %0/rogue.chr /dd/R/chr
  11. copy %0/rogue.chr chr
  12. echo Copying %0/rogue.fnt /dd/R/fnt
  13. copy %0/rogue.fnt fnt
  14. echo Copying %0/rogue.grf /dd/R/grf
  15. copy %0/rogue.grf grf
  16. echo Copying %0/rogue.hlp /dd/R/hlp
  17. copy %0/rogue.hlp hlp
  18. echo Copying %0/rogue.opt /dd/R/opt
  19. copy %0/rogue.opt opt
  20. echo Copying %0/rogue.scr /dd/R/scr
  21. copy %0/rogue.scr scr
  22. echo Resetting attributes on /dd/R/scr
  23. attr /dd/R/scr -pe pw -e pr w r
  24. echo Enter dir name that the "rogue.ipc" file is in:
  25. var.1
  26. Echo Renameing ORIGINAL Rogue to rogue.ORIG
  27. if -f /dd/cmds/rogue
  28.   rename /dd/cmds/rogue rogue.ORIG
  29. else
  30.   Echo could not find "rogue" in /dd/CMDS
  31.   goto EXIT
  32. endif
  33. Echo Creating patched version of Rogue
  34. ipatch %1/rogue.ipc /dd/cmds/rogue.orig /dd/cmds/rogue
  35. echo Setting attr on /dd/cmds/rogue
  36. attr /dd/cmds/rogue pe -pr -pw e r w
  37. echo Enter dir name that the "rogue.dat.ipc" file is in:
  38. var.2
  39. ipatch %2/rogue.dat.ipc %0/rogue.dat /dd/R/dat
  40. echo Enter dir name that the "rogue.fnt.ipc" file is in:
  41. var.3
  42. ipatch %3/rogue.fnt.ipc %0/rogue.fnt /dd/R/fnt
  43. Echo All done...
  44. *EXIT
  45.