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

  1. *********************************************************************
  2. *                             TwO PunKs                             *
  3. *                         SYSOP FORUM MOD                           *
  4. *    1@8406                   WWIV 4.xx                  1@8410     *
  5. * 804-320-6305                                        804-780-9622  *
  6. *********************************************************************
  7.  
  8. ********************************FIRST********************************
  9.  
  10. This mod was written so that the users can send Email to any other SYSOP 
  11. though the net,because all the boards around here are so damn busy. 
  12.  
  13. *******************************SECOND********************************
  14.  
  15. For every sysop in this mod you need to make a false account on your board 
  16. under a different name so,if that sysop decides to call and get an acount it 
  17. will let him/her or if he/she already has one it will not affect them in any 
  18. way. 
  19.  
  20. ********************************THIRD********************************
  21.  
  22. With each account have that account forward its mail to the SYSOP of who is 
  23. going to be in the SYSOP FORUM.
  24.  
  25. ******************************FORTH**********************************
  26.  
  27. Then lets say the account you just made is account is number 29,now go now to 
  28. CASE '1': and make the EMAIL statement read like this:
  29. email(29,0,0,0); do that for the rest of them also.
  30.  
  31. *****************************FIFTH***********************************
  32.  
  33. Block read in the follow bit of code in BBSUTL.C before any other void 
  34. statement by typeing ^K^R
  35.  
  36.  
  37. void forum()
  38. {
  39.   char ch,s1[80];
  40.  
  41.   nl();
  42.   if (okansi())
  43.     printfile("FORUM.ANS");
  44.   else
  45.     printfile("FORUM.TXT");
  46.   pausescr();
  47.   topscreen();
  48.   nl();
  49.   prt(1,"Which area SysOp would send mail to? "); nl(); nl();
  50.   prt(2,"(1) Node 4444 Sysop 1"); nl();
  51.   prt(3,"(2) Node 5555 Sysop 2"); nl();
  52.   prt(5,"(3) Node 6666 Sysop 3"); nl();
  53.   prt(0,"(Q) Quit the SYSOP Forum "); nl(); nl();
  54.   tleft(1);
  55.   ansic(4);
  56.   outstr("() Sysop Forum (> ");
  57.   ch=onek("123Q");
  58.   switch(ch) {
  59.     case '1':
  60.        strcpy(irt,"Sysop Forum from >PUT YOUR BOARD NAME HERE<");
  61.        email(29,0,0,0);
  62.       break;
  63.     case '2':
  64.        strcpy(irt,"Sysop Forum from >PUT YOUR BOARD NAME HERE<");
  65.        email(31,0,0,0);
  66.       break;
  67.     case '3':
  68.        strcpy(irt,"Sysop Forum from >PUT YOUR BOARD NAME HERE<");
  69.        email(32,0,0,0);
  70.       break;
  71.     case 'Q':
  72.       break;
  73.   }
  74. }
  75.  
  76.  
  77. ******************************SIXTH**********************************
  78.  
  79. in BBS.C add the following before:
  80. if (strcmp(s,"/O"))
  81.  
  82.  
  83.  
  84. if (strcmp(s,"FORUM")==0)
  85.   forum();
  86.  
  87.  
  88. This will allow you to call it up by typing:
  89. //FORUM
  90. at the main menu.
  91.  
  92. *******************************SEVENTH*******************************
  93.  
  94. Make an ANSI screen called FORUM.ANS and a text file called FORUM.TXT telling 
  95. what the users is about to enter..
  96.  
  97. ********************************EIGHTH*******************************
  98.  
  99. Feel free to Email 1@8406 or 1@8410 if you have any problems or questions!!
  100.  
  101. *********************************NINTH*******************************
  102.  
  103. It is free so don't yell at us,please just tell us what is wrong so we can fix 
  104. it. 
  105.  
  106.                                        Thanks, TwO PunKs!