home *** CD-ROM | disk | FTP | other *** search
/ The Devil's Doorknob BBS Capture (1996-2003) / devilsdoorknobbbscapture1996-2003.iso / Dloads / WWIVMODS / MODSUNKN.ZIP / EMAILMOD.C < prev    next >
Text File  |  1990-09-20  |  2KB  |  89 lines

  1. /*Ok this is Weasel's Mods #2
  2. add this to the end of bbs.c OR add a line to bbs.c and make it another
  3. file completley. the line is added to the beginning after the last #include
  4.  and is:
  5. #include "emessmen.c"
  6.   and add this line to the end of fcns.h
  7.  void emess_menu();
  8.  After all that copy this file to your include directory. */
  9.  
  10.  
  11.  
  12.  
  13. void emess_menu()
  14. {
  15. char s;
  16. outchr(12);
  17. nl();
  18. prt(1,"                  Weasel's Hole Mail Menu");nl();
  19. prt(7,"                  ═══════════════════════");nl();
  20.  
  21. nl();
  22. prt(4," F) Send Feedback");
  23. nl();
  24. prt(5,"    M) Read Mail Waiting");
  25. nl();
  26. prt(2," E) Email another user");
  27. nl();
  28. prt(1," K) Kill old Email");
  29. nl();
  30. prt(0," Q) Quit back to the BBS");
  31. nl();
  32. nl();
  33. prt(7,"What do you want to do? ");
  34. s=onek("KEMFQ");
  35. switch(s){
  36.  
  37.     case  'K':
  38.     helpl=8;
  39.     kill_old_email();
  40.     break;
  41.  
  42.     case  'F':
  43.     strcpy(irt,"Feedback");
  44.     feedy();            /*change this to feedback(); if you */
  45.     break;                /*aren't using Weasel's Multiple */
  46.                     /*Feedback mod*/
  47.     case 'M':
  48.     if (thisuser.waiting>0){
  49.     readmail();
  50.     }else{
  51.     nl();
  52.     pl("You have no mail waiting");}
  53.     break;
  54.  
  55.     case 'E':
  56.     send_email();
  57.     break;
  58.     case 'Q':
  59.     break;
  60.  
  61.     }
  62. }
  63.       /*ok now go to bbs.c and find under void main_menu
  64.       case 'M' and change all that is under it to emess_menu();
  65.       DELETE these cases under void main_menu:
  66.       case 'K'
  67.       case 'F'
  68.       case 'E'
  69.         */
  70.  
  71.      /*  Now Build All files now after hitting alt-c and wait.*/
  72.      /* If you want my Feedback mod check your local bbs's or call my bbs
  73.      whcih is below    |-)*/
  74.  
  75.     /*****Disclaimer******/
  76.     /* NOTHING CAN BE BLAMED on me if you use this mod. I didn't ask
  77.     you to.
  78.     if you like this mod well hmm...go ahead and like it...
  79.     if you want to send me money because I have none and you want me to
  80.      make a few more mods
  81.     my address is:
  82.  
  83.     6 Cool Spring Ct.
  84.     Lutherville MD 21093
  85.     after this call my bbs
  86.  
  87.     Weasel's Hole -(301)823-8022    thanks I hope you enjoyed this
  88.      litle quick mod*/
  89.