home *** CD-ROM | disk | FTP | other *** search
/ The Devil's Doorknob BBS Capture (1996-2003) / devilsdoorknobbbscapture1996-2003.iso / Dloads / WWIVMODS / MODS420.ZIP / MULTFED.MOD < prev    next >
Text File  |  1992-01-21  |  1KB  |  47 lines

  1. Mod:MULTFED.MOD
  2. WWIV:4.20
  3.  
  4.  
  5. Insert this void feedback() right above void mainmenu() in BBS.C
  6.  
  7.  
  8. void feedback()
  9. {
  10.   char ch,s1[80];
  11.  
  12.   nl();
  13.   printmenu(16);
  14.   ansic(1);
  15.   outstr("1() 3The Devil's Doorknob Feedback 1(> ");  /*  The name of your bbs here */
  16.   ch=onek("1234567EMQ");         /*  Make sure each CASE '?' is listed here */
  17.   switch(ch) {
  18.     case '1':
  19.        strcpy(irt,"Feedback to Goddess");                    /*  This is your account  */
  20.        email(1,0,0,0);
  21.       break;
  22.     case '2':
  23.        strcpy(irt,"Feedback to God");   /*  These will be the RE:s */
  24.        email(6,0,0,0);
  25.       break;
  26.     case '3':
  27.        strcpy(irt,"Feedback to Remote SysOp ");
  28.        email(4,0,0,0);                  /*  Change 1st number to account #  */
  29.        break;
  30.     case '4':
  31.        strcpy(irt,"Net Coordinator Feedback ");
  32.        email(7,0,0,0);
  33.       break;
  34.     case '5':
  35.        strcpy(irt,"Feedback to Sysop that does nothing ");
  36.        email(56,0,0,0);
  37.     case 'Q':
  38.        break;
  39.   }
  40. }
  41.  
  42. Find case 'F': and replace it with
  43.  
  44. case 'F':
  45.   feedback();
  46.   break;
  47.