home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Devil's Doorknob BBS Capture (1996-2003)
/
devilsdoorknobbbscapture1996-2003.iso
/
Dloads
/
WWIVMODS
/
MODSUNKN.ZIP
/
BEEPER.MOD
< prev
next >
Wrap
Text File
|
1992-12-01
|
1KB
|
42 lines
Lt. Hytiek #1 @3504
03/23/90 at 1:32 pm <EST>
[Msg Status] No reply needed.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/****************************************************************************
Beeper Modification v1.0
By: Lt. Hytiek #1 @3504
This mod enables CERTAIN users to PAGE you if you have a digital
beeper, if they need to get in touch with you. The only users that
can PAGE you is if they have an AR of B.
******************************************************************************/
First Step: Load BBS.C, go down to 'void mainmenu' and add 's3[14],s4[81];'
to the CHAR part of the void...
-------------------------------------------------------------------------------
Second Step: Search down to 'if (strcmp(s,"VER")==0)' add this
code right before it. Simple eh?
-------------------------------------------------------------------------------
if (strcmp(s,"BEEPER")==0)
if (strcmp(thisuser.ar,3)==0) {
print("Enter your voice number (ie. ###-###-####)","");
prt(1,"Phone Number: ");
input(s3,13);
printfile("BEEPER"); /* This file goes in your GFILES dir. Explaining */
pausescr(); /* What this does.... */
dtr(0);
wait1(9);
dtr(1);
sprintf(s4,"+++{~~~~ath{~~~~~atdt(put beeper # here),,,,,%s#{~~",s3);
pr1(s4);
sleep(20);
hangup=0;
}