Project 1999

Go Back   Project 1999 > General Community > Technical Discussion

Reply
 
Thread Tools Display Modes
  #1  
Old 04-28-2015, 09:02 AM
FatMagic FatMagic is offline
Sarnak

FatMagic's Avatar

Join Date: Oct 2009
Location: Buffalo, NY
Posts: 410
Default

Quote:
Originally Posted by worch [You must be logged in to view images. Log in or Register.]
A friend who was setting up EQLite had an issue where the launcher script contained in the p99 patch zip's was not copied over to C:/EQLite. I can't confirm since I don't use the script (don't use windows), but this is something you may want to double check.
I will take a look! Thank you for the heads up.
__________________
Reply With Quote
  #2  
Old 06-03-2015, 05:23 PM
mr. P mr. P is offline
Scrawny Gnoll


Join Date: Aug 2011
Posts: 25
Default

Nice, thanks for the script. [You must be logged in to view images. Log in or Register.]

However, I had to change:
Code:
cd E:\Program Files\Sony\EverQuest
to
Code:
cd /d E:\Program Files\Sony\EverQuest
for this script to work. Otherwise it would not find any files to copy. I believe that change would solve the issue some people has been experiencing. The "/d" flag would only be necessary in cases where the folder resides in another drive than the current working directory is. But it can be used in cases where the folder is one the same drive as well. I.e. it's a win-win. [You must be logged in to view images. Log in or Register.]

Also, if I would have had my wits about me before I ran this script and deleted my old EQ folder I would have also added this line to the script after the line above:
Code:
for /f %%i in ('dir /b ^| findstr /i ".*.ini$"') do (
	xcopy %%i "%eqlite_dir%"
)
Then I would not have lost my settings (*.ini files). Shame on me.
Last edited by mr. P; 06-03-2015 at 05:32 PM..
Reply With Quote
  #3  
Old 06-30-2015, 01:30 PM
FatMagic FatMagic is offline
Sarnak

FatMagic's Avatar

Join Date: Oct 2009
Location: Buffalo, NY
Posts: 410
Default

Quote:
Originally Posted by mr. P [You must be logged in to view images. Log in or Register.]
Nice, thanks for the script. [You must be logged in to view images. Log in or Register.]

However, I had to change:
Code:
cd E:\Program Files\Sony\EverQuest
to
Code:
cd /d E:\Program Files\Sony\EverQuest
for this script to work. Otherwise it would not find any files to copy. I believe that change would solve the issue some people has been experiencing. The "/d" flag would only be necessary in cases where the folder resides in another drive than the current working directory is. But it can be used in cases where the folder is one the same drive as well. I.e. it's a win-win. [You must be logged in to view images. Log in or Register.]

Also, if I would have had my wits about me before I ran this script and deleted my old EQ folder I would have also added this line to the script after the line above:
Code:
for /f %%i in ('dir /b ^| findstr /i ".*.ini$"') do (
	xcopy %%i "%eqlite_dir%"
)
Then I would not have lost my settings (*.ini files). Shame on me.

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!
__________________
Reply With Quote
  #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
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 04:18 AM.


Everquest is a registered trademark of Daybreak Game Company LLC.
Project 1999 is not associated or affiliated in any way with Daybreak Game Company LLC.
Powered by vBulletin®
Copyright ©2000 - 2026, Jelsoft Enterprises Ltd.