View Single Post
  #20  
Old 15-12-2018, 00:41
Jiva newstone's Avatar
Jiva newstone Jiva newstone is offline
Registered User
 
Join Date: Nov 2016
Location: India
Posts: 190
Thanks: 227
Thanked 412 Times in 96 Posts
Jiva newstone is on a distinguished road
Quote:
Originally Posted by sirshi007 View Post
however, thx for help.
the installer started extracting.
but it says "It is not found any file specified for ISArcExtract"
plzz help!!
You have to configure Archives.ini
Change the filename and also enter progress value
example
if you want to extract data1.bin and data2.bin then u have to configure like this
if not ArcExtract(60,'data1.bin') then break;
if not ArcExtract(40,'data2.bin') then break;


so totally ArcExtract is 100
so i just set 60 for data1.bin and 40 for data2.bin so till 60 percent it extract data1.bin and after 60 its extract data2.bin till the end

if u want to extrcat 3 files then configure like this

if not ArcExtract(60,'data1.bin') then break;
if not ArcExtract(20,'data2.bin') then break;
if not ArcExtract(20,'data2.bin') then break;
Reply With Quote
The Following User Says Thank You to Jiva newstone For This Useful Post:
sirshi007 (15-12-2018)