home *** CD-ROM | disk | FTP | other *** search
- ``Jiff`` IceNET #4 AT 7668
- Tue Jun 13 19:29:48 1995
- ┌───────────────────────────────────────────┬────────────Cow Header (Moo)───┐
- │ Mod Name: JIFF-03.MOD The Author: Jiff │ 4@7668 IceNET 1@7604 Penguin │
- │ Difficulty: █▒▒▒▒▒▒▒▒▒ │ 1@1 CowLink 1@7666 GoldNET │
- │ WWIV Version: v4.24 Date: 06/12/95 │ 1@7669 ZeppNET 1@7666 RoadNET │
- │ Files Affected: MMENU.C BBS.C NETSUP.C │ 1@52 AstralNET │
- │ Description: Pending list at callout. │ │
- └───────────────────────────────────────────┴───────────────────────────────┘
-
- I have probably seen 15 mods doing this, but none do it like THIS
- mod does it... It doesn't do a lot, but it does it neater (looking) than
- most others...
-
- ─═[Step 1]═─
- Open MMENU.C and make the "PENDING" thing look like this:
-
- if (strcmp(s,"PENDING")==0) {
- print_pending_list();
- pausescr();
- }
-
- And it'll continue:
-
- if (strcmp(s,"STATUS")==0) {
- and so on...
-
- ─═[Step 2]═─
- Open BBS.C and look for this:
-
- case 'N':
- if (ok_local())
- print_local_file("NET.LOG","NETDAT*.LOG");
- break;
-
- Now make the case 'P': statment this:
-
- case 'P':
- if (ok_local())
- print_pending_list();
- pausescr();
- break;
-
- And lower make the case '.' and case '/' look like this:
-
- case '/':
- print_pending_list();
- if ((net_sysnum) && (ok_local()) && ok_modem_stuff &&
- ((instance==1) || (status.net_version>=34)) &&
- ((syscfgovr.com_ISR[syscfgovr.primaryport]<8) || (status.net_version>=35)))
- force_callout(0);
- break;
- case '.':
- print_pending_list();
- if ((net_sysnum) && (ok_local()) && ok_modem_stuff &&
- ((instance==1) || (status.net_version>=34)) &&
- ((syscfgovr.com_ISR[syscfgovr.primaryport]<8) || (status.net_version>=35)))
- force_callout(1);
- break;
-
- ─═[Step 3]═─
- Open NETSUP.C and look for this:
-
- if (net_num_max>1)
- pla(get_string(918),&abort);
- else
- pla(get_string(963),&abort);
- nl();
- thisuser.sysstatus=ss;
- if((!useron) && (lines_listed)) // Comment out this line
- pausescr(); // and this one too!
- }
-
-
- ─═[Step 4]═─
- Done! Make your BBS and e-mail me saying you used it, or need help!
- Rememeber, I am not responsable if this screws up anything. You should
- know to make backups. =)
-
- ─═[Jiff]═─
- ─═[Sysop ■ The Cow Pasture]═─
- ─═[Co-Sysop ■ The Pinnacle]═─
-
- JIFF-01 .MOD ■ Boxed DirEdit
- JIFF-02 .MOD ■ Boxed SubEdit
- JIFF-03 .MOD ■ Pending list at callout
-