View Single Post
  #2  
Old 05-12-2013, 06:47
y_thelastknight's Avatar
y_thelastknight y_thelastknight is offline
Registered User
 
Join Date: Mar 2010
Location: Canada
Posts: 437
Thanks: 616
Thanked 576 Times in 213 Posts
y_thelastknight is on a distinguished road
Quote:
Originally Posted by GloverK1911 View Post
Can you help me make a setup file to extract them?
I Compression folder game with Freearc (No compression)
->Data.arc to Data.pcf
->Data.pcf to Data.srep
->Data.srep to Data.bin
That my compression game. How to extract them???
this method only support script are Blackbox Inno Setup Script and DarKBox Repack
try with it

for you archive files codes would be like this..
Code:
if not ISArcExtract    ( 0, 0, ExpandConstant('{src}\Data.bin'), ExpandConstant('{app}\'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}\'), notPCFonFLY{PCFonFLY}) then break;
if not ISSRepExtract   ( 0, 0, ExpandConstant('{app}\Data.srep'),ExpandConstant('{app}\Data.pcf'), true) then break;
if not ISPrecompExtract( 0, 0, ExpandConstant('{app}\Data.pcf'),    ExpandConstant('{app}\Data.arc'), true) then break;
if not ISArcExtract    ( 0, 0, ExpandConstant('{app}\Data.arc'), ExpandConstant('{app}\'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}\'), notPCFonFLY{PCFonFLY}) then break;
if im wrong correct it plz
sorry for my enlgish :P
Reply With Quote