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 >
Wrap
Text File
|
1992-01-21
|
1KB
|
47 lines
Mod:MULTFED.MOD
WWIV:4.20
Insert this void feedback() right above void mainmenu() in BBS.C
void feedback()
{
char ch,s1[80];
nl();
printmenu(16);
ansic(1);
outstr("1() 3The Devil's Doorknob Feedback 1(> "); /* The name of your bbs here */
ch=onek("1234567EMQ"); /* Make sure each CASE '?' is listed here */
switch(ch) {
case '1':
strcpy(irt,"Feedback to Goddess"); /* This is your account */
email(1,0,0,0);
break;
case '2':
strcpy(irt,"Feedback to God"); /* These will be the RE:s */
email(6,0,0,0);
break;
case '3':
strcpy(irt,"Feedback to Remote SysOp ");
email(4,0,0,0); /* Change 1st number to account # */
break;
case '4':
strcpy(irt,"Net Coordinator Feedback ");
email(7,0,0,0);
break;
case '5':
strcpy(irt,"Feedback to Sysop that does nothing ");
email(56,0,0,0);
case 'Q':
break;
}
}
Find case 'F': and replace it with
case 'F':
feedback();
break;