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

  1. What it does:  allows you to hit a key at the UEDIT screen and see what all 
  2. current SL's, DSL's, AR's, and DAR's mean. (I don't know about you, but I can 
  3. never remember what my AR's mean)
  4.  
  5. Step 1.  Load UEDIT.C
  6.  
  7. Step 2.  Search down for void uedit(something), then search for where there 
  8. are two "ch=onek(blahblah)"'s two and four lines below where it prints out 
  9. "Uedit : ".
  10.  
  11. Step 3.  Add a "`", or whatever key you want to use, to the beginning of the 
  12. ch=onek's.  
  13.  
  14. Step 4.  Right below where it says "switch(ch) {", add this:
  15.   
  16.   case '`': /*or whatever*/
  17.     printfile("AR'S.TXT");  /* or whatever you want to call it */
  18.     pausescr();
  19.     break;
  20.  
  21. Step 5.  Recompile it.
  22.  
  23. Step 6.  Make a file in your gfiles directory called "AR'S.TXT", or whatever 
  24. you put in UEDIT.C, that has each AR and DAR you use, and what access they 
  25. give, and do the same with your SL's and DSL's.
  26.  
  27. Step 7. (optional) Update your Uedit menu's to show the change.  
  28.  
  29. Step 8. (also optional)  If you only don't want co-sysops to be able to see 
  30. the list, don't add the "`" in the second "ch=onek(blah blah)"
  31.  
  32. Should work with 4.11 and up, but if you have any problems, e-mail me, 1@8406.
  33.  
  34. Ice 
  35.     Man