home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 2 BBS / 02-BBS.zip / ox2v3wb2.zip / INSTALL.CMD < prev    next >
OS/2 REXX Batch file  |  1995-12-01  |  3KB  |  63 lines

  1. @ECHO OFF
  2. CLS
  3. IF NOT EXIST IRONOX.EXE GOTO WRONGDIR
  4. IF NOT EXIST OXCONFIG.EXE GOTO WRONGDIR
  5. IF NOT EXIST SYSOP.DOC GOTO WRONGDIR
  6. IF NOT EXIST SAMPLE.BAT GOTO WRONGDIR
  7. ECHO Welcome to Iron Ox version 3.00!  This batch file will help you install
  8. ECHO Iron Ox by taking the following steps:
  9. ECHO.
  10. ECHO 1. Running OxConfig to make a batch file and configure your game.
  11. ECHO 2. Running IRONOX /LOCAL /RESET to start a new Iron Ox game.
  12. ECHO 3. Displaying instructions on what to do from there!
  13. ECHO.
  14. ECHO If you don't wish to install Iron Ox right now, press Ctrl-C (hold down
  15. ECHO the Ctrl key and press 'C') to abort.  Otherwise, press any key to
  16. ECHO continue!
  17. ECHO.
  18. PAUSE
  19. OXCONFIG
  20. CLS
  21. IF NOT EXIST IRONOX.CFG GOTO ABORTED
  22. IRONOX /LOCAL /RESET
  23. IF NOT EXIST MAP.DAT GOTO ABORTED
  24. CLS
  25. ECHO Your Iron Ox game has now been reset.  To get the game running from your
  26. ECHO BBS, all you need to do is:
  27. ECHO.
  28. ECHO 1. Copy the file DRS2V5B5.DLL into a directory on your OS2 LIBPATH.
  29. ECHO 2. Add a line to your nightly batch file to run IRONOX /MAINT, and
  30. ECHO 3. Update your BBS display files so callers know it's ready to play!
  31. ECHO.
  32. ECHO If you didn't use the option to make a batch file in OxConfig, or if
  33. ECHO you have any trouble getting Iron Ox to interface with your BBS, see
  34. ECHO the file SAMPLE.BAT for example batch files.  You'll also find
  35. ECHO detailed instructions and troubleshooting tips in the file SYSOP.DOC.
  36. ECHO.
  37. ECHO One more thing -- if you're connected to FidoNet, please consider
  38. ECHO picking up the IRONOX echo from your Fido hub.  It's a great place to
  39. ECHO get help with setup questions, to hear about new Ox leagues, and to let
  40. ECHO your users get playing tips from the pros.
  41. ECHO.
  42. ECHO Enjoy the game!
  43. ECHO.
  44. GOTO END
  45. :WRONGDIR
  46. CLS
  47. ECHO Error:  Required installation files not found!  If you have run this
  48. ECHO batch file from a directory other than the one where you unpacked Iron
  49. ECHO Ox, please change to your Iron Ox directory and try again.  If you are
  50. ECHO already in your Iron Ox directory, your Iron Ox archive is missing
  51. ECHO important files!  Please contact the game author at Fido 1:202/704 or
  52. ECHO Internet joel@dreamcty.cts.com for a complete copy of the game!
  53. ECHO.
  54. GOTO END
  55. :ABORTED
  56. CLS
  57. ECHO Your installation of Iron Ox was aborted or encountered a problem.  You
  58. ECHO will need to run the installation again before the game will be
  59. ECHO playable.  If you're having problems, please feel free to contact the
  60. ECHO author by any of the means listed in SYSOP.DOC for assistance!
  61. ECHO.
  62. :END
  63.