Originally posted by jamato24
Hey is there any ways I can activate this automatically through CMD with one click?
I am sooo close, I am up to the pack folder opening but nothin' starts to unzip...I'm trying to make a .bat by the way.
here is the code I have so far:
Code:
@Echo
start C:\Users\"my user name">cd desktop/pack
start C:\Users\"my user name"\Desktop\pack>offzip.exe -a -z -15 patch_mp.ff.exe ./ 0
"my user name" is my actual name I imput but for safety reason I substituted that, I open the folder pack but can't seem to decompress the files.
The reason why im doing this is cause the patch does too much, I just want this to open whatever patch I put in "pack file", then recompress it when I'm done editing it...PLEASE HELP.
No need for all that code if your using a .BAT

Just put the patch_mp.ff in the same directory and use this code
@echo off
echo My 1337 Conversion Tool
pause
offzip.exe -a -z -15 patch_mp.ff.exe ./ 0
echo.
echo Patch uzipped successfully !
echo.
echo Cick any button to close.
pause