home *** CD-ROM | disk | FTP | other *** search
/ The Arcade BBS / arcadebbs.zip / arcadebbs / bbstools / MODS / ALLMODS.ZIP / NI-008.ZIP / NI-008.MOD < prev   
Encoding:
Text File  |  1995-07-10  |  2.3 KB  |  57 lines

  1. Johnny Five #26 @15301
  2. Fri Jul 07 13:10:54 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-008.424          Author: Johnny Five 1 @1 ExcelNet         │
  7. │                                                     1 @9403 CCNet         │
  8. │ Difficulty: Can you say "Block Copy"?               1 @205 SteelNet       │
  9. │                                                     1 @9411 TFAlink       │
  10. │ Version   : 4.24  Date: 06-29-95                    and many others       │
  11. │                                                                           │
  12. │ Files Affected: BBSOVL1.C                                                 │
  13. │                                                                           │
  14. │ Description:  Plutonium's old 4.21a Yourinfo mod updated for 4.24         │
  15. │                                                                           │
  16. ╘═══════════════════════════════════════════════════════════════════════════╛
  17.  
  18.  
  19.  
  20.  
  21.  
  22. Step 1: B(ack).U(p).Y(our).S(ource).
  23.  
  24. Step 2:  Just Delete or Comment Out Your Old void yourinfo(void) and replace
  25.          it with This One.
  26.  
  27.  
  28. void yourinfo(void)
  29. {
  30.   if (menu_on()) {
  31.     rip_yourinfo();
  32.     return;
  33.   }
  34.   
  35.   outchr(12);
  36.   npr("2─3│7Your name1      ─5 %s\r\n",nam(&thisuser,usernum));
  37.   npr("2─3│7Phone number1   ─5 %s\r\n",thisuser.phone);
  38.   if (thisuser.waiting)
  39.     npr("2─3│7Mail waiting1   ─5 %d\r\n",thisuser.waiting);
  40.   if (actsl==thisuser.sl)
  41.     npr("2─3│7Sec Lev1        ─5 %d\r\n",thisuser.sl);
  42.   else
  43.     npr("2─3│7Sec Lev  1      ─5 %d (temporarily %d)\r\n",thisuser.sl, actsl);
  44.   npr("2─3│7Transfer SecLev1─5 %d\r\n",thisuser.dsl);
  45.   npr("2─3│7Last on  1      ─5 %s\r\n",thisuser.laston);
  46.   npr("2─3│7Times on   1    ─5 %d\r\n",thisuser.logons);
  47.   npr("2─3│7On today     1  ─5 %d\r\n",thisuser.ontoday);
  48.   npr("2─3│7Messages posted1─5 %d\r\n",thisuser.msgpost);
  49.   npr("2─3│7E-mail sent 1   ─5 %d\r\n",
  50.     (thisuser.emailsent+thisuser.feedbacksent+thisuser.emailnet));
  51.   npr("2─3│7Time spent on 1 ─5 %ld Minutes\r\n", (long)
  52.     ((thisuser.timeon+timer()-timeon)/60.0));
  53.   nl();
  54. }
  55.  
  56.  Recompile And Enjoy!
  57.