home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Devil's Doorknob BBS Capture (1996-2003)
/
devilsdoorknobbbscapture1996-2003.iso
/
Dloads
/
WWIVMODS
/
MODSUNKN.ZIP
/
AVLPRMPT.MOD
< prev
next >
Wrap
Text File
|
1992-01-29
|
1KB
|
41 lines
This mod will allow the user to see a Sysop Is Avalible message at the
main menu prompt if scroll lock is on...
1st:
Cntrl-Q-F: strcat(s2,subboards[usub[cursub].subnum].name);
Now look down about 4-5 lines and you will see a line that says:
prt(s1);
Add the following line BEFORE 'prt(s1);':
Add:
if (sysop2())
print("Sysop Is Available"); /* Anything you want it to say about the sysop being availbale can go here */
else
print("Sysop Is Not Available"); /* Anything here too, or if you want
NOTHING if the sysop is not available,
just do not add this line...*/
So it should look like:
* if (sysop2())
* print(3,"Sysop Is Available");
* else
* print(3,"Sysop Is Not Available"); /* Can Be Left Out */
+ prt(s1);
Legend: + = ORIGINAL CODE
* = NEW CODE
The number 3 that shows up in the: print(3,"sysop is.... can be changed
to any number from 0-7... That is the color... You all know the ansi
colors I guess (or can easily find them out...)... So, those lines can be
made any color you want!
Thats it!
Jonathan