home *** CD-ROM | disk | FTP | other *** search
/ Best of Bible Study & Games / BestOfBibleStudyAndGames1996isv.zip / NOTES / TROUBLE.TXT < prev   
Text File  |  1995-07-06  |  8KB  |  163 lines

  1. ==================================================================
  2.                     TROUBLE-SHOOTING GUIDE
  3. ==================================================================
  4.  
  5.                                     
  6. 1.  Problems due to problematic CONFIG.SYS, especially when you 
  7. have some memory managers like QEMM.
  8. Suggestions:
  9. a.  Make sure your CONFIG.SYS has the following lines if you do not
  10. use any third party memory manager, especially
  11. if you load DOS high:
  12.     DEVICE=C:\DOS\HIMEM.SYS
  13.     DEVICE=C:\DOS\EMM386.EXE
  14.     DOS=HIGH
  15. b.  If you use third party memory managers like QEMM, try getting
  16. rid of any non-essential drivers and reboot the system until the
  17. problem goes away or until the program runs.  To see if the
  18. memory manager causes the problem, boot up system with "vanilla"
  19. CONFIG.SYS like the one listed in (a) and run the program again.
  20. If it runs without a hitch, then the memory manager causes the
  21. problem.  The "stealth" mode of QEMM tends to cause more headaches.
  22.  
  23. 2.  Problem due to insufficient RAM to load program.
  24. Symptoms:  "Not enough memory to load program"
  25. Suggestions:
  26. a.  Install more memory
  27. b.  Run MemMaker (from MS-DOS 6.x) to optimize your memory setting
  28. or use any memory manager to reconfigure your system.
  29. c.  Remove as many as non-essential drivers and TSR programs.
  30. d.  If running Windows programs, close as many Windows as possible.
  31.  
  32. 3.  Problems due to programs try writing to the CDROM.
  33. (CD is a READ-ONLY device, cannot be written to)
  34. Correction:  Some games need to update the highest score when you
  35. exit the game.  Your computer may hang or give an error message when
  36. the game tries writing to the CDROM.  Either ignore the error and 
  37. reset the system OR copy game to hard drive.
  38.  
  39. 4.  I have installed the CD DIRECTOR menu program and it ran fine.  
  40. Now I click and the icon and the CD gives me an error message 
  41. saying that some MDB or LDB files are missing or incorrect path. Why?
  42. Answer:  To speed up the CD DIRECTOR menu program, the data files are 
  43. stored under MAPLEMDA.CD subdirectory.  If you accidentally erased this
  44. directory, you will get the above error message.  Simply re-run 
  45. INSTALL ICON selection in your INSTALLATION MENU to fix this problem.
  46.  
  47. 5.  Certain games, especially the graphics-intensive ones, tends to 
  48. take a long time to load program into screen, WHY?  How to speed it up?
  49. Answer:  The access time of most single speed CD-ROM drive is about
  50. 350- 700ms (compare to hard drives' 10- 30ms), so it is a lot SLOWER
  51. when loading big games.  You may want to get a double-speed CD-ROM
  52. or install cache program that will speed up CD-ROM drive.  Note that
  53. not every cache program speeds up CDROM access time.
  54.  
  55. 6.  Some games runs fine on its existing settings, it freezes, hangs,
  56. or give a disk error or I/O error message when I try to change its
  57. setting.
  58. Answer:  Since CD is a READ-ONLY media, game settings that have been
  59. written onto it cannot be changed.  You get the above symptoms if you
  60. try to change it.  Either play the games as is OR copy it onto your
  61. hard disk, then you can change its setting without problem.
  62.  
  63. 7.  Program still freezes or gives "I/O error" or "Access Denied"
  64. messages even after I have copied program from CD-ROM to my 
  65. hard disk.
  66. Answer:  The file attribute of the programs is set to "R" (read-only)
  67. when they are copied to the CD-ROM.  You have copied these files
  68. with the "R" attribute.  If you don't remove the "R" attribute, your
  69. PC will not be able to write or update certain data files and give
  70. you I/O and access error messages. Run the following command 
  71. to remove the "R" attribute:
  72.        ATTRIB *.* -R /S
  73.  
  74. 8. How to figure out the playing commands?
  75. Answer: There are two ways:
  76. a.  Most programs has a help key, "F1" is the most popular one.
  77. The help key will give you command summary and other essential info.
  78. So look for the help key on your screen.  If no help key is found,
  79. see if you can found a cursor on screen.  You may control the cursor
  80. with arrow keys or mouse.  Then try out different buttons or choices.
  81. b.  Exit the program and manually log into the subdirectory in which
  82. the game resides.  Look for any file with .DOC or .TXT extension and
  83. read it with DOS's EDIT or the LIST, SEE utility (copies in the NOTES
  84. sub-directoy). Most games comes with instructions in the form of 
  85. README file, or README.TXT, or README.DOC, or MANUAL.TXT, or 
  86. MANUAL.DOC.  You can print out the instruction with EDIT (from DOS), 
  87. or SEE or LIST or your favorite word processor.
  88. For Windows programs, look for the files with .WRI extension, you
  89. can read it by simply "clicking" on the file.
  90.  
  91. 9.  How to EXIT or get out of certain games and demo?
  92. Answer:  Some software authors are too lazy to write the exit routine.
  93. Most common commands to get out of a program are:
  94.    ESC       F10
  95.    CTRL-X;   CTRL-Q;  CTRL-U;  CTRL-Break; CTRL-ESC;  CTRL-PRINT SCREEN
  96.    ALT-X;    ALT-Q;   ALT-ESC
  97.    F10       CTRL-ALT-DEL
  98. FOR WINDOWS PROGRAMS: ALT-F4   
  99.  
  100. When everything fails, use CTRL-ALT-DEL keys.  DON'T use reset button
  101. when running WINDOWS, you may damage the hard disk.
  102.  
  103. 10.  Some games run fine under certain DOS version like DOS 5.0 and do
  104. not run under 6.0 or later.
  105. Suggestion:  Make sure you have this line "DEVICE=C:\DOS\SETVER.EXE" 
  106. in your CONFIG.SYS.  Then run SETVER to set the game program to the 
  107. DOS version that it will operate.  For example, if GAME.EXE will run
  108. under DOS 5 and you are using DOS 6, run this command:
  109.         C:>SETVER GAME.EXE 5.0
  110.  
  111. You need to reboot system for the changes to be effective.
  112. Refer to DOS manual on SETVER if you have any questions.
  113.  
  114. 11.  Problem due to insufficient video memory and incorrect video 
  115. card driver. (Some games require you to choose a video driver, 
  116. some high-resolution games need more than 512k video RAM)
  117. Symptoms:  There's no picture on screen, but the hard disk sounds like
  118.            it is retrieving something.
  119.            Strange colors in pictures.
  120. Correction:  If you have another VGA card, try it to see if problem 
  121. persists. Find a VGA card with more memory. Choose a different video 
  122. driver to see if problem goes away.
  123.  
  124. 12.  Problem due to pointing devices such as mouse and joystick
  125. (Some games won't run without a mouse)
  126. Correction:  Load the mouse driver and install a mouse.  If the mouse
  127. is jumpy or erratic, check if the mouse driver load is the correct one.
  128. Also check if serial port and/or mouse is defective or not.
  129.  
  130. 13.  Problems due to incorrect sound drivers, program crashes or
  131. refuses to run.
  132. Correction:  If the program assumes you have a sound card installed
  133. and you have none, run the setup or install utility of the program,
  134. select PC speaker or none (no sound card).  Then the program won't
  135. look for a sound card when running.
  136. If you have a sound card and the program reports no sound card or
  137. incorrect driver, re-install your sound card driver that comes with
  138. the card; check if problem goes away; if not; run the setup or install
  139. utility of the program.  The default setting for SoundBlaster type
  140. sound cards are: IRQ5, address 220, DMA1.
  141.  
  142. 14.  Problems due to missing .DLL or .VBX files.
  143. Correction:  You may need to copy some or all of the .DLL or
  144. .VBX files into your Windows subdirectory.
  145.  
  146.  
  147. MOST OF THE PROBLEMS THAT YOU RUN INTO WILL GO AWAY WHEN YOU COPY
  148. THE PROGRAM ONTO THE HARD DRIVE, IF NOT, ALSO RUN "SETUP", OR 
  149. "CONFIG" TYPE PROGRAM/ UTILITY TO CHANGE THE DEFAULT SETTING TO
  150. THE ONE THAT MATCH YOUR SYSTEM.
  151.  
  152. If copying the game from CD-ROM to hard disk does not fix the
  153. problem, copy the ZIP files fo the game to hard disk, uncompress
  154. it using PKUNZIP or UNZIP, re-run INSTALL, CONFIG, or SETUP.
  155. Then the game should run fine.  Problems of this sort is caused
  156. by file names characters not allowed for ISO 9660 standard for
  157. CD-ROM.
  158.  
  159. -- Copyright 1994, 1995  Maple Media, Inc.
  160.    Licensed to Software Values International, Inc.
  161.    All trademarks recognized and are the properties of 
  162.    its respective owners.
  163.