Project 1999

Go Back   Project 1999 > General Community > Technical Discussion

Reply
 
Thread Tools Display Modes
  #1  
Old 05-15-2013, 06:33 AM
Khaleesi Khaleesi is offline
Sarnak


Join Date: Dec 2012
Posts: 221
Default

Quote:
Originally Posted by Hawala [You must be logged in to view images. Log in or Register.]
More detailed grass unfortunately has the illusion of movement, because of poor antialiasing.
Let the driver worry about that. Upscaling and/or super sampling will work in the EQClient, which will negate aliasing in motion.

You should do the further higher resolution after you finish the base models first.
Reply With Quote
  #2  
Old 05-16-2013, 01:24 PM
Phats Phats is offline
Kobold

Phats's Avatar

Join Date: Jul 2012
Posts: 115
Default

I dug this up.

This should do it, though it's probably not the cleanest method. Tests alright on my computer.

Code:
for /F "tokens=*" %P in ('dir /b /s myfile.txt') do copy /Y .\myfile.txt "%P"
If you're running it from a bat file use %%P instead of %P.
EDIT: I corrected the command to work with file paths that have spaces (notice the quotes around the last parameter). Also when running the command you'll always get this error:


Code:
The file cannot be copied onto itself.
.
Just ignore that, because it doesn't hurt anything

Here's a batch file version that I called subupdate.bat:

Code:
@echo off
if "%1"=="" GOTO End
for /F "tokens=*" %%P in ('dir /b /s %1') do copy /Y .\%1 "%%P"
:End
Then you can invoke it as such:


Code:
C:\root_dir_for_changes\subupdate.bat my_file_to_update.txt
The file cannot be copied onto itself.
        0 file(s) copied.
        1 file(s) copied.
        1 file(s) copied.
        1 file(s) copied.
For a BAT file:

Q: Where do you input the file name? For instance, what would the code look like if the file you wanted to copy/replace was named "test.xml"?

A: If you're running it from the command prompt then CD into the root directory containing the most recent "test.xml". Then run the following command:

Code:
for /F "tokens=*" %P in ('dir /b /s test.xml') do copy /Y .\test.xml "%P"
If you're running it from a bat file then the bat file should contain:
Code:
for /F "tokens=*" %%P in ('dir /b /s test.xml') do copy /Y .\test.xml "%%P"
If you're using my subupdate.bat described in my first post then CD into the root directory containing the most recent "test.xml". Then run the following command:

Code:
Code:
subupdate.bat test.xml
Last edited by Phats; 05-16-2013 at 01:57 PM..
Reply With Quote
  #3  
Old 05-16-2013, 01:26 PM
Phats Phats is offline
Kobold

Phats's Avatar

Join Date: Jul 2012
Posts: 115
Default

Bat file is the easiest to set up, let me know if you need help with that.
Reply With Quote
  #4  
Old 05-16-2013, 06:10 PM
skeletoria skeletoria is offline
Orc

skeletoria's Avatar

Join Date: Jun 2010
Posts: 45
Default

Love my dark elf classic muddy textures, but I would definitely use this. Good job guys
__________________
~~
Lylith - High Elf Cleric P99
Skelatoria - Dark Elf Necro P99
PortStar - Human Druid P99
Sinfuly - Dark Elf Rogue (MIA 2010) P99
~~
Reply With Quote
  #5  
Old 05-20-2013, 06:49 PM
Razdeline Razdeline is offline
Fire Giant


Join Date: Jan 2011
Posts: 757
Default

Any updates?
Reply With Quote
  #6  
Old 05-27-2013, 01:24 PM
Razdeline Razdeline is offline
Fire Giant


Join Date: Jan 2011
Posts: 757
Default

This still happening? Let me know, I would like to help if that helps motivate this.
Reply With Quote
  #7  
Old 05-28-2013, 02:39 PM
Pookieson Pookieson is offline
Banned


Join Date: Feb 2013
Posts: 190
Default

How does this script work exactly?
Reply With Quote
  #8  
Old 09-08-2014, 11:19 AM
Hawala Hawala is offline
Sarnak

Hawala's Avatar

Join Date: Apr 2013
Location: El Paso
Posts: 228
Default

The major problem I ran into in EQ is that the sizes of certain things are unpredictable, and certain textures are horribly stretched out.

For example the area around the tunnel uses a different texture, where the sand meets the stone.

If you'll notice in the unmodded version the pixels are enormous. That's because the area it covers is approximately 4-8 times larger than the texture provided to it. Trees are the same.

I think I'll get back onto this, if anybody else wants to help, send me a PM and we can Skype chat. I don't really play much anymore, but I really like modding and I'm currently taking a break from Skyrim mods.
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 10:55 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.