home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 12 / CD_ASCQ_12_0294.iso / vrac / ss_31.zip / SEND.BAT < prev    next >
DOS Batch File  |  1994-01-20  |  1KB  |  36 lines

  1. @echo off
  2. rem
  3. rem  SuperSlots! passes these parameters to SEND.BAT.
  4. rem  %1 = com port.
  5. rem  %2 = base address for com port.
  6. rem  %3 = IRQ for com port.
  7. rem  %4 = Type of transfer (0 = SSICONS.ZIP, 1 = SS1.ICN..SS6.ICN
  8. rem
  9. rem  Replace port %1 below with portx %2,%3 if using a non-standard com port.
  10. rem  See SS!SYSOP.DOC for more information on SEND.BAT.
  11. rem
  12.  
  13. rem Check type of transfer and skip over Type0 if Type1
  14. IF %4==1 GOTO Type1
  15.  
  16.  
  17. :Type0
  18. rem  A 'Type0' transfer is used where the caller's terminal cannot be
  19. rem  identified or does not support a RIPscrip 'RIP_ENTER_BLOCK_MODE'
  20. rem  transfer of ICON files directly to the caller's default ICON directory.
  21.  
  22. rem  Send SSICONS.ZIP using Zmodem.
  23. DSZ port %1 sz SSICONS.ZIP
  24. GOTO END
  25.  
  26.  
  27. :Type1
  28. rem  A 'Type1' transfer is used where the caller's terminal can be identified
  29. rem  and supports a RIPscrip 'RIP_ENTER_BLOCK_MODE' transfer of ICON files
  30. rem  directly to the caller's default ICON directory.
  31.  
  32. rem  Send icon files using Zmodem.
  33. DSZ port %1 sz SS1.ICN SS2.ICN SS3.ICN SS4.ICN SS5.ICN SS6.ICN
  34.  
  35. :END
  36.