I guess the the BiG World Setup\Includes\09_Install.au3 also is an old version.
Line 244 onward looks like this:
$Setup[0]=StringMid($Array[$a], 1, 3); LineType
$Setup[2]=StringStripWS(StringMid($Array[$a], 5, 25), 3); SetupName
$Setup[3]=StringStripWS(StringMid($Array[$a], 30, 9), 3); CompNumber
$Setup[6]=StringStripWS(StringMid($Array[$a], 49, 49), 3); $CompReq
The old is a bit different:
$Setup[0]=StringMid($Array[$a], 1, 3); LineType
$Setup[2]=StringStripWS(StringMid($Array[$a], 5, 25), 3); SetupName
$Setup[3]=StringStripWS(StringMid($Array[$a], 30, 9), 3); CompNumber
$Setup[4]=StringMid($Array[$a], 41, 4); CompType
$Setup[6]=StringStripWS(StringMid($Array[$a], 45, 49), 3); $CompReq
I bet you have the old version since you had the issue with the setup.ini and I had exactly the same experience before fixing the error and releasing fixed package. (Notice that the components requirements are read from a different position, which is the cause for this behavior.)
You can replace or edit the file, replace the [Order]-section in your BiG World Setup\Config\Setup.ini so it looks like this:
[Order]
Au3Detect=1
Au3BuildGui=1
Au3Select=0
Au3GetVal=1
Au3CleanInst=0
Au3PrepInst=0
Au3Net=0
Au3NetTest=0
Au3NetFix=0
Au3Extract=0
Au3ExFix=0
Au3ExTest=0
Au3RunFix=0
Au3Install=1
Au3Exit=1
Also make sure you've got a Start=1 underneath the [Options]-section and run the BWS to resume the install. This will start the install at the beginning (installing
weidu-setups) again.
Edited by dabus, 10 November 2010 - 12:17 AM.