is there any program that throws evrything out of your main folder exept the entdefs and pak files (and that don't throws away the dutch pak files!0
i would be easy when you are compliing so you don't have to take everything out and put it back in manually
cleaning main folder
Moderator: Moderators
-
dr shenker
- Sergeant
- Posts: 65
- Joined: Mon Jan 26, 2004 7:23 pm
- Contact:
-
dr shenker
- Sergeant
- Posts: 65
- Joined: Mon Jan 26, 2004 7:23 pm
- Contact:
-
Bjarne BZR
- Site Admin
- Posts: 3298
- Joined: Wed Feb 05, 2003 2:04 pm
- Location: Sweden
- Contact:
-
panTera
- Brigadier General
- Posts: 573
- Joined: Wed Jan 29, 2003 11:46 pm
- Location: The Netherlands
- Contact:
allmighty batchfile
If you don't like doing it manually just write a batchfile. The one I use now moves all user* pk3's and some other custom pk3's to a temp folder, then starts mohradiant and then pauses...
When later on I exit mohradiant, all I have to do is 'press any key to continue...' and the batchfile continues where it left of and moves the pk3's back to the main folder. All in one double click.
How to make the batchfile:
Start Notepad and copy and paste the example, change paths and names to fit your needs, it's best not to use capitals. When you add new pk3's to your main dir remember to update the batchfile (rightclick:edit) and add those names to the list. Save as xxx.bat. Also make sure the target dir exists, so make a folder to store the pk3's in. Mine is "custmaps".
example batch
-----------------
cd\
cd c:\progra~1\eagame~1\mohaa\main
move user*.pk3 c:\progra~1\eagame~1\mohaa\main\custmaps
move custommap1.pk3 c:\progra~1\eagame~1\mohaa\main\custmaps
move custommap2.pk3 c:\progra~1\eagame~1\mohaa\main\custmaps
move etc. " "
pause
cd c:\progra~1\eagame~1\mohaa\mohaat~1
start c:\progra~1\eagame~1\mohaa\mohaat~1\mohradiant.exe
pause
cd c:\progra~1\eagame~1\mohaa\main\custmaps
move user*.pk3 c:\progra~1\eagame~1\mohaa\main
move custommap1.pk3 c:\progra~1\eagame~1\mohaa\main
move custommap2.pk3 c:\progra~1\eagame~1\mohaa\main
move etc. " "
exit
-----------------
(explanation:)
cd\
cd c:\progra~1\eagame~1\mohaa\main
-The batchfile starts with changeing directory to the root directory, in this case "main". Remember to use Dos names, i.e. names of more than 6 characters only write the first 6 and then need a "~1" at the end.
move user*.pk3 c:\progra~1\eagame~1\mohaa\main\custmaps
-The command "move" is short for cut and paste. The "user*.pk3" moves every pk3 file which name starts with "user". Usage = move [files to be moved] [target dir]
pause.
-The first pause is optional, pauses the execution and waits for a keystroke.
cd c:\progra~1\eagame~1\mohaa\mohaat~1
start c:\progra~1\eagame~1\mohaa\mohaat~1\mohradiant.exe
-Changes directory to where mohradiant is and starts the program.
pause.
-The second pause needs to be there. It pauses the execution right after the files have been moved and Radiant starts. Without pause the files will be moved back and forth and Radiant may still read them.
cd c:\progra~1\eagame~1\mohaa\main\custmaps
-Changes directory to the temp folder "custmaps".
move user*.pk3 c:\progra~1\eagame~1\mohaa\main
move custommap1.pk3 c:\progra~1\eagame~1\mohaa\main
move custommap2.pk3 c:\progra~1\eagame~1\mohaa\main
move etc. " "
-Listed files will be moved back to the "main" dir.
exit
-closes batchfile.
When later on I exit mohradiant, all I have to do is 'press any key to continue...' and the batchfile continues where it left of and moves the pk3's back to the main folder. All in one double click.
How to make the batchfile:
Start Notepad and copy and paste the example, change paths and names to fit your needs, it's best not to use capitals. When you add new pk3's to your main dir remember to update the batchfile (rightclick:edit) and add those names to the list. Save as xxx.bat. Also make sure the target dir exists, so make a folder to store the pk3's in. Mine is "custmaps".
example batch
-----------------
cd\
cd c:\progra~1\eagame~1\mohaa\main
move user*.pk3 c:\progra~1\eagame~1\mohaa\main\custmaps
move custommap1.pk3 c:\progra~1\eagame~1\mohaa\main\custmaps
move custommap2.pk3 c:\progra~1\eagame~1\mohaa\main\custmaps
move etc. " "
pause
cd c:\progra~1\eagame~1\mohaa\mohaat~1
start c:\progra~1\eagame~1\mohaa\mohaat~1\mohradiant.exe
pause
cd c:\progra~1\eagame~1\mohaa\main\custmaps
move user*.pk3 c:\progra~1\eagame~1\mohaa\main
move custommap1.pk3 c:\progra~1\eagame~1\mohaa\main
move custommap2.pk3 c:\progra~1\eagame~1\mohaa\main
move etc. " "
exit
-----------------
(explanation:)
cd\
cd c:\progra~1\eagame~1\mohaa\main
-The batchfile starts with changeing directory to the root directory, in this case "main". Remember to use Dos names, i.e. names of more than 6 characters only write the first 6 and then need a "~1" at the end.
move user*.pk3 c:\progra~1\eagame~1\mohaa\main\custmaps
-The command "move" is short for cut and paste. The "user*.pk3" moves every pk3 file which name starts with "user". Usage = move [files to be moved] [target dir]
pause.
-The first pause is optional, pauses the execution and waits for a keystroke.
cd c:\progra~1\eagame~1\mohaa\mohaat~1
start c:\progra~1\eagame~1\mohaa\mohaat~1\mohradiant.exe
-Changes directory to where mohradiant is and starts the program.
pause.
-The second pause needs to be there. It pauses the execution right after the files have been moved and Radiant starts. Without pause the files will be moved back and forth and Radiant may still read them.
cd c:\progra~1\eagame~1\mohaa\main\custmaps
-Changes directory to the temp folder "custmaps".
move user*.pk3 c:\progra~1\eagame~1\mohaa\main
move custommap1.pk3 c:\progra~1\eagame~1\mohaa\main
move custommap2.pk3 c:\progra~1\eagame~1\mohaa\main
move etc. " "
-Listed files will be moved back to the "main" dir.
exit
-closes batchfile.
- Stratocaster
- Sergeant Major
- Posts: 106
- Joined: Fri Aug 27, 2004 8:16 pm
- Location: Madrid, Spain
- Contact:
I know where you can find special mohaa-oriented pk3 manager.
It's in the download section of a spanish clan called La Compa?ia.
go to www.clanlacompania.com
then click on the "descargas" (downloads) button on the left toolbar
then on section "utilidades" (tools)
then click on the icon called "para habilitar y deshabilitar los pk3"
you will have a dialog box for the download. All process, 10 seconds.
I haven't tested the software but a friend of mine has it and says its cool.
It's in the download section of a spanish clan called La Compa?ia.
go to www.clanlacompania.com
then click on the "descargas" (downloads) button on the left toolbar
then on section "utilidades" (tools)
then click on the icon called "para habilitar y deshabilitar los pk3"
you will have a dialog box for the download. All process, 10 seconds.
I haven't tested the software but a friend of mine has it and says its cool.
http://medalofhonor.filefront.com/file/ ... ntrol;6448
Hope this helps too,
Ne0
Code: Select all
Readme File:
Medal of Honor: Allied Assault
Mod Launcher v1.0 (May 11, 2002)
Created by: Justin Ramsey
Email: jr2988@hotmail.com
Website: http://www.geocities.com/mohtanksquad
This software is property of Justin Ramsey can be distributed as long as no payment is accepted for it and this readme.txt file is included.
Please consider this software copywrited material (2002).
Instructions:
=============
Unzip the zip file from a temporary directory like c: emp
Run the install program and install where ever you like for example c:\MOHMods
Run the MohMods.exe file to initialize the program. This creates the subdirectory mods
Move up to 16 of your pk3 files into the mods directory.
Run the program. Check the boxes next the pk3s you wish to active and click Launch
Features:
=========
Activates/Deactivates pk3 files for Medal of Honor: Allied Assault
Runs MOH: AA from the program.
Known Bugs:
===========
Right now you can only have 16 pk3 files in your mod directory or an error will occur.
This program launches Medal of Honor through the Start button's run command.
For some reason the run window does not close on its own. You will have to click the
X button in the upper right hand corner of the run screen to get it to close.
This is a minor bug and does not affect gameplay or the activation of pk3 mods.
Bug Reporting:
==============
Please report any additional bugs to my email above. Please place the MOH Launcher in the
subject line of the email. Ne0
Ne0[be]
better known as El Sarcasm0!
better known as El Sarcasm0!


