View Single Post
  #4  
Old 26-07-2011, 07:35
yener90 yener90 is offline
Registered User
 
Join Date: Nov 2008
Location: Away
Posts: 810
Thanks: 93
Thanked 1,093 Times in 217 Posts
yener90 is on a distinguished road
Quote:
Originally Posted by DexterLab View Post
I'm not a programmer, but what is the difference between "ISFreeArcExtract v.4.0.iss" and "ISFreeArcExtract v.4.0 - Kopie.iss" ?
ISFreeArcExtract v.4.0 - Kopie.iss is an really old backup, corrupted.
Delete it.


Quote:
Originally Posted by DexterLab View Post
Your installer from of Sniper ghost warrior keept all the setup files in setup.zip, in the "Source_Installer" "ISFreeArcExtract v.4.0.iss" or "ISFreeArcExtract v.4.0 - Kopie.iss"is giving me some error about GUID: TGUID.
You need Inno Setup Unicode

Quote:
Originally Posted by DexterLab View Post
What is the line "GDFBinary=BINARIES\WIN32\DFGame.dll" in "Setup.ini" about ?
This file contains Game Explorer information.
Most games have this file.

Quote:
Originally Posted by DexterLab View Post
Can the background image resolution be any size ? For ex. 640x480...
if you do this, you need to edit most part of the installer.
its difficult for a non programmer.

Quote:
Originally Posted by DexterLab View Post
Where should i put the names of freearc archives ? It must be splitted it the size is over one dvd5 ?
FreeArcFiles in Setup.ini contatains this info:

Code:
{src}\Data1.cab;DestDir:{app};Disk:1|{src}\Data2.cab;DestDir:{app};Disk:2
{src}\Data1.cab = Destination of the Arc file
DestDir:{app} = Place where the arc file should be extracted.
Disk:1 = Number of the DVD where the arc file is.
| = This sign is for adding more arc file, for example:

Extract only one file in DVD:
Code:
{src}\Data1.cab;DestDir:{app};Disk:1|
Extract three different files on 3 DVDs:
Code:
{src}\Data1.cab;DestDir:{app};Disk:1|{src}\Data2.cab;DestDir:{app};Disk:2|{src}\Data3.cab;DestDir:{app};Disk:3
Extract one file on DVD1 and two files on DVD2:
Code:
{src}\Data1.cab;DestDir:{app};Disk:1|{src}\Data2.cab;DestDir:{app};Disk:2|{src}\Data3.cab;DestDir:{app};Disk:2
Reply With Quote