Atomm wrote:
I am getting a runtime error when I try to open with UT.
I'll look for the extractor.
I know I've used these in the past with no problems. argh!
If you can get a zip file of the mod just dump all the files into one directory. I wrote a small batch file that will copy all the files dumped in one directory, to the proper place's for the game. If you want it, let me know.
Hell I will just put it here now 😉
=======================================================
UTMOVE: Get it code below (NOTE: Download the .txt file or copy paste the text into a .txt file then rename the file from utmove.txt to utmove.bat before use)
I was sick of wonderig where some of these files from all the non .umod zips I have been downloading go. Or I am just sick of dragging and dropping all of these files to each folder so I created this batch file. Not all zips have proper paths and this is faster :-)
SETUP:
To set up the batch file just edit the first line (set game="c:\games\ut2004") of utmove.bat to point to your own UT2004 game folder.
Manually create two folders in the Ut2004 game folder; "Text" and "Screenshots" This will copy the .txt files and .jpg files into those just so they have a home. :-)
Just stick the utmove.bat file along with all the files from all of your Zips into a temp directory. When they are all there just double click on utmove.bat from that folder. The batch file will move all the files into the proper directories under your game folder you specified when you edited that first line.
================CODE=================
set game="c:\games\ut2004"
REM Edit the above to point to your game folder.
REM
REM UTMove.bat by Jace AKA Paladin
REM 02/23/2005
REM
REM
REM ****DO NOT EDIT BELOW HERE
echo Moving files...Please wait...
REM
move *.ut2 %game%\maps
move *.upl %game%\system
move *.u %game%\system
move *.int %game%\system
move *.ucl %game%\system
move *.ini %game%\system
move *.utx %game%\textures
move *.ukx %game%\animations
move *.usx %game%\staticmeshes
move *.uax %game%\sounds
move *.oog %game%\music
move *.ka %game%\karmadata
move *.uvx %game%\saves
move *.xml %game%\speech
move *.ifr %game%\forcefeedback
move *.jpg %game%\screenshots
move *.txt %game%\text
REM
echo ALL DONE!!!
pause