home *** CD-ROM | disk | FTP | other *** search
/ The Arcade BBS / arcadebbs.zip / arcadebbs / bbstools / MODS / ALLMODS.ZIP / WAX13.ZIP / WAX13.MOD < prev   
Encoding:
Text File  |  1995-07-22  |  5.4 KB  |  119 lines

  1. ``Sex Wax`` WWIVLink #1 AT 15808
  2. Fri Jun 30 03:32:13 1995
  3.       ╔═════════════════════════════════════════════════════════════╗
  4.       ║ * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * ║
  5.       ║ * ╔═════════════════════════════════════════════════════╗ * ║
  6.       ║ * ║              --=={ Wax's Mods }==--                 ║ * ║
  7.       ║ * ║                                                     ║ * ║
  8.       ║ * ║ Name: WAX13.MOD  (06/08/95)                         ║ * ║
  9.       ║ * ║ Desc: Asks (Co)Sysop if they want to view log on /O ║ * ║
  10.       ║ * ║ Vers: 4.24 (Will not work on prior versions)        ║ * ║
  11.       ║ * ║ Diff: ▓  <--- EASY                                  ║ * ║
  12.       ║ * ║ Orig. Auth: Sex Wax                                 ║ * ║
  13.       ║ * ║ Written by: Sex Wax       (508)764-6438 - 14.4 BAUD ║ * ║
  14.       ║ * ║ Wax's BBS: NO MAN'S LAND! (508)765-5829 - 14.4 BAUD ║ * ║
  15.       ║ * ╚═════════════════════════════════════════════════════╝ * ║
  16.       ║ * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * ║
  17.       ╚═════════════════════════════════════════════════════════════╝
  18.           1@15808 WWIVLink -=- 1@9207 WWIVNet -=- 51:51/20 WCSANet
  19.  
  20.     Difficulty: ( ▓ = EASY ), ( ▓▒ = SOME DIFFICULTY ), ( ▓▒░ = TOUGH )
  21.                                                          <Most likely>
  22.                                                         <not a Wax Mod>
  23.  
  24. ══════════════════════════════════════════════════════════════════════════════
  25.  
  26. =============================================================================
  27.  
  28. Note - I would consider backing up your source before adding this. It's always
  29.        a good idea. just do pkunzip -a source *.c *.h.
  30.  
  31.  
  32.  
  33. Step 1. Back up your source or else!
  34.  
  35. Step 2. Load up MMENU.C and search for the /O function in mainmenu()..
  36.         Make changes where noted...
  37.  
  38. Search....
  39.  
  40.   if (strcmp(s,"/N")==0)
  41.     nscan(cursub);
  42.   if (strcmp(s,"/O")==0) {
  43.     if (numbatchdl!=0) {
  44.       nl();
  45.       outstr(get_string(1324));
  46.       if (ny())
  47.         batchdl(1);
  48.       else
  49.       if (cs()) {                                            /* WAX13.MOD */
  50.         nl();                                                /* WAX13.MOD */
  51.         npr("2%s, 3Would you like to see the LOG before you go? ",thisuser.name);0
  52.  /* WAX13.MOD */
  53.           if (yn()) {                                        /* WAX13.MOD */
  54.             slname(date(), s1);                              /* WAX13.MOD */
  55.             print_local_file(s1,"");                         /* WAX13.MOD */
  56.             sysoplog("2#-#-# 5Co-Sysop read Today's Log"); /* WAX13.MOD */0
  57.           }                                                  /* WAX13.MOD */
  58.       }                                                  /* END WAX13.MOD */
  59.         hangup=1;
  60.     } else
  61.       if (cs()) {                                            /* WAX13.MOD */
  62.         nl();                                                /* WAX13.MOD */
  63.         npr("2%s, 3Would you like to see the LOG before you go? ",thisuser.name);0
  64.  /* WAX13.MOD */
  65.           if (yn()) {                                        /* WAX13.MOD */
  66.             slname(date(), s1);                              /* WAX13.MOD */
  67.             print_local_file(s1,"");                         /* WAX13.MOD */
  68.             sysoplog("2#-#-# 5Co-Sysop read Today's Log");0    5 /* WAX13.MOD */0
  69.           }                                                  /* WAX13.MOD */
  70.       }                                                  /* END WAX13.MOD */
  71.       hangup=1;
  72.   }
  73.   if (strcmp(s,"/R")==0) {
  74.  
  75.  
  76. Step 3. In dlmanimenu() make the changes in the /O function where
  77.         noted...
  78.  
  79. Search...
  80.  
  81.   if (strcmp(s,"/O")==0) {
  82.     if (numbatchdl!=0) {
  83.       nl();
  84.       outstr(get_string(1324));
  85.       if (ny())
  86.         batchdl(1);
  87.       else
  88.       if (cs()) {                                            /* WAX13.MOD */
  89.         nl();                                                /* WAX13.MOD */
  90.         npr("2%s, 3Would you like to see the LOG before you go? ",thisuser.name);0
  91.  /* WAX13.MOD */
  92.           if (yn()) {                                        /* WAX13.MOD */
  93.             slname(date(), s1);                              /* WAX13.MOD */
  94.             print_local_file(s1,"");                         /* WAX13.MOD */
  95.             sysoplog("2#-#-# 5Co-Sysop read Today's Log"); /* WAX13.MOD */0
  96.           }                                                  /* WAX13.MOD */
  97.       }  /* END WAX13.MOD */
  98.         hangup=1;
  99.     } else
  100.       if (cs()) {                                            /* WAX13.MOD */
  101.         nl();                                                /* WAX13.MOD */
  102.         npr("2%s, 3Would you like to see the LOG before you go? ",thisuser.name);0
  103.  /* WAX13.MOD */
  104.           if (yn()) {                                        /* WAX13.MOD */
  105.             slname(date(), s1);                              /* WAX13.MOD */
  106.             print_local_file(s1,"");                         /* WAX13.MOD */
  107.             sysoplog("2#-#-# 5Co-Sysop read Today's Log"); /* WAX13.MOD */0
  108.           }                                                  /* WAX13.MOD */
  109.       }                                                  /* END WAX13.MOD */
  110.       hangup=1;
  111.   }
  112.   if (strcmp(s,"/S")==0) {
  113.  
  114.  
  115. Step 4. Compile the source....
  116.  
  117.  
  118. 1Φ5∞∞∞2⌡1≈≈≈≈≈» 2Sex Wax 1«≈≈≈≈≈2⌠5∞∞∞1Φ0
  119.