home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #1 / monster.zip / monster / PROG_BAS / PRO98SRC.ZIP / CONSTANT.BAS < prev    next >
BASIC Source File  |  1994-01-31  |  1KB  |  36 lines

  1. %False = 0
  2. %True = NOT %False
  3.  
  4. ' constants for including or excluding portions of the program
  5. %NORIP        =  %False   ' Include RIPSCRIPT commands
  6. '%NORIP        =  %True    ' do not include RIPSCRIPT
  7. '%NOXMODEM     =  %False   ' Include Xmodem send and recieve
  8. %NOXMODEM     =  %True   ' don't (if you prefer to use a door instead)
  9. %NOCHAT       =  %False   ' Include 6-way live CHAT
  10. '%NOCHAT       =  %True   ' don't (especially on a single user system)
  11. %NOCOMMENTS   =  %False   ' Include the 9-line comment editor and viewer
  12. '%NOCOMMENTS   =  %True   ' don't
  13. '%NOCONFERENCE =  %False   ' Include the conference system
  14. %NOCONFERENCE =  %True   ' don't
  15. %NODBASE      =  %False   ' Include dBASE file support and BTree index
  16. '%NODBASE      =  %True   ' don't
  17. %NOAUTOEDIT   =  %False   ' Include the name and address reformatter
  18. '%NOAUTOEDIT   =  %True   ' don't
  19. %NOTASKS        = %True   ' do not include task manager
  20. '%NOTASKS       = %False  ' include it (it's not ready)
  21.  
  22. '%KILLF10   = %true         ' Trap F10 to force exit to DOS (for debugging)
  23. '%MONOWATCH = %true         ' broadcast to mono monitor (for debugging)
  24. %KILLF10   = %false        ' don't trap f10
  25. %MONOWATCH = %false        ' don't broadcast to mono monitor
  26.  
  27. '  %BT.Max.Half.Node = 15
  28. '  %BT.Max.Node = %BT.Max.Half.Node * 2
  29. '  %BT.File.Num = 2801
  30. %dbIndex = -1
  31. %Bt.Max.Half.Node =  25
  32. %Bt.Max.Node = %Bt.Max.Half.Node * 2
  33.  
  34. %DoStack = 1
  35. %ForStack = 2
  36.