home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 8 / FreshFishVol8-CD1.bin / new / comm / bbs / eazybbs / c / eazygetty.wait < prev    next >
AmigaDOS Script File  |  1994-02-20  |  873b  |  45 lines

  1. .KEY device/A,unit/A
  2. .BRA {
  3. .KET }
  4.  
  5. ; Let's wait until Carrier-Detect goes low what means
  6. ; that the user has terminated the connection ...
  7. ;
  8. MB:C/SyncCD {device} {unit} POLL
  9.  
  10. ; Quit the "Getty" started in the previous script ...
  11. ;
  12. Getty -S{device} -U{unit} -0
  13.  
  14. ; Give Getty enough time to clean up and to start "uuxqt".
  15. ; Continue when "uuxqt" has finished its job ...
  16. ;
  17. Wait 10
  18. Lab uuxqtwait
  19. MB:C/Exist T:UUXQT#?.LOCK
  20. If $RC GT 0 VAL
  21.     ;Echo "UUXQT still running ..."
  22.     Wait 3
  23.     Skip BACK uuxqtwait
  24. EndIf
  25.  
  26. ; Lower priority ...
  27. ; (EazyBBS resets it when the scripts ends)
  28. ;
  29. ChangeTaskPri -1 PROCESS $process
  30.  
  31. ; Unbatch incoming messages ...
  32. ; (and update our newsreader's database)
  33. ;
  34. UnBatch
  35. ArnMaster
  36. ;
  37. ; for use with Crash-CNews: NewsBin:Relay/UnBatch
  38.  
  39. ; And now batch the news for all connected sites ...
  40. ;
  41. SendBatches
  42. ;
  43. ; for use with Crash-CNews: NewsBin:Batch/DoBatch
  44.  
  45.