home *** CD-ROM | disk | FTP | other *** search
/ The Arcade BBS / arcadebbs.zip / arcadebbs / bbstools / MODS / ALLMODS.ZIP / NI-006.ZIP / NI-006.424 < prev   
Encoding:
Text File  |  1995-07-11  |  1.7 KB  |  56 lines

  1. Johnny Five #26 @15301
  2. Fri Jul 07 13:07:36 1995
  3. ╒NI Header (c)══════════════════════════════════════════════════════════════╕
  4. │       N O V A   I N D U S T R I E S  B B S  9 0 4 - 2 6 0 - 2 3 9 4       │
  5. ╞═══════════════════════════════════════════════════════════════════════════╡
  6. │ Mod Name  : NI-006.424          Author: Johnny Five 1 @1 ExcelNet         │
  7. │                                                     1 @15333 WWIVnet      │
  8. │ Difficulty: Can you pick your nose?                 1 @9411 TFAlink       │
  9. │                                                     1 @4000 COWBOYnet     │
  10. │ Version   : 4.24   Date: 05-04-95                   and many others       │
  11. │                                                                           │
  12. │ Files Affected:                                                           │
  13. │                                                                           │
  14. │ Description: Users can Upload messages at the read prompt like //UPLOAD   │
  15. │ and you can like //LOAD when you type 'L' .                               │
  16. ╘═══════════════════════════════════════════════════════════════════════════╛
  17.  
  18. This Mod was originally by Darrell Mobley for v4.20
  19.  
  20.  
  21. = Already there
  22. + add
  23. - Remove
  24. * change
  25.  
  26.  
  27. Step 1: B(ack).U(p).Y(our).S(ource).
  28.  
  29. Step 2: load up MSGBASE1.C and look for "case 'L':".  Add replace it
  30. with this ones
  31.  
  32.           case 'L':
  33.         if (!so()) {
  34.           upload_post();
  35.         } else {
  36.           nl();
  37.           prt(2,get_string(7));                       
  38.           input(s,50);
  39.           if (s[0]) {
  40.             nl();
  41.           prt(5,get_string(17));      
  42.             if (yn()) {
  43.               nl();
  44.               load_workspace(s,0);
  45.               } else {
  46.               nl();
  47.               load_workspace(s,1);
  48.               }
  49.             }
  50.           }
  51.         break;
  52.  
  53.  
  54. SAVE AND COMPILE!
  55.  
  56.