home *** CD-ROM | disk | FTP | other *** search
/ The Devil's Doorknob BBS Capture (1996-2003) / devilsdoorknobbbscapture1996-2003.iso / Dloads / WWIVMODS / MODSUNKN.ZIP / BAUDRATE.MOD < prev    next >
Text File  |  1992-12-01  |  2KB  |  52 lines

  1. Pillsbury Dough Boy #1 @7652  [Lancaster, NY]
  2. 10/14/90 at 8:31 pm <EST>
  3.  
  4. /* Welcome to my third mod .. "BAUDRATE.mod"... (Or PDBMOD3.TXT)         
  5.    
  6.    Name: BAUDRATE.mod (or PDBMOD3.TXT) 
  7.    Desc: Prints out Baud Rates in UEDIT   
  8.    Time: 5 minutes (tops)
  9.    File: Only One : SYSOPF.C
  10.    D&T : October 14th, 1990 at 8:23 EST
  11.    
  12.    Thanks: Superconductor (119@7652) - for the Idea
  13.  
  14. The MOD!
  15. */
  16.  
  17. /*
  18. Step 1 - In SYSOPF.C -
  19.  
  20. In: void print_data(int un, userrec *u)
  21.  
  22. Search for : print("UpDn: U=",s,"-",s2,"k   D=",s1,"-",s3,"k",""); */
  23.  
  24. /* Add */
  25.   itoa(u->lastrate,s5,10);
  26.   print("BaudRate: ",s5,"");
  27.  
  28. /*  -----------------=============(End Step 1)=============-------------- 
  29.  
  30.  
  31. Step 2 - In SYSOPF.C -
  32.  
  33. In: void print_short(int un, userrec *u)
  34.  
  35. Search for:  print("Comp: ",&(ctypes[u->comp_type][0]),""); */
  36.  
  37. /* Add */
  38.  
  39.   itoa(u->lastrate,s5,10);
  40.   print("BaudRate: ",s5,"");
  41.  
  42.  End of Mod
  43.  
  44. Well.  This is a very very easy mod... No disclaimer should be necessary, but
  45. I'm putting one just incase. :-)  If this mod really does the dirty deed on 
  46. your brand new computer... don't come crying to me.. I have my own problems.. 
  47. (Violin in background).. Right now, I'm only 15 years old, and I've turned out
  48. three mods already (WHEREFROM.MOD, EMAILFIX.MOD and this one) so that's pretty
  49. good.   (Especially since I really don't know Turbo C that well)...  If you 
  50. have any ideas for mods, please email #1@7652 and I'll see what I can do.
  51.