home *** CD-ROM | disk | FTP | other *** search
/ The Devil's Doorknob BBS Capture (1996-2003) / devilsdoorknobbbscapture1996-2003.iso / Dloads / WWIVMODS / MODSUNKN.ZIP / NEWSCAN.MOD < prev    next >
Text File  |  1990-04-29  |  2KB  |  58 lines

  1. Kent #1 @9955
  2. Sat Apr 28 00:50:37 1990
  3. This is pathetically easy, but you might want to add it.  It gives users a 
  4. little nudge to N-Scan.  A lot of new users who aren't familiar with WWIV say 
  5. it's unfriendly, so this gives people like that who would be interested in the 
  6. conversation a better idea how to get there.  All it does is prompts users as
  7. to whether or not they want to do a New-Scan right as they logon (After "Read 
  8. your mail now?" or "You haven't voted yet.", depending on if they have mail or
  9. whatever.. You know where I'm talking about.).  It's no big deal, I saw it on 
  10. a BBS I used to call a while back, so this idea isn't really mine, but since 
  11. the BBS is down now, I thought I would try it.
  12.  
  13. Load up BBSUTL.C
  14. At the end of all the extern lines add these two lines:
  15. extern express;
  16. extern expressabort; 
  17.  
  18. While still in BBSUTL.C.  Search for the "You haven't voted yet." or whatever 
  19. you have it as on your BBS, as I'm sure most of you have changed it as I have.
  20. After the NL(); around that line, add these lines:   
  21.  
  22.     prt(5, "Do you wish to do a New Message Scan? ");
  23.     if (yn()) { 
  24.     express=0;
  25.         expressabort=0;
  26.         nscan(0);
  27.    }
  28.    
  29. My BBSUTL.C lines now read:
  30.   if (i1 && live_user) {
  31.     nl();
  32.     pl("5You haven't voted yet.");
  33.     prt(5, "Vote now? ");
  34.     if (yn()) vote();
  35.     nl();  }
  36.     nl();
  37.     prt(5, "Do you wish to do a New Message Scan? ");
  38.     if (yn()) {
  39.     express=0;
  40.         expressabort=0;
  41.         nscan(0);
  42.    }
  43.    .........
  44.    
  45.  
  46. This mod has been totally bugless on my system, and I can find nothing in it 
  47. that could damage your system, but if it does, I don't claim any 
  48. respsonsiblity.
  49.  
  50.  
  51.  
  52.  
  53.           Kent Durham / 1@9955
  54.            Spectrum of Dreams
  55.              (919)876-7395
  56.  
  57.  
  58.