Project 1999

Go Back   Project 1999 > General Community > Technical Discussion

Reply
 
Thread Tools Display Modes
  #121  
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
  #122  
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
  #123  
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
  #124  
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
  #125  
Old 09-02-2015, 04:53 AM
jcr4990 jcr4990 is offline
Banned


Join Date: Aug 2013
Posts: 397
Default

Can I get confirmation that this doesn't remove any files needed for Velious zones/textures or anything like that? Not sure if its been updated post-Velious or not. Last change log date I see is 03/09/2014. Trying to cut down my P99 folder to try out a Ramdisk.
Last edited by jcr4990; 09-02-2015 at 04:59 AM..
Reply With Quote
  #126  
Old 09-02-2015, 08:40 AM
FatMagic FatMagic is offline
Sarnak

FatMagic's Avatar

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

Hi JCR - My script keeps all Velious files. It has since I created this script! (in anticipation of Velious being released).

Cheers!
__________________
Reply With Quote
  #127  
Old 12-22-2016, 09:47 AM
gildor gildor is offline
Fire Giant

gildor's Avatar

Join Date: Aug 2014
Posts: 541
Default

Does the manual work also include everything needed for velious?

Thanks
Reply With Quote
  #128  
Old 12-22-2016, 10:40 AM
FatMagic FatMagic is offline
Sarnak

FatMagic's Avatar

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

Yes, it should include everything for Velious (unless the P99 staff has added or kept additional zones that I'm not aware of).
__________________
Reply With Quote
  #129  
Old 01-02-2017, 11:19 AM
brknglss brknglss is offline
Aviak


Join Date: Jul 2016
Posts: 86
Default

Maybe someone can provide some insight:

I'm trying to get this to work, but I'm on a mac running eq through wineskin.

Since my actual path is

macintoshHD>users>me>desktop>eq>contents>resources >drive_c>Program Files>Sony<EverQuest

I've dropped the .bat file into drive_c

Now I open up my terminal, navigate to the drive_c and try ./eqlite.bat and I'm stuck

It won't copy everything as it's not recognizing the path specified in the .bat file which looks like this:

cd\
set eqlite_dir=c:\EQLite
mkdir "%eqlite_dir%"
cd drive_c:\Program Files\Sony\EverQuest

I've also tried

cd\
set eqlite_dir=c:\EQLite
mkdir "%eqlite_dir%"
cd drive_c\Program Files\Sony\EverQuest

cd\
set eqlite_dir=c:\EQLite
mkdir "%eqlite_dir%"
cd c:\Program Files\Sony\EverQuest

with no luck, any ideas?
Reply With Quote
  #130  
Old 08-01-2017, 12:10 PM
Gamkek Gamkek is offline
Kobold

Gamkek's Avatar

Join Date: May 2010
Posts: 100
Default

Quote:
Originally Posted by brknglss [You must be logged in to view images. Log in or Register.]
Maybe someone can provide some insight:

I'm trying to get this to work, but I'm on a mac running eq through wineskin.

Since my actual path is

macintoshHD>users>me>desktop>eq>contents>resources >drive_c>Program Files>Sony<EverQuest

I've dropped the .bat file into drive_c

Now I open up my terminal, navigate to the drive_c and try ./eqlite.bat and I'm stuck

It won't copy everything as it's not recognizing the path specified in the .bat file which looks like this:

cd\
set eqlite_dir=c:\EQLite
mkdir "%eqlite_dir%"
cd drive_c:\Program Files\Sony\EverQuest

I've also tried

cd\
set eqlite_dir=c:\EQLite
mkdir "%eqlite_dir%"
cd drive_c\Program Files\Sony\EverQuest

cd\
set eqlite_dir=c:\EQLite
mkdir "%eqlite_dir%"
cd c:\Program Files\Sony\EverQuest

with no luck, any ideas?
You're running this from within Wineskin, right?
If you're at a CLI in Wineskin, and you're at the root folder of the Windows installation, what do you get back when you type 'cd' and press enter?

Whatever it's returning is what your path format should look like in the batch script. Running scripts is all about system and/or user context.

So if you get back this for the root of C: in Windows:

Code:
Some_Drive:\
...then your script should look like this:

Code:
cd\
set eqlite_dir=Some_Drive:\EQLite
mkdir "%eqlite_dir%"
cd Some_Drive:\Program Files\Sony\EverQuest
Note that you need to update the path to the EQ program files directory, as well as the path in the eqlite_dir variable as well.
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 11:45 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 - 2024, Jelsoft Enterprises Ltd.