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 >
Wrap
Text File
|
1990-09-20
|
2KB
|
89 lines
/*Ok this is Weasel's Mods #2
add this to the end of bbs.c OR add a line to bbs.c and make it another
file completley. the line is added to the beginning after the last #include
and is:
#include "emessmen.c"
and add this line to the end of fcns.h
void emess_menu();
After all that copy this file to your include directory. */
void emess_menu()
{
char s;
outchr(12);
nl();
prt(1," Weasel's Hole Mail Menu");nl();
prt(7," ═══════════════════════");nl();
nl();
prt(4," F) Send Feedback");
nl();
prt(5," M) Read Mail Waiting");
nl();
prt(2," E) Email another user");
nl();
prt(1," K) Kill old Email");
nl();
prt(0," Q) Quit back to the BBS");
nl();
nl();
prt(7,"What do you want to do? ");
s=onek("KEMFQ");
switch(s){
case 'K':
helpl=8;
kill_old_email();
break;
case 'F':
strcpy(irt,"Feedback");
feedy(); /*change this to feedback(); if you */
break; /*aren't using Weasel's Multiple */
/*Feedback mod*/
case 'M':
if (thisuser.waiting>0){
readmail();
}else{
nl();
pl("You have no mail waiting");}
break;
case 'E':
send_email();
break;
case 'Q':
break;
}
}
/*ok now go to bbs.c and find under void main_menu
case 'M' and change all that is under it to emess_menu();
DELETE these cases under void main_menu:
case 'K'
case 'F'
case 'E'
*/
/* Now Build All files now after hitting alt-c and wait.*/
/* If you want my Feedback mod check your local bbs's or call my bbs
whcih is below |-)*/
/*****Disclaimer******/
/* NOTHING CAN BE BLAMED on me if you use this mod. I didn't ask
you to.
if you like this mod well hmm...go ahead and like it...
if you want to send me money because I have none and you want me to
make a few more mods
my address is:
6 Cool Spring Ct.
Lutherville MD 21093
after this call my bbs
Weasel's Hole -(301)823-8022 thanks I hope you enjoyed this
litle quick mod*/