home *** CD-ROM | disk | FTP | other *** search
/ The Devil's Doorknob BBS Capture (1996-2003) / devilsdoorknobbbscapture1996-2003.iso / Dloads / SYSOP / MODS1.ZIP / DREAM03.MOD < prev    next >
Text File  |  1994-05-06  |  2KB  |  54 lines

  1. Unca Scrooge #1 @8398
  2. Wed May 04 13:01:30 1994
  3. 0R: net33: @2077 (via @1040) [07:17 05/06/94]
  4. 0R: net33: @1040 (via @6211) [20:40 05/04/94]
  5. 0R 34 05/05 00:29 WWIVnet ->6211
  6. 0R: net33: @8398 [13:15 05/04/94]
  7. 9───────────────────────────────────────────────────────────────────────────────0
  8.  
  9. Unca Scrooge #188 @2077
  10. Wed Mar 10 12:35:34 1993
  11. ┌────────────────────────────────────────────────────────────────────────────┐
  12. │ Mod Name:  Dream003.mod           Date:  03/05/93                          │
  13. │ Difficulty:  █▒▒▒▒▒▒▒▒▒▒          Mod Authors:  Unca Scrooge               │
  14. │ WWIV Version:  4.22                             1@3759 WWIVnet             │
  15. │ Files Affected:  Conio.C                                                   │
  16. │ Description:  Add/Subtract 10 minutes when pressing F7/F8                  │
  17. │                                                                            │
  18. └────────────────────────────────────────────────────────────────────────────┘
  19.  
  20. Disclaimer   :   Works here, and I didn't make ya install it!
  21.  
  22. Notes        :   Saves fingers!  SIMPLE, SIMPLE mod... just thought someone
  23.                  like it.  Only take a couple minutes!
  24.  
  25.  
  26. Load up CONIO.C and search for :
  27.  
  28.  
  29.       case 65: /* F7 */
  30.         thisuser.extratime-=5.0*60.0;
  31.         tleft(0);
  32.         break;
  33.       case 66: /* F8 */
  34.         thisuser.extratime+=5.0*60.0;
  35.         tleft(0);
  36.         break;
  37.  
  38.  
  39.  
  40. block read this its place, or change the 5.0 to 10.0 (or whatever)
  41.  
  42.  
  43. case 65: /* F7 */
  44.         thisuser.extratime-=10.0*60.0;
  45.         tleft(0);
  46.         break;
  47.       case 66: /* F8 */
  48.         thisuser.extratime+=10.0*60.0;
  49.         tleft(0);
  50.         break;
  51.  
  52.  
  53. Save and re-compile
  54.