home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 2 BBS / 02-BBS.zip / ox2v300.zip / INSTALL.CMD < prev    next >
OS/2 REXX Batch file  |  1996-05-16  |  3KB  |  72 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 /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. CLS
  20. ECHO About to launch OxConfig....
  21. ECHO.
  22. ECHO Note:  If you have an external protocol like CEXYZ/2 installed, and you wish
  23. ECHO to allow your users to download RIP icon files automatically, be sure to
  24. ECHO visit the General Settings/General Config menu to tell Iron Ox about
  25. ECHO your external protocol.
  26. ECHO.
  27. PAUSE
  28. OXCONFIG
  29. CLS
  30. IF NOT EXIST IRONOX.CFG GOTO ABORTED
  31. IRONOX /RESET
  32. IF NOT EXIST MAP.DAT GOTO ABORTED
  33. CLS
  34. ECHO Your Iron Ox game has now been reset.  To get the game running from your
  35. ECHO BBS, all you need to do is:
  36. ECHO.
  37. ECHO 1. Copy the file DOORS2V5.DLL into a directory on your OS2 LIBPATH.
  38. ECHO 2. Add a line to your nightly batch file to run IRONOX /MAINT, and
  39. ECHO 3. Update your BBS display files so callers know it's ready to play!
  40. ECHO.
  41. ECHO If you didn't use the option to make a batch file in OxConfig, or if
  42. ECHO you have any trouble getting Iron Ox to interface with your BBS, see
  43. ECHO the file SAMPLE.BAT for example batch files.  You'll also find
  44. ECHO detailed instructions and troubleshooting tips in the file SYSOP.DOC.
  45. ECHO.
  46. ECHO One more thing -- if you're connected to FidoNet, please consider
  47. ECHO picking up the IRONOX echo from your Fido hub.  It's a great place to
  48. ECHO get help with setup questions, to hear about new Ox leagues, and to let
  49. ECHO your users get playing tips from the pros.
  50. ECHO.
  51. ECHO Enjoy the game!
  52. ECHO.
  53. GOTO END
  54. :WRONGDIR
  55. CLS
  56. ECHO Error:  Required installation files not found!  If you have run this
  57. ECHO batch file from a directory other than the one where you unpacked Iron
  58. ECHO Ox, please change to your Iron Ox directory and try again.  If you are
  59. ECHO already in your Iron Ox directory, your Iron Ox archive is missing
  60. ECHO important files!  Please contact the game author at Fido 1:202/704 or
  61. ECHO Internet joel@dreamcty.cts.com for a complete copy of the game!
  62. ECHO.
  63. GOTO END
  64. :ABORTED
  65. CLS
  66. ECHO Your installation of Iron Ox was aborted or encountered a problem.  You
  67. ECHO will need to run the installation again before the game will be
  68. ECHO playable.  If you're having problems, please feel free to contact the
  69. ECHO author by any of the means listed in SYSOP.DOC for assistance!
  70. ECHO.
  71. :END
  72.