home *** CD-ROM | disk | FTP | other *** search
/ Crawly Crypt Collection 1 / crawlyvol1.bin / bbs / timlimit / timlimit.asc < prev   
Text File  |  1992-01-12  |  2KB  |  77 lines

  1. Time Limit documentation
  2. ========================
  3.  
  4. QuickBBS has not had a method whereby  a user can be limited access at 
  5. events where there are less  minutes  remaining until the next non-BBS 
  6. event than the user would normally have. I have implemented a fix that 
  7. will do the job, as follows:
  8.  
  9. If BinkleyTerm is used, then the  "BBS  Batch"  method must be used to 
  10. run the BBS.
  11.  
  12. The following batch file extract is for Pcommand:
  13.  
  14. :rpt
  15. bt
  16. if errorlevel 192 goto bbs
  17. if errorlevel 96 goto bbs
  18. if errorlevel 48 goto bbs
  19. if errorlevel 24 goto bbs
  20. if errorlevel 12 goto bbs
  21. if errorlevel 3 goto bbs
  22. goto rpt
  23.  
  24. :bbs
  25. bbsbatch
  26. goto rpt
  27.  
  28. This runs BinkleyTerm, and when a  BBS call comes in, the BBSBATCH.BAT 
  29. file is invoked by Pcommand.
  30.  
  31. This second batch file should be in the current working directory when 
  32. BBSBATCH is invoked:
  33.  
  34. cd <path_to_qbbs>
  35. blimstor %3
  36. quickbbs -b%1 -h
  37.  
  38. This stores the number  of  minutes  to  the  next  non-BBS event in a 
  39. temporary file that is created by blimstor.
  40.  
  41. The following should be in WELCOME.DOR:
  42.  
  43. send
  44. send Checking available time...
  45. send
  46. exec blimretr.ttp
  47. if *C<=0 then goto continue
  48. if *C>♪O then goto continue
  49. send The next event starts in *C minutes. You have until then.
  50. send
  51. ctime *C
  52. goto checked
  53. :continue
  54. send Available time will not be reduced for this session.
  55. send
  56. :checked
  57.  
  58. If using QuickBBS 1.02 the  ctime  should  be  replaced by time. It is 
  59. best that QuickBBS 1.06 is used.
  60.  
  61. The programs BLIMSTOR.TTP  and  BLIMRETR.TTP  should  be  in  the QBBS 
  62. directory.
  63.  
  64. The only problem with this  is  that  if  the  user spends a long time 
  65. entering his/her name and reading the  logo, userxxx, hotnews and news 
  66. text files, WELCOME.DOR is delayed in  execution until the end of this 
  67. period.
  68.  
  69. === END OF DOCUMENTATION ===
  70.  
  71. This  program  (c)  David  J.   Thomas   1992.  Contact  2:253/600  or 
  72. 90:1004/102 for support. David operates  The  Dream Machine BBS, which 
  73. is currently online from 2300 to 0800 on +44-222-341713.
  74.  
  75. This program is freely  distributable.  I  make  no  warranty that the 
  76. program will work as described.
  77.