home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 12 / CD_ASCQ_12_0294.iso / vrac / 5mods_3.zip / LOGNSCAN.MOD < prev    next >
Text File  |  1994-01-24  |  1KB  |  38 lines

  1. ┌────────────────────────────────────────────────────────────────────────────┐
  2. │ Mod Name: SCAN1A.MOD         Mod Authors: Originally done by Flyer         │ 
  3. │ Difficulty: Simple                          Modified by Zanido 1@8653      │ 
  4. │ WWIV Version: upgraded for 4.23                                            │
  5. │ Files Affected: LILO.C                                                     │
  6. │ Description: Asks a user if they would like to scan for new messages       │
  7. │              when they log on. As Flyer stated, it's a dink mod.           │
  8. └────────────────────────────────────────────────────────────────────────────┘
  9.  
  10. NOTES: This worked fine as long as you didn't have conferencing Enabled. So if 
  11. you have conferencing, this one will work better, and it will scan all 
  12. conferences, instead of just the first one.
  13.  
  14. 1. Back up your source.
  15.  
  16. 2. Load LILO.C into your editor and search for
  17.  
  18.          setiia(90);
  19.  
  20. right after that line add these 5 lines
  21.  
  22.          nl();
  23.            prt(2,"^7Scan for new messages^6[^2Y^0/^2N^6]^7?");
  24.            if (yn()) {
  25.     tmp_disable_conf_(1);
  26.            nscan(0);
  27.     tmp_disable_conf_(0);
  28.  
  29.      }
  30.  
  31. 3. replace the ^ with ^P^C for your colors in the prt statement.
  32.  
  33. 4. Recompile and you're done.
  34.  
  35.  
  36. That should Help out if you have conferencing enabled.
  37.      Zanido
  38.