home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 15 / CD_ASCQ_15_070894.iso / vrac / drmcht13.zip / DRMCHAT.MOD < prev    next >
Text File  |  1994-06-06  |  4KB  |  89 lines

  1. ╔─────────────────────────────────────────────Unca_Mod_Header (c) Copyright─╗
  2. │ Mod Name:  DrmCHAT.Mod                  Date : June 6, 1994               │
  3. │ Difficulty: █▒▒▒▒▒▒▒▒▒                  Author:    Unca Scrooge           │
  4. │ WWIV Version: 4.23 (should work on any)            1@8398 WWIVnet         │
  5. │ Files Affected: BBS.C                              1@8398 ICEnet          │
  6. │ Description:  Allows the use of DreamCHAT (any     1@8351 ImagiNet        │
  7. │ version) from within WWIV.                         1@2754 WW4Net          │
  8. ╠───────────────────────────────────────────────────────────────────────────╣
  9. │  This mod and mod-header is copyright 1993-94 by Andy Stewart, aka Unca   │
  10. │    Scrooge, and is distributed as freeware.  Permission is granted to     │
  11. │ distribute and post this mod on BBS systems and online services, provided │
  12. │   no alterations are made (removal of message headers/taglines allowed).  │
  13. │  This mod may contain some parts of WWIV source code, which is copyright  │
  14. │  1988-1994 by Wayne Bell and licensed only to registered users of WWIV.   │
  15. │  Use of WWIV source without registration constitutes a license violation  │
  16. │          and could lead to legal prosecution and certain doom.            │
  17. │                                                                           │
  18. │   Shareware distributors and CDRom publishers may not distribute this mod │
  19. │      without express written permission of the Author or WWIV Software    │
  20. │                                 Services.                                 │
  21. ╠───────────────────────────────────────────────────────────────────────────╣
  22. │                      ─ ── ──══[ Disclaimer ]══── ── ─                     │
  23. │ Though this mod has been tested extensivly, there are no guaruntees.  You │
  24. │   should have a current backup of your source should something go wrong   │
  25. │ while installing this mod.  The Author(s) and/or DreamWARE Communications │
  26. │  and DreamWARE Modding services CANNOT and WILL NOT be held  responsible  │
  27. │          for any ill effects resulting from anyone using this mod.        │
  28. │                                                                           │
  29. │     . ─ ── ───═══[ ALWAYS BACK UP YOUR SOURCE-CODE!!!! ]═══─── ── ─ .     │
  30. ╠─────────────────────────╦─────────────────────────────────────────────────╝
  31. │─ ─═[ Modding codes ]═─ ─│
  32. │  ─────────────────────  │ Jeez... people are even ripping off my mod-
  33. │ =    Existing Code      │ header now, and not even bothering to change
  34. │ +    Add This Code      │ the look, wording, or even the ─ ─═[ ]═─ ─
  35. │ -    Delete This Code   │ thingies...  ugh!  ANYHOOO... enough bitching..
  36. │ %    Modify This Code   │ I'm sure not many of you care <g>, so on with it.
  37. │ .-.. Morse Code         │
  38. ╚─────────────────────────╝
  39.  
  40.  Extended Description :
  41.  
  42.  Instead of using WWIV's internal chat request, this mod will run DreamCHAT
  43.  from within the BBS.  Easy enough.
  44.  
  45.  
  46.  
  47. On with the Mod....
  48.  
  49. Step 1 :  Open up BBS.C and in void mainmenu(void) search for and replace
  50.           case 'C': with this one...
  51.  
  52.       case 'C':
  53.         helpl=3;
  54.         run_external("C:\\WWIV\\BATCH\\CHAT.BAT");
  55. //        shrink_out("C:\\WWIV\\BATCH\\CHAT.BAT",1,0,0,0);
  56.         break;
  57.  
  58. //  NOTE1 !!!!  Change the C:\\WWIV\\BATCH\\CHAT.BAT above to reflect the
  59. //  path to and name of the batchfile you use to call DreamCHAT.  DON'T
  60. //  forget the dual_backslashes!  They MUST be there!
  61.  
  62. //  NOTE2 !!!!  If your BBS doesn't have enough memory to run DreamCHAT
  63. //  as called above, comment out the run_external line and uncomment the
  64. //  shrink_out line.
  65.  
  66.  
  67. Still in BBS.C, in void dlmainmenu(void) search for and replace
  68. case 'C': with this one...
  69.  
  70.  
  71.       case 'C':
  72.         helpl=3;
  73.         run_external("C:\\WWIV\\BATCH\\CHAT.BAT");
  74. //        shrink_out("C:\\WWIV\\BATCH\\CHAT.BAT",1,0,0,0);
  75.         break;
  76.  
  77. //  NOTE1 !!!!  Change the C:\\WWIV\\BATCH\\CHAT.BAT above to reflect the
  78. //  path to and name of the batchfile you use to call DreamCHAT.  DON'T
  79. //  forget the dual_backslashes!  They MUST be there!
  80.  
  81. //  NOTE2 !!!!  If your BBS doesn't have enough memory to run DreamCHAT
  82. //  as called above, comment out the run_external line and uncomment the
  83. //  shrink_out line.
  84.  
  85. Save BBS.C and recompile....
  86.  
  87.  
  88. Enjoy, and lemme know if ya have any questions and/or problems...
  89.