home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 2 BBS / 02-BBS.zip / orion.zip / Events / Events.Text next >
Text File  |  1995-04-13  |  4KB  |  141 lines

  1. ; Event file, in human format:
  2. ;
  3. ; Comments begin with semi-colons and can be on any line.
  4. ; Any text after a semi-colon is ignored.
  5. ;
  6. ; Keywords:
  7. ;
  8. ; EVENTBEGIN  --  Begins description of an event.
  9. ; EVENTEND    --  Ends description of an event.
  10. ; NAME        --  Name of the event
  11. ; START       --  Starting time of event in HH:MM format.
  12. ; END         --  (temporary) Ending time in HH:MM format.
  13. ; LENGTH      --  Length of event in minutes
  14. ; COMMAND     --  Command to spawn at beginning of event
  15. ; FLAGS       --  Flags to control event
  16. ;      1 = Forced (event must run)
  17. ;      2 = Recv Mail only (doesn't call out)
  18. ;      4 = Send mail only (doesn't answer ring)
  19. ;      8 = No File REQuests
  20. ;     16 = BBS calls allowed
  21. ;     32 = Send Crash Mail
  22. ;     64 = Send Crash Mail no matter what the cost is
  23. ;    128 = Cost must be less than MAXCOST
  24. ;    256 = Cost must be more than MINCOST
  25. ;    512 = Cost must equal MAXCOST
  26. ;   1024 = Wait for COMMAND to finish before continuing
  27. ;   2048 = Clear all call counters (Reset tries and such things)
  28. ;   4096 = Reboot the System (The BBS)
  29. ;   8192 = Process Waitfor Command through the Meta Converter
  30. ;  16384 = Mark Current Line Inactive, and Free Comm Handle (Coupled with
  31. ;          a COMMAND)
  32. ;  32768 = Make AdeptXBBS shutdown just as if you had his the shutdown
  33. ;          option from the main screen.
  34. ;
  35. ;   Add numbers together to combine flags.
  36. ;
  37. ;   24 = 8 (no FREQs) and 16 (BBS calls OK)
  38. ;
  39. ; MINCOST     -- Minimum cost (see flags)
  40. ; MAXCOST     -- Maximum cost 
  41. ; DAYOFWK     -- Day of week to execute
  42. ;      1 = Sunday 
  43. ;      2 = Monday
  44. ;      4 = Tuesday
  45. ;      8 = Wednesday
  46. ;     16 = Thursday
  47. ;     32 = Friday
  48. ;     64 = Saturday
  49. ;
  50. ;    256 = Weekdays (Mon. thru Fri.)
  51. ;    512 = Weekends (Sat. -n- Sun.)
  52. ;   1024 = All Days
  53. ;
  54. ;  Add numbers to combine days
  55. ;
  56. ; DAYOFMONTH  -- Day of month to execute. Use w/ MONTH
  57. ; MONTH       -- Month to execute. Use w/ DAYOFMONTH
  58. ;    Using the above combo can cause execution to happen
  59. ;    on a certain day of a certain month.  If day of month
  60. ;    is set, and month is not set (0) then it event will
  61. ;    occur on that day every month.
  62. ;
  63. ; CALLTIME    -- Time (in seconds) between calls
  64. ; MAXBAD      -- Max bad calls
  65. ; MAXTRIES    -- Maximum connects allowed
  66. ;
  67. ; This events file depicts what we consider the average events file based on
  68. ; a long distance plan of day rates durring 8am - 5pm, and night rates at all
  69. ; other hours.  This events file doesn't take into account that the weekends
  70. ; are ALWAYS night rates (depending on the calling plan).  Modify yours
  71. ; according to your long distance calling plan.  If you do not want the
  72. ; BBS calling out period please make sure to make the proper modifications.
  73. ;
  74. ;
  75.  
  76. EVENTBEGIN
  77.   START      00:01
  78.   END        04:59
  79.   DAYOFWK    1024
  80.   FLAGS      2128
  81.   NAME       Midnight till ZMH
  82.   MINCOST    0
  83.   MAXCOST    200
  84.   MAXBAD     10
  85.   MAXTRIES   200
  86.   CALLTIME   480
  87. EVENTEND
  88.  
  89. EVENTBEGIN
  90.   START      05:00
  91.   END        05:59
  92.   DAYOFWK    1024
  93.   FLAGS      2058
  94.   NAME       Fidonet ZMH
  95.   MINCOST    0
  96.   MAXCOST    200
  97.   MAXBAD     10
  98.   MAXTRIES   200
  99.   CALLTIME   480
  100. EVENTEND
  101.  
  102. EVENTBEGIN
  103.   START      06:01
  104.   END        07:59
  105.   DAYOFWK    1024
  106.   FLAGS      2128
  107.   NAME       ZMH to Before Rates go Up
  108.   MINCOST    0
  109.   MAXCOST    200
  110.   MAXBAD     10
  111.   MAXTRIES   200
  112.   CALLTIME   480
  113. EVENTEND
  114.  
  115. EVENTBEGIN
  116.   START      08:00
  117.   END        17:00
  118.   DAYOFWK    1024
  119.   FLAGS      2128
  120.   NAME       Day Rates
  121.   MINCOST    0
  122.   MAXCOST    0
  123.   MAXBAD     10
  124.   MAXTRIES   200
  125.   CALLTIME   480
  126. EVENTEND
  127.  
  128. EVENTBEGIN
  129.   START      17:01
  130.   END        23:59
  131.   DAYOFWK    1024
  132.   FLAGS      2128
  133.   NAME       Night Rates Again
  134.   MINCOST    0
  135.   MAXCOST    200
  136.   MAXBAD     20
  137.   MAXTRIES   200
  138.   CALLTIME   480
  139. EVENTEND
  140.  
  141.