home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Devil's Doorknob BBS Capture (1996-2003)
/
devilsdoorknobbbscapture1996-2003.iso
/
Dloads
/
WWIVMODS
/
MODSUNKN.ZIP
/
REPPOST.MOD
< prev
next >
Wrap
Text File
|
1992-01-29
|
886b
|
33 lines
REPLY TO POST MOD
by Piano Man
Starlite BBS -- (504) 832-0696
This mod will allow users to reply to a post from the 'Read(1-xx,^xx),? :'
prompt when scanning a sub-board. Typing 'RE' at the read prompt will
allow a reply to be posted, which will contain a line of the form 'RE:'
followed by the title of the message which is being replied to (assumed
to be the message just read).
In MSGBASE1.C:
= existing line
+ add
= if (strcmp(s,"CLS")==0)
= outchr('\x0c');
+ if (strcmp(s,"RE")==0) {
+ strcpy(irt,"RE: ");
+ strcpy(irt,msgs[msgnum].title);
+ nl(); prt(2,"Reply to: "); prt(1,msgs[msgnum].title); nl();
+ post();
+ break;
+ }
= }
= break;
= case 1: /* List Titles */
= i=0;
= abort=0