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 >
Text File  |  1992-01-29  |  2KB  |  47 lines

  1. ********************************************************************
  2. *                                                                  *
  3. *                            TwO PunKs                             *
  4. *                     Secure Level Status Mod                      *
  5. *    1@8406                  WWIV 4.xx                 1@8410      *
  6. * 804-320-6305                                      804-780-9622   *
  7. ********************************************************************
  8.  
  9. This mod is to tell your users what status they have on the your board. This 
  10. can be put just about anywhere you feel. Hopefully you can firgure this out,if 
  11. not please feel free to email one or both of the above!
  12.  
  13.  
  14. KEY:
  15. $ Search for
  16. * Orginal Line
  17. + Add line
  18. - Delete Line
  19. ! Change Line
  20.  
  21.  
  22.  
  23. *  ansic(2);
  24. $  print("System is      : ",VERSION_NUMBER,"");
  25. *  if (syscfg.systemnumber) {
  26. *    itoa(syscfg.systemnumber,s,10);
  27. *    ansic(3);
  28. *    print("WWIVnet node   : ",s,"");
  29. *    ansic(0);
  30. +  if ((thisuser.sl>=1) && (thisuser.sl<=22))
  31. +    prt(1,"You are a non-validated user.");
  32. +  else
  33. +  if ((thisuser.sl>=22) && (thisuser.sl<=58))
  34. +    prt(1,"You are a validated respected user.");
  35. +  else
  36. +  if ((thisuser.sl>=59) && (thisuser.sl<=98))
  37. +    prt(6,"You are a HIGH level respected user! ");
  38. +  else
  39. +  if ((thisuser.sl>=99) && (thisuser.sl<=253))
  40. +    prt(6,"You have COSYSOP access!");
  41. +  else
  42. +  if ((thisuser.sl>=254) && (thisuser.sl<=255))
  43. +    prt(6,"WARNING!!! You have SYSOP access!!!!!");
  44. +  else
  45. *  nl();
  46. *  }
  47. *  nl();