home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #1 / monster.zip / monster / MODEM / COMMIE02.ZIP / COMMIE.DOC < prev    next >
Text File  |  1994-02-15  |  5KB  |  144 lines

  1. COMMIE r.02
  2.  
  3. A free program brought to you by John Rohner.
  4. I can be reached for comments/etc. at Immortality (414-643-1576).
  5.  
  6.  
  7. This is a bare-bones communication program to use when calling BBS's that
  8. support the GIP graphics exchange protocol.  Such as Juggernaut.
  9.  
  10. GIP (Graphics Interchange Protocol) allows BBS's and callers to view VGA
  11. graphics as easily as they do ANSI graphics.
  12.  
  13. This program is also an example of how other communication program authors
  14. can add support for GIP to their programs.
  15.  
  16. As a stand-alone communications program, it's not great.  You will want to
  17. hang on to what you're using now.
  18.  
  19.  
  20. This program has the following features:
  21.  
  22.     GIP support (VGA or better required)
  23.     Avatar support
  24.     upload/download files
  25.     use arrow keys
  26.     fossil-based communications
  27.  
  28. This program has the following limitations:
  29.  
  30.     Zmodem only protocol
  31.     no dialing directory
  32.     no other frills
  33.     requires a fossil driver
  34.  
  35.  
  36.  
  37.  
  38. COMMIE.CFG
  39.  
  40. The program requires that you have a fossil driver.  Probably only X00 1.24
  41. or higher will work.  In your CONFIG.SYS:
  42.  
  43.    DEVICE = X00.SYS R=4096 T=2048 E
  44.  
  45. will do for most people.  The "R=4096 T=2048" is required for GIP support.
  46.  
  47. Some things you can configure in the COMMIE.CFG file.  The file is a standard
  48. text file which you may edit with any text editor.
  49.  
  50. The lines immediately following "REMINDERS" are displayed when you run the
  51. program.  These are useful for holding the numbers of BBS's.
  52.  
  53. The lines immediately following "SETTINGS" are configuration information,
  54. and must remain in the same order.
  55.  
  56.    ATE1X4          This is the initialization string your modem needs.
  57.                    This will do for most people--but if you have troubles,
  58.                    check what your current communications program sends, and
  59.                    use that.
  60.  
  61.    19200           This is the speed to talk to your modem at.  It is
  62.                    usually the highest speed your modem can handle.
  63.                    Valid values are: 1200, 2400, 9600, 19200, 38400
  64.                    No "57600"--use 38400 instead.
  65.  
  66.    C:\DSZ.EXE      Pathname to your Zmodem program.
  67.  
  68.    BIOS ON         This means to use Direct/BIOS (fast) screen writing,
  69.                    anything else here disables BIOS.  This is also used
  70.                    to tell the software whether to use Direct graphics
  71.                    writing.  So if your graphics are all screwed up always,
  72.                    you should turn this off.
  73.  
  74.    2DH             If you have an SVGA card, put your cards screen MODE for
  75.                    640x480x256 here.  This can usually be found in the
  76.                    modem's docs.  If you can't find it, don't worry about
  77.                    it--it's only needed if the BBS wants to use SVGA modes.
  78.  
  79.    2EH             If you have an SVGA card, put your cards screen MODE for
  80.                    640x480x256 here.
  81.  
  82. The lines immediately following "MACROS" are hot-key'd macros.  Put the text
  83. you want to send in these, then when you hit F1 - F10 that text is sent
  84. (everything after the "=").  Use "|" for a CR/LF.
  85.  
  86.  
  87.  
  88. OPERATION
  89.  
  90. Not much to say, just run it.
  91.  
  92. The GIP protocol automatically captures and updates any graphic files
  93. (such as icons) that the BBS uses.
  94.  
  95. These will be stored in the BBSSTUFF\ directory, which will be created in
  96. the current directory.  So it's best to always run COMMIE from the same
  97. place, preferable it's own directory.
  98.  
  99. The GIP protocol automatically updates and creates the graphic files for
  100. a BBS, so there is no need to download the BBS's graphic files.
  101.  
  102. Only Zmodem is supported to download and upload files.
  103.  
  104. You can speed up some BBS's by switching Avatar ON on their BBS.
  105.  
  106. The arrow keys are active, pressing them works on some BBS's for stuff.
  107.  
  108. If the BBS uses menus that your monitor cannot handle (such as SVGA, or
  109. VGA and you don't have a VGA system), the software will still try to display
  110. the graphics.  But this might cause troubles, so if the BBS uses graphics
  111. your system can't handle, just use the BBS's normal ANSI screens.
  112.  
  113. Commands:
  114.   <pgup>  to send file(s) (upload to a BBS)
  115.   <pgdn>  to receive file(s) (download from a BBS)
  116.   <alt>c  to reset the screen to non-graphics mode (clear screen)
  117.   <alt>h  to hang up
  118.   <alt>s  to shell to DOS
  119.   <alt>x  to exit the program
  120.  
  121.  
  122.  
  123. PROBLEMS
  124.  
  125.  problem: Getting strange characters on the screen after the "What is your
  126.           comm port" question.
  127. solution: Fix the baud rate in COMMIE.CFG.
  128.  
  129.  problem: GIP isn't working.  When selected, it locks up/stops about where
  130.           icons should be displayed.
  131. solution: You don't have "R=4096 T=2048" in your CONFIG.SYS device line for
  132.           X00.
  133.  
  134.  problem: You want to make programming changes to the source code.
  135. solution: Source code is available with JDR_BBS (Juggernaut).  But you also
  136.           need Basic PDS 7.x.
  137.  
  138.  problem: You see only the text from menus on the screen, no graphics.
  139. solution: Your computer is not going into the graphics mode the sysop is
  140.           using, or possibly line noise has confused everyone.  Hitting
  141.           [Enter] usually redraws the menu--if it redraws correctly you
  142.           know it was just line noise troubles.
  143.  
  144.