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

  1.  
  2. Menu "logout_rip.menu"
  3.  
  4. flags  hotkeyable, noscreen
  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. BuildScreen
  19.    CliDoor  "trion:utils/ripdoor ~50 5"
  20. EndCmd
  21.  
  22.  
  23.  
  24. Cmd "M" , 1-255
  25.    GotoMenu "Main_rip.Menu"
  26. EndCmd
  27.  
  28. Cmd "P" , 0-255
  29.    PreviousMenu
  30. EndCmd
  31.  
  32.  
  33. Cmd "C" , 0-255
  34.    CommentToSysop
  35. EndCmd
  36.  
  37. Cmd "A" , 10 - 255
  38.    ChangeMessageArea "2"      ;If no acces to area 5 goto 2.
  39.    ChangeMessageArea "5"      ;Change to area 'Msgs To All'.
  40.    FlushBuffer
  41.    PushIntoBuffer "All|"      ;Push receiver name in buffer.
  42.    WriteMessage
  43.    FlushBuffer                ;Flush 'All' if no writeAcces
  44. EndCmd
  45.  
  46.  
  47. Cmd "!"
  48.    Logout
  49. EndCmd
  50.  
  51. Cmd "G" , 0-255
  52.    PrintFile  "trion:text/logout.ansi"
  53. ;   DosCommand "echo ~200 logging out."
  54.    Pause "30"
  55.    Logout
  56. EndCmd
  57.  
  58.  
  59. END
  60.  
  61.