::INSTRUCTIONS:
::1. Create a txt file name it how you want
::2. copy paste this text
::3. Save the file with the name you chose with .bat estension example MYFILENAME.bat
::4. This file runs ONLY from Crysis game folder \\Multiplayer folder so if you have crysis on C: drive then its \"C:\\Crysis\\Game\\Levels\\Multiplayer\"
::5. Thx to Youda
[codestart]
@echo off
echo ...Creating temporary directory Levels\\Multiplayer\\IA,PS
echo.
set pathdir=\"%~dp0\"
MD IAoutput
set IAoutputdir=%pathdir%\\IAoutput
@echo InstantAction:
TIMEOUT 2 >nul
cd IA
for /D %%d in (*.*) do (
MD %pathdir%\\Levels\\Multiplayer\\IA\\%%d
@echo packing %%d
xcopy /s/e %%d %pathdir%\\Levels\\Multiplayer\\IA\\%%d >nul
\"c:\\Program Files\\7-Zip\\7z.exe\" a -tzip %IAoutputdir%\\%%d.zip %pathdir%\\Levels >nul
Echo OK
RD /S /Q %pathdir%\\Levels
)
cd..
MD PSoutput
set PSoutputdir=%pathdir%\\PSoutput
@echo PowerStruggle:
TIMEOUT 2 >nul
cd %pathdir%/PS
for /D %%d in (*.*) do (
MD %pathdir%\\Levels\\Multiplayer\\PS\\%%d
@echo packing %%d
xcopy /s/e %%d %pathdir%\\Levels\\Multiplayer\\PS\\%%d >nul
\"c:\\Program Files\\7-Zip\\7z.exe\" a -tzip %PSoutputdir%\\%%d.zip %pathdir%\\Levels >nul
Echo OK
RD /S /Q %pathdir%\\Levels
)
echo Program Finished
cd ..
pause
[codeend]
❤️ 0