home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Devil's Doorknob BBS Capture (1996-2003)
/
devilsdoorknobbbscapture1996-2003.iso
/
Dloads
/
WWIVMODS
/
MODSUNKN.ZIP
/
SLSTAT.MOD
< prev
next >
Wrap
Text File
|
1992-01-29
|
2KB
|
47 lines
********************************************************************
* *
* TwO PunKs *
* Secure Level Status Mod *
* 1@8406 WWIV 4.xx 1@8410 *
* 804-320-6305 804-780-9622 *
********************************************************************
This mod is to tell your users what status they have on the your board. This
can be put just about anywhere you feel. Hopefully you can firgure this out,if
not please feel free to email one or both of the above!
KEY:
$ Search for
* Orginal Line
+ Add line
- Delete Line
! Change Line
* ansic(2);
$ print("System is : ",VERSION_NUMBER,"");
* if (syscfg.systemnumber) {
* itoa(syscfg.systemnumber,s,10);
* ansic(3);
* print("WWIVnet node : ",s,"");
* ansic(0);
+ if ((thisuser.sl>=1) && (thisuser.sl<=22))
+ prt(1,"You are a non-validated user.");
+ else
+ if ((thisuser.sl>=22) && (thisuser.sl<=58))
+ prt(1,"You are a validated respected user.");
+ else
+ if ((thisuser.sl>=59) && (thisuser.sl<=98))
+ prt(6,"You are a HIGH level respected user! ");
+ else
+ if ((thisuser.sl>=99) && (thisuser.sl<=253))
+ prt(6,"You have COSYSOP access!");
+ else
+ if ((thisuser.sl>=254) && (thisuser.sl<=255))
+ prt(6,"WARNING!!! You have SYSOP access!!!!!");
+ else
* nl();
* }
* nl();