home *** CD-ROM | disk | FTP | other *** search
/ The Arcade BBS / arcadebbs.zip / arcadebbs / bbstools / MODS / ALLMODS.ZIP / JIFF-03.ZIP / JIFF-03.MOD < prev   
Encoding:
Text File  |  1995-06-17  |  2.5 KB  |  87 lines

  1. ``Jiff`` IceNET #4 AT 7668
  2. Tue Jun 13 19:29:48 1995
  3. ┌───────────────────────────────────────────┬────────────Cow Header (Moo)───┐
  4. │ Mod Name: JIFF-03.MOD    The Author: Jiff │ 4@7668 IceNET  1@7604 Penguin │
  5. │ Difficulty: █▒▒▒▒▒▒▒▒▒                    │ 1@1 CowLink    1@7666 GoldNET │
  6. │ WWIV Version: v4.24      Date: 06/12/95   │ 1@7669 ZeppNET 1@7666 RoadNET │
  7. │ Files Affected: MMENU.C BBS.C NETSUP.C    │                1@52 AstralNET │
  8. │ Description: Pending list at callout.     │                               │
  9. └───────────────────────────────────────────┴───────────────────────────────┘
  10.  
  11.     I have probably seen 15 mods doing this, but none do it like THIS
  12. mod does it...  It doesn't do a lot, but it does it neater (looking) than
  13. most others...
  14.  
  15. ─═[Step 1]═─
  16. Open MMENU.C and make the "PENDING" thing look like this:
  17.  
  18.     if (strcmp(s,"PENDING")==0) {
  19.       print_pending_list();
  20.       pausescr();
  21.     }
  22.  
  23. And it'll continue:
  24.  
  25.     if (strcmp(s,"STATUS")==0) {
  26.     and so on...
  27.  
  28. ─═[Step 2]═─
  29. Open BBS.C and look for this:
  30.  
  31.     case 'N':
  32.       if (ok_local())
  33.         print_local_file("NET.LOG","NETDAT*.LOG");
  34.       break;
  35.  
  36. Now make the case 'P': statment this:
  37.  
  38.     case 'P':
  39.       if (ok_local())
  40.         print_pending_list();
  41.         pausescr();
  42.       break;
  43.  
  44. And lower make the case '.' and case '/' look like this:
  45.  
  46.     case '/':
  47.       print_pending_list();
  48.       if ((net_sysnum) && (ok_local()) && ok_modem_stuff &&
  49.           ((instance==1) || (status.net_version>=34)) &&
  50.                ((syscfgovr.com_ISR[syscfgovr.primaryport]<8) || (status.net_version>=35)))
  51.         force_callout(0);
  52.           break;
  53.     case '.':
  54.       print_pending_list();
  55.       if ((net_sysnum) && (ok_local()) && ok_modem_stuff &&
  56.           ((instance==1) || (status.net_version>=34)) &&
  57.            ((syscfgovr.com_ISR[syscfgovr.primaryport]<8) || (status.net_version>=35)))
  58.         force_callout(1);
  59.       break;
  60.  
  61. ─═[Step 3]═─
  62. Open NETSUP.C and look for this:
  63.  
  64.   if (net_num_max>1)
  65.     pla(get_string(918),&abort);
  66.   else
  67.     pla(get_string(963),&abort);
  68.   nl();
  69.   thisuser.sysstatus=ss;
  70.   if((!useron) && (lines_listed))    // Comment out this line
  71.     pausescr();                 // and this one too!
  72. }
  73.  
  74.  
  75. ─═[Step 4]═─
  76.    Done!  Make your BBS and e-mail me saying you used it, or need help!
  77. Rememeber, I am not responsable if this screws up anything.  You should
  78. know to make backups.  =)
  79.  
  80.             ─═[Jiff]═─
  81.             ─═[Sysop ■ The Cow Pasture]═─
  82.             ─═[Co-Sysop ■ The Pinnacle]═─
  83.  
  84. JIFF-01 .MOD  ■  Boxed DirEdit
  85. JIFF-02 .MOD  ■  Boxed SubEdit
  86. JIFF-03 .MOD  ■  Pending list at callout
  87.