View Single Post
  #4  
Old 07-01-2015, 06:02 AM
mr. P mr. P is offline
Scrawny Gnoll


Join Date: Aug 2011
Posts: 25
Default

Quote:
Originally Posted by FatMagic [You must be logged in to view images. Log in or Register.]
Thanks Mr.P! I'll make the copy directory/drive change... I like a win-win. I assume the 2nd bit of code just preserves the Player Settings INI file, correct? If so I will include it as well. Thanks!
It will copy any file ending with .ini. For instance; eqclient.ini.

You could just change it to:
Code:
for /f %%i in ('dir /b ^| findstr /i ".*project1999.ini$"') do (
	xcopy %%i "%eqlite_dir%"
)
That would only copy the character specific ini files for that particular server. I do think that copying all ini files should be OK though. [You must be logged in to view images. Log in or Register.]
Reply With Quote