home *** CD-ROM | disk | FTP | other *** search
/ The Devil's Doorknob BBS Capture (1996-2003) / devilsdoorknobbbscapture1996-2003.iso / Dloads / WWIVMODS / MODSUNKN.ZIP / MINIM0D2.MOD < prev    next >
Text File  |  1990-08-29  |  2KB  |  72 lines

  1. Dr Zero #304 @5451
  2. Thu Aug 23 15:35:04 1990
  3.                           Mini D0CM0D #2
  4.                           ══════════════
  5.  
  6.       Filename: MINIM0D2.D0C
  7.           Date: 24/08/90
  8. Requested from: Mr. P 1@5464
  9.                 The Light Side
  10.                 (514) 488-3582
  11.        Purpose: When /I is pressed from the main menu, a text or
  12.                 ANSI file is displayed containing a brief
  13.                 description of the current message sub.  The
  14.                 command /I can be changed according to needs.
  15.  
  16.                 To use, create your text file using the =assigned=
  17.                 filename (in //BOARDEDIT) and the extension MSG
  18.                 and put it in the GFILES directory.
  19.  
  20.  
  21. ┌───────────────┐
  22. │ MODIFICATIONS │
  23. └───────────────┘
  24.  
  25.                 @@@  existing line
  26.                 +@+  line to add
  27.                 -@-  line to delete
  28.                 *@*  line to modify
  29.  
  30. FILE: BBS.C
  31.  
  32. @@@  void mainmenu()
  33. @@@  {
  34. @@@    char *s, s1[81],s2[81];
  35. @@@    int i;
  36. @@@    long l;
  37. +@+    subboardrec r;           /* Added */
  38. @@@
  39. @@@    if ((sysstatus_expert & thisuser.sysstatus)==0)
  40. @@@      printmenu(0);
  41.  
  42.  
  43. @@@    if (strcmp(s,"/O")==0)
  44. @@@      hangup=1;
  45. +@+    if (strcmp(s,"/I")==0)      /* Message Sub information */
  46. +@+    {
  47. +@+      r=subboards[cursub];
  48. +@+      sprintf(s1,"%s.MSG", r.filename);
  49. +@+      printfile(s1);
  50. +@+    }
  51. @@@    if (strcmp(s,"/E")==0)
  52. @@@      slash_e();
  53. @@@    if (strcmp(s,"/N")==0)
  54. @@@      nscan(cursub);
  55.  
  56. Usual Disclaimer: I'm not responsible if your computer blows up,
  57.         if your girl/boy friend leaves you, if you fail your
  58.         high school, if you lost that 10$ million lottery ticket...
  59.  
  60.     I can be reached at the following adresses.  The first is the
  61. bbs where all latest enhancements are implemented.  You can leave
  62. an e-mail to Dr Zero (me) or the sysop for comments, suggestions,
  63. or anything fun. The second adress is my postal box. That's where
  64. you shoud send in your registration/donations.
  65.  
  66.      ┌───────────────────────┐       ┌────────────────────┐
  67.      │ The Temples Of Syrinx │       │ Paul Do            │
  68.      │     (514) 744-8017    │       │ Box 655            │
  69.      │     300/1200/2400     │       │ Mont-Royal, Quebec │
  70.      │   WWIVnet node 5461   │       │ H3P 3G4     Canada │
  71.      └───────────────────────┘       └────────────────────┘
  72.