home *** CD-ROM | disk | FTP | other *** search
/ Amiga Times / AmigaTimes.iso / programme / trionbbs110 / Trion / menus / logout.src < prev    next >
Encoding:
Text File  |  1998-10-06  |  877 b   |  56 lines

  1.  
  2. Menu "logout.menu"
  3.  
  4. flags  hotkeyable
  5. level  0 - 255 , "logout.Ansi"
  6. prompt 0 , 0 - 255 , "|"
  7. prompt 1 , 0 - 255 , "|"
  8.  
  9. BEGIN     ; Start the command definitions
  10.  
  11.  
  12. BuildScreen
  13.    CliDoor  "doors:FX/Random   ~50  logout.rndm"
  14.    CliDoor  "doors:FX/scroller ~50  logout.scrl"
  15. EndCmd
  16.  
  17.  
  18.  
  19. Cmd "M" , 1-255
  20.    GotoMenu "Main.Menu"
  21. EndCmd
  22.  
  23. Cmd "P" , 0-255
  24.    PreviousMenu
  25. EndCmd
  26.  
  27.  
  28. Cmd "C" , 0-255
  29.    CommentToSysop
  30. EndCmd
  31.  
  32. Cmd "A" , 10 - 255
  33.    ChangeMessageArea "2"      ;If no acces to area 5 goto 2.
  34.    ChangeMessageArea "5"      ;Change to area 'Msgs To All'.
  35.    FlushBuffer
  36.    PushIntoBuffer "All|"      ;Push receiver name in buffer.
  37.    WriteMessage
  38.    FlushBuffer                ;Flush 'All' if no writeAcces
  39. EndCmd
  40.  
  41.  
  42. Cmd "!"
  43.    Logout
  44. EndCmd
  45.  
  46. Cmd "G" , 0-255
  47.    PrintFile  "trion:text/logout.ansi"
  48. ;   DosCommand "echo ~200 logging out."
  49.    Pause "30"
  50.    Logout
  51. EndCmd
  52.  
  53.  
  54. END
  55.  
  56.