Quote:
Originally Posted by Djc3100
How to use UHARC to make a repack games like black box?
____________________
Call Me Carl!
|
UHARC??? are you sure it is not
FreeArc
Example:
uharc function Inno Setup:
Code:
function InitializeSetup:boolean;
var
ResultCode: Integer;
begin
ShellExec('', ExpandConstant('{src}\Dec.bat'), '', '', SW_SHOW, ewNoWait, ResultCode);
Result:=True;
end;
Dec.bat:
Code:
@echo off
uharc x -y Data.uha
pause
SRC FILE:
UHARC.exe
Data.uha
Dec.bat