View Single Post
  #124  
Old 11-12-2006, 03:05 AM
kidpokeher kidpokeher is offline
Senior Member
 
Join Date: Apr 2006
Location: value shoving
Posts: 2,115
Default Re: Poker Stars Mod request - will pay $$ ($25?)

I'm not a programmer. I just know a little about DOS and basically I just got lucky.


COPY [/D] [/V] [/N] [/Y | /-Y] [/Z] [/A | /B ] source [/A | /B]
[+ source [/A | /B] [+ ...]] [destination [/A | /B]]

source Specifies the file or files to be copied.
/A Indicates an ASCII text file.
/B Indicates a binary file.
/D Allow the destination file to be created decrypted
destination Specifies the directory and/or filename for the new file(s).
/V Verifies that new files are written correctly.
/N Uses short filename, if available, when copying a file with a
non-8dot3 name.
/Y Suppresses prompting to confirm you want to overwrite an
existing destination file.
/-Y Causes prompting to confirm you want to overwrite an
existing destination file.
/Z Copies networked files in restartable mode.

The switch /Y may be preset in the COPYCMD environment variable.
This may be overridden with /-Y on the command line. Default is
to prompt on overwrites unless COPY command is being executed from
within a batch script.

What you need to do is write a COPY command for each file DpR mentioned. You can edit the .bat file using Notepad. The command is similar to the XCOPY command in my existing .bat file and you would use the same general format, just 38 different times representing each file that needs to be copied. It'll look something like this:

COPY /Y (source file) (destination file)

Again, look at the way my current XCOPY commands are structured. You'll want to copy the files from the source to the same target directories you'll see in my XCOPY, then back again once the pokerstars program has loaded. So I guess in actuality you'll be doing 38x2 or 76 commands.

Good luck!
Reply With Quote