home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / d / danmax10.zip / MENUS.CTL < prev    next >
Text File  |  1992-07-08  |  35KB  |  729 lines

  1. % DanMax ver. 1.0
  2. %
  3. %          ----------------------------------------------------
  4. %          MENUS.CTL -- The menus control file for Maximus-CBCS
  5. %          ----------------------------------------------------
  6. %
  7. % This file controls all of the aspects of Max's menus, including
  8. % the actions performed by each option, the overall menu structure,
  9. % and the appearance of each menu.
  10. %
  11. % Each menu definition is started by a "Menu" keyword.  Immediately after
  12. % the word "Menu" should be the filename to use for that menu file.  The
  13. % .MNU extension will be added automatically.
  14. %
  15. % The only two menu names that Maximus requires are "MAIN" and "EDIT".
  16. % The MAIN menu is called as soon as a user has logged on, and the
  17. % EDIT menu is called whenever the user enters the BORED message editor.
  18. % Other than those two, you are completely free to name your menus as
  19. % you wish.  Since you define the links between menus, the names you
  20. % use for your other menus is of no consequence.
  21. %
  22. % Also, you are completely free to put as many items on as many menus
  23. % as you want, although it is recommended that you keep the general menu
  24. % structure the same.  You can have up to a maximum of 127 separate menu
  25. % options on each individual menu.
  26.  
  27. Menu MAIN0
  28.         %
  29.         % This option defines what the name of the menu will look like
  30.         % on-screen, to the user.  This doesn't necessarily have to be
  31.         % the same name as you specified above.
  32.  
  33.         Title   HOVEDMENU
  34.         % (%t min. tilbage)
  35.  
  36.         % This option is used to specify a "type" for each menu.  These
  37.         % menu types cause Maximus to display certain information before
  38.         % the "Select:" prompt, such as the message area banner, the
  39.         % information screen for the C)hange menu, and so on.  The
  40.         % following MenuHeaders are supported by Maximus:
  41.         %
  42.         %       MenuHeader Message:   Displays a "Msg.area xx .. Description"
  43.         %                             status line before each prompt.
  44.         %
  45.         %       MenuHeader File:      Displays a "File area yy .. Description"
  46.         %                             status line before each prompt.
  47.         %
  48.         %       MenuHeader Change:    Displays the user's current settings,
  49.         %                             which is usually what you'd find at
  50.         %                             the C)hange Setup menu.
  51.  
  52.         MenuHeader      None
  53.  
  54.         % This next option defines a customized *.BBS file to display
  55.         % _instead_ of the canned, Max-generated menu.  The file you
  56.         % specify will be shown to callers who enter this menu whenever
  57.         % the menu options would normally be displayed.  If no
  58.         % file is given, Max will generate the menu on its own.
  59.         %
  60.         % This file can contain any of the special MECCA tokens that
  61.         % you can use in a normal .MEC file.
  62.         %
  63.         % If you specify a MenuFile, it will be enabled for all help
  64.         % levels by default.  However, if you wish to enable the
  65.         % menu for certain help levels only (such as NOVICE and
  66.         % REGULAR), simply add the names of the levels after the
  67.         % filename.  For example, "MenuFile Misc\MenuMain Novice"
  68.         % would show the MenuFle to novice callers only, and
  69.         % the Max-generated menu would be shown to everyone else.
  70.         % See the Max TechRef manual for more information on this
  71.         % option.
  72.         %
  73.         % Maximus can also display a HeaderFile for each menu.
  74.         % Please see the TechRef Manual for more information.
  75.  
  76. %       MenuFile        Misc\MenuMain
  77.  
  78.         % If you are using the customized .BBS MenuFile, then you must
  79.         % tell Maximus how many lines on your screen that your custom
  80.         % file takes.  If this value is not specified, or if it is incorrect,
  81.         % then you will have problems with messages being scrolled off the
  82.         % top of your screen because of your customized menufile.
  83.  
  84. %       MenuLength      14
  85.  
  86.         % This option is also only applicable if you're using a custom
  87.         % *.BBS menufile.  As expected, if a user presses a key in the
  88.         % middle of the menu with HOTFLASH turned on, the menu will abort
  89.         % it's display, and jump to the option selected.  However, if
  90.         % your *.BBS file has a coloured background, this operation may
  91.         % cause the background to bleed into the rest of the screen.  The
  92.         % solution is to specify an AVATAR colour number here, which will
  93.         % be displayed BEFORE printing the key the user selected.  Normally,
  94.         % this colour should have the background set to black, or whatever
  95.         % colour your screen normally is.  An index of the AVATAR colour
  96.         % codes (and their corresponding colours) can be found in the
  97.         % MAX_REF.PRN manual.
  98.  
  99. %       MenuColour      15
  100.  
  101.         % This section of the control file defines the available
  102.         % commands for this menu.
  103.  
  104.         % The name of the COMMAND to perform is in the left column.
  105.         % This tells Maximus what it should do when this option is
  106.         % selected.  Examples of commands are "Goodbye",
  107.         % "Display_File" and "Msg_Browse".
  108.         %
  109.         % Following the command is an optional argument; some
  110.         % commands need arguments, but others don't.  If the argument
  111.         % contains any spaces (such as would a DOS command line),
  112.         % then make sure to replace them with underscores, which will
  113.         % get translated back into spaces when the menu is read back
  114.         % in.  The only common commands which use arguments are
  115.         % Display_File, Display_Menu and Area_Change.
  116.         %
  117.         % After the argument is that command's access level.  This
  118.         % access level consists of a privilege level and an optional
  119.         % set of keys.  A user will only be able to select that
  120.         % option if his/her priv level is equal to or higher than the
  121.         % specified level.  In addition, if you wish to restrict a
  122.         % command to users which carry certain keys, simply place a
  123.         % slash and a list of key numbers/letters after the privilege
  124.         % level.  For example, to restrict a command so that only
  125.         % Normal-level users with keys 1 and C can access a command,
  126.         % use a priv level of "Normal/1C".
  127.         %
  128.         % Following the priv level is the command description.  This
  129.         % description will be used when creating NOVICE-level menus,
  130.         % and the first letter of that command will be used as the
  131.         % selection character, so make sure that each command has a
  132.         % unique first character.
  133.  
  134.         % Name of cmd    Optional arguments      Priv.   Command as it
  135.         % to execute     for cmd, if any         Level   appears to user
  136.         % ------------  --------------------- --------- -----------------
  137.  
  138.         Display_Menu    Message%Y              Disgrace "Post-områder"
  139.   NoDsp Display_Menu    Message%Y              Disgrace "M"
  140.         Display_Menu    File%Y                 Disgrace "Fil-områder"
  141.         Display_Menu    Change%Y               Disgrace "Din opsætning"
  142.  
  143.         % The above three options tell Maximus to chain to a different
  144.         % *.Mnu file, whose name is specified as an argument.  Please
  145.         % make sure NOT to include a path before the name of your menu,
  146.         % since Maximus will add that according to the currently-defined
  147.         % menu path.
  148.  
  149.         Goodbye                                    Twit "Gå ud (log ud)"
  150.         Statistics                             Disgrace "Statistik"
  151.         Userlist                               Disgrace "Liste over brugere"
  152.         Version                                Disgrace "Version af BBS"
  153.  
  154.         Display_File    Misc\YellReq           Disgrace "Kald på SysOp"
  155.   NoDsp Yell                                   Disgrace "K"
  156.  
  157.         % The above options are fairly generic, and basically do what
  158.         % they appear to do.
  159.  
  160.         % When selected, this option displays a *.BBS file to the user.
  161.         % You can have as many of these custom files as you wish.
  162.  
  163.         Display_File    Misc\Bulletin          Disgrace "Bulletiner"
  164.  
  165.         % These commands display the off-line reader and SysOp menus.
  166.  
  167.         Display_Menu    Reader%Y               Disgrace "Off-line læs"
  168.         Display_Menu    Sysop%Y                   Sysop "!Sysop menu"
  169.  
  170.         % The next commands are only of use to multi-line systems.
  171.         % PLEASE SEE THE DOCUMENTATION BEFORE ENABLING THESE
  172.         % COMMANDS!
  173.  
  174. %       Who_Is_On                              Disgrace "Hvem er på?"
  175.  NoDsp  Display_Menu    Chat%Y                 Disgrace "/Chat Menu"
  176.  
  177.         % The following is the help file for the main menu.  Unless you
  178.         % specify a help file, such as done below, users will NOT be able
  179.         % to press `?' for help.
  180.  
  181.         Display_File    Hlp+Y\Main             Disgrace "?hjælp"
  182.  
  183. End Menu
  184.  
  185.  
  186. Menu MESSAGE0
  187.  
  188.         Title  POST-MENU
  189.  
  190.         % To turn off the "Msg.area xxx ... asdf" display, but to still
  191.         % have Max believe that this is a message menu, use
  192.         % "SilentMenuHeader Message" instead of the line below.
  193.  
  194.         MenuHeader      Message
  195.  
  196.         % To display a custom file instead of the canned Max menu, use
  197.         % this:
  198.  
  199. %       MenuFile        Misc\MenuMsg
  200.  
  201.         % Name of cmd    Optional arguments      Priv.   Command as it
  202.         % to execute     for cmd, if any         Level   appears to user
  203.         % ------------  --------------------- --------- -----------------
  204.  
  205.         Area_Change     Message                Disgrace "Område"
  206.   NoDsp Area_Change     Message                Disgrace "[" "["
  207.   NoDsp Area_Change     Message                Disgrace "]" "]"
  208.   NoDsp Area_Change     Message                Disgrace "A"
  209.         Read_Next                              Disgrace "Næste brev"
  210.         Read_Previous                          Disgrace "Forrige brev"
  211.         Enter_Message                          Disgrace "Skriv brev"
  212.         Msg_Reply                              Disgrace "Besvar brev"
  213.         Msg_Browse                             Disgrace "Kig breve igennem"
  214.         Msg_Change                             Disgrace "Lav om på brev"
  215.         Read_Nonstop                           Disgrace "=Læs non stop"
  216.         Read_Original                          Disgrace "-Læs original"
  217.         Read_Reply                             Disgrace "+Læs svar"
  218.         Msg_Current                            Disgrace "*Læs aktuelt brev"
  219.         Msg_List                               Disgrace "Postliste"
  220.         Msg_Tag                                Disgrace "Mærk områder"
  221.         Display_Menu    Main%Y                     Twit "Hovedmenu"
  222.         Display_Menu    File%Y                     Twit "Til fil-område"
  223.         Goodbye                                    Twit "Gå ud (log ud)"
  224.   Local Msg_Kill                               Disgrace "!Slet brev"
  225.  Matrix Msg_Kill                               Disgrace "!Slet brev"
  226.         Msg_Upload                             Disgrace "Upload (send) brev"
  227.         Forward                                Disgrace "Eftersend kopi"
  228.         Msg_Hurl                                  Sysop "ZFlyt brev (hurl)"
  229.         Xport                                     Sysop "Xport til disk"
  230.         Msg_Edit_User                             Sysop "@Edit user"
  231.   NoDsp Same_Direction                         Disgrace "|"
  232.   NoDsp Read_Individual                        Disgrace "0"
  233.   NoDsp Read_Individual                        Disgrace "1"
  234.   NoDsp Read_Individual                        Disgrace "2"
  235.   NoDsp Read_Individual                        Disgrace "3"
  236.   NoDsp Read_Individual                        Disgrace "4"
  237.   NoDsp Read_Individual                        Disgrace "5"
  238.   NoDsp Read_Individual                        Disgrace "6"
  239.   NoDsp Read_Individual                        Disgrace "7"
  240.   NoDsp Read_Individual                        Disgrace "8"
  241.   NoDsp Read_Individual                        Disgrace "9"
  242.   Local Display_File    Hlp+Y\Msg              Disgrace "?hjælp"
  243.  Matrix Display_File    Hlp+Y\Mail             Disgrace "?hjælp"
  244.    Echo Display_File    Hlp+Y\Echo             Disgrace "?hjælp"
  245.         %
  246. End Menu
  247.  
  248. Menu FILE0
  249.  
  250.         Title  FIL-MENU
  251.  
  252.         % To turn off the "File area xxx ... asdf" display, but to still
  253.         % have Max believe that this is a file menu, use
  254.         % "SilentMenuHeader File" instead of the line below.
  255.  
  256.         MenuHeader      File
  257.  
  258.         % To display a custom file instead of the canned Max menu, use
  259.         % this:
  260.  
  261. %       MenuFile        Misc\MenuFile
  262.  
  263.         % Name of cmd    Optional arguments      Priv.   Command as it
  264.         % to execute     for cmd, if any         Level   appears to user
  265.         % ------------  --------------------- --------- -----------------
  266.  
  267.         Area_Change     File                   Disgrace "Område"
  268.   NoDsp Area_Change     File                   Disgrace "[" "["
  269.   NoDsp Area_Change     File                   Disgrace "]" "]"
  270.   NoDsp Area_Change     File                   Disgrace "A"
  271.         Locate                                 Disgrace "Efters¢g en fil"
  272.         File_Titles                            Disgrace "Fil-liste"
  273.         Type                                   Disgrace "Kig i tekst-fil"
  274.         Download                               Disgrace "Download (modtag)"
  275.         Upload                                 Disgrace "Upload (send)"
  276.         Statistics                             Disgrace "Statistik"
  277.         Contents                               Disgrace "Indhold af fil"
  278.         File_Tag                               Disgrace "Mærk filer"
  279.         NewFiles                               Disgrace "Nye filer"
  280.         Raw                                       Sysop "Raw directory"
  281.         File_Kill                                 Sysop "!Kill file"
  282.         File_Hurl                                 Sysop "*Hurl (move)"
  283.         Override_Path                             Sysop "Path override"
  284.         Display_Menu    Main%Y                     Twit "Hovedmenu"
  285.         Display_Menu    Message%Y                  Twit "Til post-områder"
  286.         Goodbye                                    Twit "Gå ud (log ud)"
  287.         Display_File    Hlp+Y\FileHelp         Disgrace "?hjælp"
  288.         %
  289. End Menu
  290.  
  291. Menu CHANGE0
  292.  
  293.         Title  DIN OPSÆTNING
  294.  
  295.         MenuHeader      Change
  296.  
  297. %       MenuFile        Misc\MenuChg
  298.  
  299.         % Name of cmd    Optional arguments      Priv.   Command as it
  300.         % to execute     for cmd, if any         Level   appears to user
  301.         % ------------  --------------------- --------- -----------------
  302.  
  303.         Chg_Alias                                Hidden "Alias"
  304.         Chg_Phone                              Disgrace "Telefon"
  305.         Chg_City                               Disgrace "By"
  306.         Chg_Password                           Disgrace "Kodeord"
  307.         Chg_Help                               Disgrace "Niveau for hjælp"
  308.         Chg_Nulls                              Disgrace "0Nuller"
  309.         Chg_Width                              Disgrace "Skærmbredde"
  310.         Chg_Length                             Disgrace "Linjer på skærmen"
  311.         Chg_Tabs                               Disgrace "#Tabulering"
  312.         Chg_Video                              Disgrace "Video mode"
  313.         Chg_Editor                             Disgrace "FuldSkærmsEditor"
  314.         Chg_Clear                              Disgrace "Rens skærmen"
  315.         Chg_IBM                                Disgrace "IBM karakterer"
  316.         Chg_Hotkeys                            Disgrace "!Hotkeys"
  317.         Chg_Language                           Disgrace "@Sprog"
  318.   NoDsp Display_Menu    Change%Y               Disgrace "@"
  319.         Chg_Userlist                           Disgrace "%I brugerlisten"
  320.         Chg_Protocol                           Disgrace "Protokol"
  321.         Chg_Archiver                           Disgrace "&Pakkemetode"
  322.         Chg_FSR                                Disgrace "+FuldSkærmsLæs"
  323.         Chg_More                               Disgrace "*Mere?'"
  324.         Display_Menu    Main%Y                     Twit "Hovedmenu"
  325.   NoDsp Display_Menu    Main%Y                     Twit "M"
  326.   NoDsp Display_Menu    Main%Y                     Twit "Q"
  327.   NoDsp Display_Menu    Main%Y                     Twit "|"
  328.         Display_File    Hlp+Y\Change           Disgrace "?hjælp"
  329.         %
  330. End Menu
  331.  
  332. Menu EDIT0
  333.  
  334.         Title SKRIV/RET/LÆS BREVE  
  335.  
  336. %       MenuFile        Misc\MenuEdit
  337.  
  338.         % Name of cmd    Optional arguments      Priv.   Command as it
  339.         % to execute     for cmd, if any         Level   appears to user
  340.         % ------------  --------------------- --------- -----------------
  341.  
  342.         Edit_Save                                  Twit "Gem brev"
  343.         Edit_Abort                                 Twit "Drop brev"
  344.         Edit_List                                  Twit "Vis brev"
  345.         Edit_Edit                                  Twit "Ret linje"
  346.         Edit_Insert                                Twit "Indsæt linje"
  347.         Edit_Delete                                Twit "Slet linje"
  348.         Edit_Quote                                 Twit "Citat"
  349.         Edit_Continue                              Twit "Fortsæt"
  350.         Edit_To                                    Twit "Til"
  351.         Edit_Subj                                  Twit "Emne"
  352.         Edit_From                                 Sysop "From"
  353.         Edit_Handling                             Sysop "Handling"
  354.         Read_DiskFile                             Sysop "*Read from disk"
  355.         Display_File    Hlp+Y\Editor               Twit "?hjælp"
  356.  
  357. End Menu
  358.  
  359.  
  360. Menu CHAT0
  361.  
  362.         Title  CHAT/SNAK
  363.  
  364.         MenuHeader      Chat
  365. %       MenuFile        Misc\MenuChat
  366.  
  367.         % Name of cmd    Optional arguments      Priv.   Command as it
  368.         % to execute     for cmd, if any         Level   appears to user
  369.         % ------------  --------------------- --------- -----------------
  370.  
  371.         Chat_CB                                Disgrace "CB Chat"
  372.         Chat_Page                              Disgrace "Kald bruger"
  373.         Chat_Pvt                               Disgrace "Svar på kald"
  374.         Chat_Toggle                            Disgrace "Veksle status"
  375.         Display_Menu    MAIN%Y                 Disgrace "Hovedmenu"
  376.         Goodbye                                Disgrace "Gå ud (log ud)"
  377.         Display_File    Misc\ChatHelp          Disgrace "?hjælp"
  378. End Menu
  379.  
  380.  
  381. Menu READER0
  382.  
  383.         Title  LÆS OFF-LINE
  384.         HeaderFile      Misc\OLR_Hdr
  385.  
  386.         % Name of cmd    Optional arguments      Priv.   Command as it
  387.         % to execute     for cmd, if any         Level   appears to user
  388.         % ------------  --------------------- --------- -----------------
  389.  
  390.         Msg_Tag                                Disgrace "Mærk område"
  391.         Msg_Browse                             Disgrace "Download nye breve" "mnp"
  392.         Msg_Upload_QWK                         Disgrace "Upload (send) svar"
  393.         Chg_Protocol                           Disgrace "Protokol"
  394.         Chg_Archiver                           Disgrace "&Pakkemetode"
  395.         Display_Menu    Main%Y                     Twit "Hovedmenu"
  396.         Goodbye                                    Twit "Gå ud (log ud)"
  397.         Display_File    Hlp+Y\OLR              Disgrace "?hjælp"
  398.   NoDsp Display_Menu    Main%Y                     Twit "|"
  399. End Menu
  400.  
  401.  
  402. Menu SYSOP0
  403.  
  404.         Title  SYSOP MENU
  405.  
  406.         % Name of cmd    Optional arguments      Priv.   Command as it
  407.         % to execute     for cmd, if any         Level   appears to user
  408.         % ------------  --------------------- --------- -----------------
  409.  
  410.         % This command invokes the internal Maximus user editor.
  411.  
  412.         User_Editor                                Sysop "User Editor"
  413.  
  414.         % This tells Maximus that you want to execute an external
  415.         % program (in this case, COMMAND.COM) when the `O' menu option
  416.         % is selected.  Other options are available, such as `Xtern_Dos'
  417.         % (which can run .BAT or .CMD files) and `Xtern_Erlvl'
  418.         % (which completely unloads Maximus from memory).
  419.         %
  420.         % Also, when specifying the command/errorlevel to execute,
  421.         % don't forget to use underscores instead of spaces!
  422.         %
  423.         % Examples:
  424.         %
  425.         %   Xtern_Run   C:\Max\Bonk_/XN       Sysop "Nodelist editor"
  426.         %   Xtern_Dos   D:\Path\Runme.Bat      Twit "Run XYZ program"
  427.         %   Xtern_Erlvl 45_Ongame.Bat      Disgrace "On-line Games"
  428.  
  429.         % If you're running 4DOS, replace the following
  430.         % "Command.Com" with "4Dos.Com".
  431.  
  432. UsrRemote Xtern_Run     Command.Com_>com%P_<com%P   Sysop "OS Shell"
  433. UsrLocal  Xtern_Run     Command.Com                 Sysop "OS Shell"
  434.  
  435.         Display_Menu    Main%Y                      Sysop "Hovedmenu"
  436.   NoDsp Display_Menu    Main%Y                      Sysop "Q"
  437.   NoDsp Display_Menu    Main%Y                      Sysop "|"
  438. End Menu
  439.  
  440.  
  441. Menu MAIN1
  442.  
  443.         Title  MAIN MENU
  444.  
  445.         %
  446.         %       MenuHeader Message:   Displays a "Msg.area xx .. Description"
  447.         %                             status line before each prompt.
  448.         %
  449.         %       MenuHeader File:      Displays a "File area yy .. Description"
  450.         %                             status line before each prompt.
  451.         %
  452.         %       MenuHeader Change:    Displays the user's current settings,
  453.         %                             which is usually what you'd find at
  454.         %                             the C)hange Setup menu.
  455.  
  456.         MenuHeader      None
  457.  
  458.  
  459. %       MenuFile        Misc\MenuMain
  460.  
  461. %       MenuLength      14
  462.  
  463. %       MenuColour      15
  464.  
  465.         % Name of cmd    Optional arguments      Priv.   Command as it
  466.         % to execute     for cmd, if any         Level   appears to user
  467.         % ------------  --------------------- --------- -----------------
  468.  
  469.         Display_Menu    Message%Y              Disgrace "Message Areas"
  470.         Display_Menu    File%Y                 Disgrace "File Areas"
  471.         Display_Menu    Change%Y               Disgrace "Change Setup"
  472.  
  473.         % The above three options tell Maximus to chain to a different
  474.         % *.Mnu file, whose name is specified as an argument.  Please
  475.         % make sure NOT to include a path before the name of your menu,
  476.         % since Maximus will add that according to the currently-defined
  477.         % menu path.
  478.  
  479.         Goodbye                                    Twit "Goodbye (log off)
  480.         Statistics                             Disgrace "Statistics"
  481.         Userlist                               Disgrace "UserList"
  482.         Version                                Disgrace "Version of BBS"
  483.  
  484.         Display_File    Misc\YellReq           Disgrace "Yell for SysOp"
  485.   NoDsp Yell                                   Disgrace "Y"
  486.  
  487.         Display_File    Misc\Bulletin          Disgrace "Bulletins"
  488.  
  489.         Display_Menu    Reader%Y               Disgrace "Off-line reader"
  490.         Display_Menu    Sysop%Y                   Sysop "!Sysop menu"
  491.  
  492.  
  493. %       Who_Is_On                              Disgrace "Who is On"
  494.   NoDsp Display_Menu    Chat%Y                 Disgrace "/Chat Menu"
  495.  
  496.         Display_File    Hlp+Y\Main             Disgrace "?help"
  497.  
  498. End Menu
  499.  
  500.  
  501. Menu MESSAGE1
  502.  
  503.         Title   MESSAGE MENU
  504.  
  505.         MenuHeader      Message
  506.  
  507. %       MenuFile        Misc\MenuMsg
  508.  
  509.         Area_Change     Message                Disgrace "Area change"
  510.   NoDsp Area_Change     Message                Disgrace "[" "["
  511.   NoDsp Area_Change     Message                Disgrace "]" "]"
  512.         Read_Next                              Disgrace "Next message"
  513.         Read_Previous                          Disgrace "Previous message"
  514.         Enter_Message                          Disgrace "Enter message"
  515.         Msg_Reply                              Disgrace "Reply to a message"
  516.         Msg_Browse                             Disgrace "Browse messages"
  517.         Msg_Change                             Disgrace "Change current msg"
  518.         Read_Nonstop                           Disgrace "=ReadNonStop"
  519.         Read_Original                          Disgrace "-ReadOriginal"
  520.         Read_Reply                             Disgrace "+ReadReply"
  521.         Msg_Current                            Disgrace "*ReadCurrent"
  522.         Msg_List                               Disgrace "List (brief)"
  523.         Msg_Tag                                Disgrace "Tag areas"
  524.         Display_Menu    Main%Y                     Twit "Main menu"
  525.         Display_Menu    File%Y                     Twit "Jump to file areas"
  526.         Goodbye                                    Twit "Goodbye (log off)"
  527.   Local Msg_Kill                               Disgrace "Kill (delete) msg"
  528.  Matrix Msg_Kill                               Disgrace "Kill (delete) msg"
  529.         Msg_Upload                             Disgrace "Upload a message"
  530.         Forward                                Disgrace "Forward (copy)"
  531.         Msg_Hurl                                  Sysop "Hurl (move)"
  532.         Xport                                     Sysop "Xport to disk"
  533.         Msg_Edit_User                             Sysop "@Edit user"
  534.   NoDsp Same_Direction                         Disgrace "|"
  535.   NoDsp Read_Individual                        Disgrace "0"
  536.   NoDsp Read_Individual                        Disgrace "1"
  537.   NoDsp Read_Individual                        Disgrace "2"
  538.   NoDsp Read_Individual                        Disgrace "3"
  539.   NoDsp Read_Individual                        Disgrace "4"
  540.   NoDsp Read_Individual                        Disgrace "5"
  541.   NoDsp Read_Individual                        Disgrace "6"
  542.   NoDsp Read_Individual                        Disgrace "7"
  543.   NoDsp Read_Individual                        Disgrace "8"
  544.   NoDsp Read_Individual                        Disgrace "9"
  545.   Local Display_File    Hlp+Y\Msg              Disgrace "?help"
  546.  Matrix Display_File    Hlp+Y\Mail             Disgrace "?help"
  547.    Echo Display_File    Hlp+Y\Echo             Disgrace "?help"
  548.         %
  549. End Menu
  550.  
  551. Menu FILE1
  552.  
  553.         Title  FILE MENU
  554.  
  555.         MenuHeader      File
  556.  
  557. %       MenuFile        Misc\MenuFile
  558.  
  559.         Area_Change     File                   Disgrace "Area change"
  560.   NoDsp Area_Change     File                   Disgrace "[" "["
  561.   NoDsp Area_Change     File                   Disgrace "]" "]"
  562.         Locate                                 Disgrace "Locate a file"
  563.         File_Titles                            Disgrace "File titles"
  564.         Type                                   Disgrace "View text file"
  565.         Download                               Disgrace "Download (receive)"
  566.         Upload                                 Disgrace "Upload (send)"
  567.         Statistics                             Disgrace "Statistics"
  568.         Contents                               Disgrace "Contents (archive)"
  569.         File_Tag                               Disgrace "Tag (queue) files"
  570.         NewFiles                               Disgrace "New files scan"
  571.         Raw                                       Sysop "Raw directory"
  572.         File_Kill                                 Sysop "Kill file"
  573.         File_Hurl                                 Sysop "Hurl (move)"
  574.         Override_Path                             Sysop "Override path"
  575.         Display_Menu    Main%Y                     Twit "Main menu"
  576.         Display_Menu    Message%Y                  Twit "Jump to msg. areas"
  577.         Goodbye                                    Twit "Goodbye (log off)"
  578.         Display_File    Hlp+Y\FileHelp         Disgrace "?help"
  579.         %
  580. End Menu
  581.  
  582. Menu CHANGE1
  583.  
  584.         Title    CHANGE MENU
  585.  
  586.         MenuHeader      Change
  587.  
  588. %       MenuFile        Misc\MenuChg
  589.  
  590.         Chg_Alias                                Hidden "Alias"
  591.         Chg_Phone                              Disgrace "#Telephone no."
  592.         Chg_City                               Disgrace "City"
  593.         Chg_Password                           Disgrace "Password"
  594.         Chg_Help                               Disgrace "Help level"
  595.         Chg_Nulls                              Disgrace "Nulls"
  596.         Chg_Width                              Disgrace "Width"
  597.         Chg_Length                             Disgrace "Length"
  598.         Chg_Tabs                               Disgrace "Tabs"
  599.         Chg_Video                              Disgrace "Video mode"
  600.         Chg_Editor                             Disgrace "FullScrnEdit"
  601.         Chg_Clear                              Disgrace "Screen clear"
  602.         Chg_IBM                                Disgrace "IBM characters"
  603.         Chg_Hotkeys                            Disgrace "!Hotkeys"
  604.         Chg_Language                           Disgrace "@Language"
  605.   NoDsp Display_menu    Change%Y               Disgrace "@"
  606.         Chg_Userlist                           Disgrace "%ShowInUserlist"
  607.         Chg_Protocol                           Disgrace "$Protocol default"
  608.         Chg_Archiver                           Disgrace "&Archiver default"
  609.         Chg_FSR                                Disgrace "^FullScrnRead"
  610.         Chg_More                               Disgrace "*More Prompt"
  611.         Display_Menu    Main%Y                     Twit "Main Menu"
  612.   NoDsp Display_Menu    Main%Y                     Twit "Q"
  613.   NoDsp Display_Menu    Main%Y                     Twit "|"
  614.         Display_File    Hlp+Y\Change           Disgrace "?help"
  615.         %
  616. End Menu
  617.  
  618. Menu EDIT1
  619.  
  620.         Title   EDIT MENU
  621.  
  622. %       MenuFile        Misc\MenuEdit
  623.  
  624.         % Name of cmd    Optional arguments      Priv.   Command as it
  625.         % to execute     for cmd, if any         Level   appears to user
  626.         % ------------  --------------------- --------- -----------------
  627.  
  628.         Edit_Save                                  Twit "Save Message"
  629.         Edit_Abort                                 Twit "Abort Message"
  630.         Edit_List                                  Twit "List Message"
  631.         Edit_Edit                                  Twit "Edit Line"
  632.         Edit_Insert                                Twit "Insert Line"
  633.         Edit_Delete                                Twit "Delete Line"
  634.         Edit_Quote                                 Twit "Quote message"
  635.         Edit_Continue                              Twit "Continue"
  636.         Edit_To                                    Twit "To"
  637.         Edit_Subj                                  Twit "JsubJect"
  638.         Edit_From                                 Sysop "From"
  639.         Edit_Handling                             Sysop "Handling"
  640.         Read_DiskFile                             Sysop "Read from disk"
  641.         Display_File    Hlp+Y\Editor               Twit "?help"
  642.         %
  643. End Menu
  644.  
  645.  
  646. Menu CHAT1
  647.  
  648.         Title   CHAT MENU
  649.  
  650.         MenuHeader      Chat
  651. %       MenuFile        Misc\MenuChat
  652.  
  653.         % Name of cmd    Optional arguments      Priv.   Command as it
  654.         % to execute     for cmd, if any         Level   appears to user
  655.         % ------------  --------------------- --------- -----------------
  656.  
  657.         Chat_CB                                Disgrace "CB Chat"
  658.         Chat_Page                              Disgrace "Page User"
  659.         Chat_Pvt                               Disgrace "Answer Page"
  660.         Chat_Toggle                            Disgrace "Toggle Status"
  661.         Display_Menu    MAIN%Y                 Disgrace "Main Menu"
  662.         Goodbye                                Disgrace "Goodbye (log off)"
  663.         Display_File    Misc\ChatHelp          Disgrace "?help"
  664. End Menu
  665.  
  666.  
  667. Menu READER1
  668.  
  669.         Title   READER MENU
  670.  
  671.         HeaderFile      Misc\OLR_Hdr
  672.  
  673.         % Name of cmd    Optional arguments      Priv.   Command as it
  674.         % to execute     for cmd, if any         Level   appears to user
  675.         % ------------  --------------------- --------- -----------------
  676.  
  677.         Msg_Tag                                Disgrace "Tag area"
  678.         Msg_Browse                             Disgrace "Download new msgs" "tnp"
  679.         Msg_Upload_QWK                         Disgrace "Upload replies"
  680.         Chg_Protocol                           Disgrace "Protocol default"
  681.         Chg_Archiver                           Disgrace "Archiver default"
  682.         Display_Menu    Main%Y                     Twit "Main menu"
  683.         Goodbye                                    Twit "Goodbye (log off)"
  684.         Display_File    Hlp+Y\OLR              Disgrace "?help"
  685.   NoDsp Display_Menu    Main%Y                     Twit "|"
  686. End Menu
  687.  
  688.  
  689. Menu SYSOP1
  690.  
  691.         Title   SYSOP MENU
  692.  
  693.         % Name of cmd    Optional arguments      Priv.   Command as it
  694.         % to execute     for cmd, if any         Level   appears to user
  695.         % ------------  --------------------- --------- -----------------
  696.  
  697.         % This command invokes the internal Maximus user editor.
  698.  
  699.         User_Editor                                Sysop "User Editor"
  700.  
  701.         % This tells Maximus that you want to execute an external
  702.         % program (in this case, COMMAND.COM) when the `O' menu option
  703.         % is selected.  Other options are available, such as `Xtern_Dos'
  704.         % (which can run .BAT or .CMD files) and `Xtern_Erlvl'
  705.         % (which completely unloads Maximus from memory).
  706.         %
  707.         % Also, when specifying the command/errorlevel to execute,
  708.         % don't forget to use underscores instead of spaces!
  709.         %
  710.         % Examples:
  711.         %
  712.         %   Xtern_Run   C:\Max\Bonk_/XN       Sysop "Nodelist editor"
  713.         %   Xtern_Dos   D:\Path\Runme.Bat      Twit "Run XYZ program"
  714.         %   Xtern_Erlvl 45_Ongame.Bat      Disgrace "On-line Games"
  715.  
  716.         % If you're running 4DOS, replace the following
  717.         % "Command.Com" with "4Dos.Com".
  718.  
  719. UsrRemote Xtern_Run     Command.Com_>com%P_<com%P   Sysop "OS Shell"
  720. UsrLocal  Xtern_Run     Command.Com                 Sysop "OS Shell"
  721.  
  722.         Display_Menu    Main%Y                      Sysop "Main menu"
  723.   NoDsp Display_Menu    Main%Y                      Sysop "Q"
  724.   NoDsp Display_Menu    Main%Y                      Sysop "|"
  725. End Menu
  726.  
  727.  
  728.