home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #1 / monster.zip / monster / BBS_GAME / USURP005.ZIP / GAMEHELP.ZIP / DOR.TXT < prev    next >
Text File  |  1993-11-15  |  3KB  |  63 lines

  1.                           DOC's for DOR.EXE
  2.                           -----------------
  3.  
  4.  DOR is used to change values in the DORINFO1.DEF used by many external        
  5. door programs. It can also create a dorinfo1.def if it doesn't exist or        
  6. if your BBS package does not supPort the standard dorinfo type file. Typing    
  7. DOR when no dorinfo1.def exists will create one with default values.           
  8.  Sample usage "DOR T=30 P=2 B=4800" would change the Time to 30 minutes        
  9. the Port to com 2 and the Baud rate to 4800 Baud. Available switches are...    
  10.  
  11.  Make a seperate DIRECTORY for DOR and copy DORINFOx.DEF with your game
  12. batch file. Example:
  13.  
  14. copy c:\ezy\DORINFO2.DEF c:\dor\DORINFO1.DEF >NUL
  15. cd\dor
  16. DOR B=19200
  17. copy c:\dor\DORINFO1.DEF c:\game\DORINFO2.DEF >NUL
  18.  
  19. If you have your game batch file setup to recieve commands from you game
  20. menu, such as:
  21.  
  22. First Name : Bill     =  %1
  23. Last Name  : McPhail  =  %2
  24. Node       : 2        =  %3
  25. Port       : 2        =  %4
  26. Baud       : 14400    =  %5
  27. Time       : 160      =  %6
  28. Graphics   : 1        =  %7
  29.  
  30. The following example will copy users node DORINFOx.DEF from EZY
  31. (which is DORINFO2.DEF) into the DOR directory as DORINFO1.DEF,
  32. then run DOR.EXE B=19200, then it copies DORINFO1.DEF into your
  33. game directory as DORINFO2.DEF
  34.  
  35. copy c:\ezy\DORINFO%3.DEF c:\dor\DORINFO1.DEF >NUL
  36. cd\dor
  37. DOR B=19200
  38. copy c:\dor\DORINFO1.DEF c:\game\DORINFO%3.DEF >NUL
  39.  
  40. NOTE: DOR looks for DORINFO1.DEF ONLY!
  41. ======================================
  42.                                                                                
  43.  H or ?          Displays this help screen.                                    
  44.  P=<Port number> Port number must be between 0 and 8. Use 0 for simulating     
  45.                  local mode in the door.                                       
  46.  B=<Baud rate>   Baud rate can be any valid Baud rate. You can also specify    
  47.                  0 Baud for local mode.                                        
  48.  T=<Time left>   Change the Time to specified only if the Time is greater in   
  49.                  the dorinfo1.def file. This will make sure the user does not  
  50.                  stay on longer than his alloted Time. You could also put t=-2 
  51.                  which would subtract 2 minutes from the dorinfo file          
  52.  G=<Graphics>    Does user have ANSI Graphics? 0=No  1=Yes                     
  53.  X=<Fossil>      Is there a Fossil? 0=No -1=Yes                                
  54.  F=<first name>  Change users first name.                                      
  55.  L=<last name>   Change users last name.                                       
  56.  
  57. This text files compliments of:
  58.  
  59. The BoardRoom BBS  Graham, Wa. USA 
  60. Node 1 - 1:138/137  (206) 847-1763 v32b
  61. Node 2 - 1:138/237  (206) 846-0755 v32b
  62.  
  63.