home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Devil's Doorknob BBS Capture (1996-2003)
/
devilsdoorknobbbscapture1996-2003.iso
/
Dloads
/
WWIVMODS
/
MODSUNKN.ZIP
/
GUESTEXT.MOD
< prev
next >
Wrap
Text File
|
1992-01-29
|
865b
|
16 lines
This is such a simple mod, I'm including it here just in case you haven't
done this already. If you are using the GUEST modification, that allows a
user to logon as GUEST to look around your BBS before registering, you can
add the following to BBS.C to give them the //REGISTER command. If the GUEST
user types that command at the main prompt, he/she will be able to register
while on-line, without having to hang-up and call back.
In BBS.C (void mainmenu):
if (strcmp(s,"REGISTER")==0) { /* Add */
if (strcmp(thisuser.name,"GUEST")==0) /* " */
newuser(); /* " */
} /* " */
if (strcmp(s,"NET")==0) /* Existing Line */
print_net_listing(); /* " */