home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 2 BBS / 02-BBS.zip / ox2v3wb2.zip / SAMPLE.BAT < prev    next >
DOS Batch File  |  1995-12-01  |  4KB  |  69 lines

  1. @ECHO OFF
  2.  
  3. REM   *************************************************************
  4. REM   * SAMPLE.BAT -- This file contains several sample batch     *
  5. REM   * files for running Iron Ox and Iron Ox for OS/2.  (See the *
  6. REM   * file SYSOP.DOC for a more complete explanation of the     *
  7. REM   * various options and switches).  The examples here cover:  *
  8. REM   *                                                           *
  9. REM   * 1. The standard command-line on a DOS or OS/2 system.     *
  10. REM   * 2. Multinode installation/specifying node number.         *
  11. REM   * 3. Handling non-standard ports under DOS without FOSSIL.  *
  12. REM   * 4. Specifying dropfile location (if not the current dir). *
  13. REM   * 5. Running the OS/2 version from a DOS BBS under OS/2.    *
  14. REM   *************************************************************
  15.  
  16. REM   *************************************************************
  17. REM   * The following line is usually all you need to run Ox with *
  18. REM   * DOOR.SYS, DORINFO1.DEF, SFDOORS.DAT, and CHAIN.TXT!       *
  19. REM   * If you have a FOSSIL installed or are running the OS/2    *
  20. REM   * version of Iron Ox, this command line will work even if   *
  21. REM   * you have non-standard IRQ's/comm ports.                   *
  22. REM   *                                                           *
  23. REM   * This batch file will work on multinode systems running    *
  24. REM   * with any dropfiles *except* DORINFO1.DEF/DORINFOx.DEF.    *
  25. REM   * See below for a multinode DORINFO example.                *
  26. REM   *************************************************************
  27.  
  28. C:\DOOR\IRONOX\IRONOX.EXE
  29.  
  30. REM   *************************************************************
  31. REM   * This is the line you might use to run the game on a       *
  32. REM   * non-standard COM3 with address 3E8, IRQ 5 if you *AREN'T* *
  33. REM   * running a FOSSIL driver or the OS/2 version of the door.  *
  34. REM   *************************************************************
  35. REM
  36. REM   C:\DOOR\IRONOX\IRONOX.EXE /P:3E8 /I:5
  37.  
  38. REM   *************************************************************
  39. REM   * If you are using DORINFOx.DEF on a multinode system, you  *
  40. REM   * will need to specify the correct node number on the       *
  41. REM   * command line.  This example would be used for node two.   *
  42. REM   * If you have an environment variable defined for the node  *
  43. REM   * number (e.g., SET NODE=1), you can use the environment    *
  44. REM   * variable in place of the number (e.g., /N:%NODE%).        *
  45. REM   *************************************************************
  46. REM
  47. REM   C:\DOOR\IRONOX\IRONOX.EXE /N:2
  48.  
  49. REM   *************************************************************
  50. REM   * Most BBS'es (e.g., Wildcat, RemoteAccess) start doors     *
  51. REM   * from the same directory where they create their door      *
  52. REM   * information file.  Use a batch file like this one if you  *
  53. REM   * are running a BBS that doesn't start door execution in    *
  54. REM   * the same place as it puts its door information file.      *
  55. REM   * (Maximus, e.g., is often set up to put it elsewhere.)     *
  56. REM   *************************************************************
  57. REM
  58. REM   C:\DOOR\IRONOX\IRONOX.EXE C:\MAX\
  59.  
  60. REM   *************************************************************
  61. REM   * OS/2 only!  This is the batch file you'd use to start     *
  62. REM   * Iron Ox for OS/2 from a DOS BBS running in the OS/2 DOS   *
  63. REM   * box.  This example uses the utility OS2EXEC by Eberhard   *
  64. REM   * Mattes; see the sysop docs for information on how to set  *
  65. REM   * up and/or get a copy of OS2EXEC.                          *
  66. REM   *************************************************************
  67. REM
  68. REM   OS2EXEC C:\DOOR\IRONOX\IRONOX.EXE /PORT
  69.