home *** CD-ROM | disk | FTP | other *** search
/ The Devil's Doorknob BBS Capture (1996-2003) / devilsdoorknobbbscapture1996-2003.iso / Dloads / SYSOP / MODS1.ZIP / MTM00001.MOD < prev    next >
Text File  |  1995-07-30  |  3KB  |  93 lines

  1. Mike The Man #1 @9121 7[1Pyro-Dude7]0
  2. Mon Jul 24 15:46:36 1995
  3. 4Msg. Status:3▄ 1Please Reply!
  4. 3 ▀▀▀▀▀▀▀▀▀▀▀▀
  5.  
  6. ╔══════════════════════════════════════╤════════════════════════════════════╗
  7. ║This Header/MOD copyright 1995 MTM :) │ MOD FN:  [MTM00001.MOD]            ║
  8. ╟──────────────────────────────────────┘ Description [Welp, this is my    ] ║
  9. ║WWIV Version: [4.23/4.24]   Files: [MSGBASE .C  ]   [first MOD so...  :) ] ║
  10. ║MOD Author:  [Mike The Man]        [        .   ]   [All this mod does is] ║
  11. ║Difficulty:  [■∙········]          [        .   ]   [utilitize the user- ] ║
  12. ║Reach Me At:  [1@9121 WWIVnet  ][1@167  LoveNet ]   [note function...  It] ║
  13. ║              [1@4251 TerraNet ][1@4213 AeroNet ]   [will append the note] ║
  14. ║              [1@1056 SteelNet ][1@     IceNet  ]   [to all posts & mails] ║
  15. ║              [#1 Mach Five BBS (412) 899-3606]     [Have fun!  :)       ] ║
  16. ╚═══════════════════════════════════════════════════════════════════════════╝
  17.  
  18.                      ──────────═════DISCLAIMER═════──────────
  19. Err...  Uh..  I'm only responsible for good things that happen...  :)  If for
  20. some reason, something goes wrong, it's your cat's fault...  If you don't 
  21. have a cat, then it's YOUR fault!  :)
  22. ─═─═─═─═─═─═─═─═─═─═─═─═─═─═─═─═─═─═─═─═─═─═─═─═─═─═─═─═─═─═─═─═─═─═─═─═─═─═─═─
  23.  
  24.                      ╔═════[Now On With 'Da MOD]════╗
  25.                      ╚═════[DOM aD' htiW nO woN]════╝
  26.  
  27. ▄▄▄▄▄▄▄▄▄▄▄▄▄▄ Step #1 ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
  28.  
  29. Like backup your source or something....     Err Dah!
  30.  
  31. ▄▄▄▄▄▄▄▄▄▄▄▄▄▄ Step #2 ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
  32.  
  33. Load up MSGBASE.C in your favorite editor...
  34. ▄▄▄▄▄▄▄▄▄▄▄▄▄▄ Step #3 ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
  35.  
  36. Search for this at the very top of void inmsg ...
  37.  
  38. char s[LEN],s1[LEN],s2[LEN]
  39.  
  40. And, add ", mtmunote[81]" to the end of the definition...
  41. Without the quotes of course...
  42.  
  43. ▄▄▄▄▄▄▄▄▄▄▄▄▄▄ Step #4 ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
  44.  
  45.  
  46. Now, later in void inmsg  look for this...
  47.  
  48.  
  49.     if (real_name)
  50.       addline(b,thisuser.realname,&l1);
  51.     else
  52.        addline(b,nam1(&thisuser,usernum,syscfg.systemnumber),&l1);
  53.  
  54.  
  55.  
  56. and replace it with this:
  57.  
  58.  
  59.  
  60.     if (real_name)
  61.       addline(b,thisuser.realname,&l1);
  62.     else {
  63.       if (thisuser.note[0]==0) {
  64.       addline(b,nam1(&thisuser,usernum,net_sysnum),&l1);
  65.     } else {
  66.       sprintf(mtmunote,"%s 7[1─═─7]2 %s 7[1─═─7]0",nam1(&thisuser,usernum,net_sysnum),thisuser.note);
  67.       /* Watch the possible line wrap above!!   Sorry!  This is a comment and
  68.          CAN stay here...   */                                                    
  69.       addline(b,mtmunote,&l1);
  70.      }
  71.     }
  72.  
  73.  
  74. ▄▄▄▄▄▄▄▄▄▄▄▄▄▄ Step #5 ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
  75.  
  76.  
  77. Save and compile your BBS if you would like...   :)
  78.  
  79. ▄▄▄▄▄▄▄▄▄▄▄▄▄▄ NOTES!! ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
  80.  
  81.  
  82. Drop me a line if you like this!!!
  83.  
  84. Thanks...
  85.  
  86. Oh, this is somewhat what it'll look like...
  87.  
  88. 0MIKE THE MAN #1   7[1─═─7]2 Pyro-Dude 7[1─═─7]0
  89.  
  90.  
  91.  
  92.   
  93.