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

  1. This mod will allow the user to see a Sysop Is Avalible message at the 
  2. main menu prompt if scroll lock is on...
  3.  
  4. 1st:
  5.  
  6. Cntrl-Q-F: strcat(s2,subboards[usub[cursub].subnum].name);
  7.  
  8. Now look down about 4-5 lines and you will see a line that says:
  9.  
  10. prt(s1);
  11.  
  12. Add the following line BEFORE 'prt(s1);':
  13.  
  14. Add:
  15.  
  16. if (sysop2())
  17.   print("Sysop Is Available"); /* Anything you want it to say about the sysop                                     being availbale can go here */
  18. else
  19.   print("Sysop Is Not Available"); /* Anything here too, or if you want   
  20.                                     NOTHING if the sysop is not available, 
  21.                                     just do not add this line...*/
  22.  
  23. So it should look like:
  24.  
  25. * if (sysop2())
  26. *   print(3,"Sysop Is Available");
  27. * else
  28. *   print(3,"Sysop Is Not Available"); /* Can Be Left Out */
  29. + prt(s1);
  30.  
  31. Legend: + = ORIGINAL CODE
  32.         * = NEW CODE
  33.  
  34. The number 3 that shows up in the: print(3,"sysop is.... can be changed 
  35. to any number from 0-7... That is the color... You all know the ansi 
  36. colors I guess (or can easily find them out...)... So, those lines can be 
  37. made any color you want!
  38.  
  39. Thats it!
  40.  
  41. Jonathan