home *** CD-ROM | disk | FTP | other *** search
/ Black Box 4 / BlackBox.cdr / sndblst / referenc.arj / REFERENC.MOD
Text File  |  1992-04-20  |  2KB  |  84 lines

  1.                      <> Andy's Reference Mod <>
  2.  
  3.  
  4. By: Andy Golden
  5. Level of Difficulty: EXTREMLY easy.
  6. Tested with: WWIV 4.20
  7. Support: The Jungle BBS (508) 435-7884
  8. Files Effected: Newuser.c, Fcns.h
  9.  
  10. *Disclaimer*
  11. No matter what the hell happens when you install this mod IM NOT RESPONSIBLE
  12. FOR!!!
  13. *Get it????*
  14.  
  15. Ok welp, One say I had a new user who was from the area, but his phone number
  16. wasn't listed so I couldn't use the phone book to validate him. Good thing
  17. for me, he said in feedback he called another local BBS and gave the name. So
  18. I just gave the BBS he mentioned a ring. And asked the sysop if this user
  19. exsisted. Well, he didnt.. So he was deleted. And I thought "What if he didnt
  20. mention another BBS, I probably would have validated this fake account." So
  21. I wrote this mod. What it does is when you have a newuser it asks for another,
  22. preferably local, BBS the user calls and prints out his answer to the Sysop
  23. Log. Simple huh? Can't Hurt...
  24.  
  25. Here's the mod:
  26.  
  27. Step one:
  28. ---------
  29.  
  30. BACK UP SOURCE!! This mod can't screw you big time if you don't, but it's still
  31. a good idea.
  32.  
  33. Step two:
  34. ---------
  35.  
  36. Load up NEWUSER.C and shove this void before "void input_realname()".
  37.  
  38. void input_reference()
  39. {
  40.  char s[81];
  41.  
  42. pl("1Name another BBS you call, preferably local");
  43. outstr("1: 7");
  44. input(s,40);
  45. sysoplog("*** BBS REFERENCE:  ");
  46. sysoplog(s);
  47.  
  48. }
  49.  
  50.  
  51. Step three:
  52. -----------
  53.  
  54. Insert a line in following section:
  55.  
  56.     input_age(&thisuser);
  57.     input_comptype();
  58.     input_reference();         /* INSERT ME!! */
  59.     nl();
  60.     npr("Random password: %s\r\n",thisuser.pw);
  61.     nl();
  62.  
  63.  
  64. Step four:
  65. ----------
  66.  
  67. Close up NEWUSER.C and load up FCNS.H
  68. Add:
  69.  
  70. void input_reference();
  71.  
  72. in the NEWUSER.C section of FCNS.H
  73.  
  74.  
  75. Step Five:
  76. ----------
  77.  
  78. Close up FCNS.H and recompile.
  79.  
  80.  
  81. There wasn't that special?? If you need any help or would like to contact me,
  82. I can be reached at The Jungle BBS, (508) 435-7884. Im Andy #1.
  83.  
  84.