Quote:
Originally Posted by sachin_rocks
thanks solved it now i am getting another error while installing the game .... isdone.dll 'it is not found in any file specified for ISARCEXTRACT. how to solve this ? i have the game files compressed in .bin formats ... sorry i am new to this area hence asking
|
need to specify file names in main(skin).iss file ( look for this section ), change the file names to match what you have used.
Code:
if not ISArcExtract ( 0, 0, ExpandConstant('{src}\Setup-a.bin'), ExpandConstant('{app}'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}'), False) then break;
if not ISArcExtract ( 0, 0, ExpandConstant('{src}\Setup-c.bin'), ExpandConstant('{app}'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}'), False) then break;
if not ShowChangeDiskWindow ('Insert Disk #2', ExpandConstant('{src}'),'Setup-b.bin') then break;
if not ISArcExtract ( 0, 0, ExpandConstant('{src}\Setup-b.bin'), ExpandConstant('{app}'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}'), False) then break;
if ISExec(0, 0, 0, ExpandConstant('{tmp}\sfk.exe'),'join '+'"'+ExpandConstant('{app}\Setup-1.bin.part1')+'"' ,ExpandConstant('{tmp}'),'Setup-1.bin',false) then begin
if not ISArcExtract ( 0, 0, ExpandConstant('{app}\Setup-1.bin'), ExpandConstant('{app}'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}'), False) then break;
DeleteFile(ExpandConstant('{app}\Setup-1.bin.part1'))
DeleteFile(ExpandConstant('{app}\Setup-1.bin.part2'))
DeleteFile(ExpandConstant('{app}\Setup-1.bin'))
end else break;