Project 1999

Go Back   Project 1999 > General Community > Technical Discussion

Reply
 
Thread Tools Display Modes
  #1  
Old 10-08-2014, 11:23 AM
worch worch is offline
Kobold

worch's Avatar

Join Date: Aug 2014
Location: The Overthere
Posts: 147
Default

Thanks for starting the project. I run EQ from a ram disk, so reducing the size of the EQ directory helps a lot.

For anyone using linux, attached is a bash script to remove unused files. I had to give it a .txt extension in order to upload the file, fyi.


Quote:
Originally Posted by FatMagic [You must be logged in to view images. Log in or Register.]
Fixed and amended on my script! To anyone who already ran the EQLite script, you will need to find the full install of Titanium and copy all "growthplane_" files over to your EQLite script. Sorry for the missed files!
I noticed that the manual instructions were not updated to include growthplane files. I went through the manual steps myself and noticed that coyotes in steamfont mountains didn't have the correct model (they appears as human males) when the growthplane files were missing.
Attached Files
File Type: txt EQLite.sh.txt (15.2 KB, 7 views)
Reply With Quote
  #2  
Old 03-19-2014, 10:37 AM
FatMagic FatMagic is offline
Sarnak

FatMagic's Avatar

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

Ah I didn't know that! I can easily keep those files. I'll make sure all Plane of Growth files stay. Thanks for this!
__________________
Reply With Quote
  #3  
Old 04-28-2015, 08:58 AM
worch worch is offline
Kobold

worch's Avatar

Join Date: Aug 2014
Location: The Overthere
Posts: 147
Default

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.
Reply With Quote
  #4  
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
  #5  
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
  #6  
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
  #7  
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
  #8  
Old 06-04-2015, 02:53 AM
Grimjaw Grimjaw is offline
Planar Protector

Grimjaw's Avatar

Join Date: Jun 2014
Location: https://discord.gg/ngqrDtyVe6
Posts: 1,089
Default

^ you can add the line DISKPART CLEAN ALL to free up even more space.
__________________
Reply With Quote
  #9  
Old 06-30-2015, 08:18 AM
FatMagic FatMagic is offline
Sarnak

FatMagic's Avatar

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

Quote:
Originally Posted by Grimjaw [You must be logged in to view images. Log in or Register.]
^ you can add the line DISKPART CLEAN ALL to free up even more space.
[You must be logged in to view images. Log in or Register.]
__________________
Reply With Quote
  #10  
Old 07-27-2015, 07:16 AM
eqgmrdbz eqgmrdbz is offline
Kobold

eqgmrdbz's Avatar

Join Date: Jul 2013
Location: San Antonio, TX
Posts: 160
Default

Confirming that the batch file is working, you need to run it outside the Everquest directory, and make sure to edit the batch file by adding /d before the location of your install. From 4 gigs down to 1.4 sweet, thanks OP and all the peeps in the forums especially mr.p for his solution to the problem.
__________________
"The joy of nostalgia comes from whacking mobs, then running like a little girl when I'm about to die"

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 07:50 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 - 2025, Jelsoft Enterprises Ltd.