So I can open it with Notepad++ but i dont now how to open the Postthis.txt from my desktop (sorry for my bad knowledge ^^ but i am from austira, which means everything is in german, i found no Postthis.txt)
However, these are the lines: (897 is the red one for orientation)
Func _Install_ModifyForGroupInstall($p_Array, $p_Debug=0)
_PrintDebug('+' & @ScriptLineNumber & ' Calling _Install_ModifyForGroupInstall')
Local $NArray[$p_Array[0]*2]
Local $n=0, $Open=0, $OldMod
Local $EndGroupInstall=StringRegExpReplace(IniRead($g_GConfDir&'\Game.ini', 'Options', 'EndGroupInstall', ''), ',|&', '|')
For $a = 1 To $p_Array[0]
If StringRegExp($p_Array[$a], '(?i)\A(DWN|ANN|GRP)') Then ContinueLoop
$Split=StringSplit($p_Array[$a], ';')
$Mod=$Split[2]; SetupName
$Comp=''
$n+=1
If StringRegExp($p_Array[$a], '(?i)\ACMD') Then
If $Open Then
$NArray[$n]='GRP;Stop'
$Open=0
$n+=1
EndIf
$NArray[$n]=$p_Array[$a]
ContinueLoop
ElseIf $Mod <> $OldMod And $Open Then
$NArray[$n]='GRP;Stop'
$n+=1
$Open=0
ElseIf StringRegExp($EndGroupInstall, '(?i)(\A|\x7c)'&$Mod&'\x28') Then; is mod effected?
$Comp=$Split[3]; CompNumber
If StringRegExp($Mod&$Comp, '(?i)'&$EndGroupInstall) Then
$NArray[$n]='GRP;Stop'
$n+=1
$Open=0
EndIf
EndIf
If StringRegExp($p_Array[$a], '(?i)\ASUB') Then; look if subs are going to be installed because using pipes will break stuff
If $Comp = '' Then $Comp=$Split[3]; CompNumber
If _Install_BuildSubcmd($Mod, $Comp) = 1 Then; if SUB is installed, stop and continue
If $Open Then
$NArray[$n]='GRP;Stop'
$Open=0
$n+=1
EndIf
EndIf
$NArray[$n]=$p_Array[$a]
While StringRegExp($p_Array[$a+1], ';'&$Comp&'\x3f')
$a+=1
$n+=1
$NArray[$n]=$p_Array[$a]
WEnd
$OldMod=$Mod
ContinueLoop
EndIf
$Split=StringSplit($p_Array[$a+1], ';')
If $Open = 0 And $Mod=$Split[2] Then ; Only open a group if setup lasts longer then 2 components
$NArray[$n]='GRP;Start'
$n+=1
$Open=1
EndIf
$NArray[$n]=$p_Array[$a]
$OldMod=$Mod
Next
$NArray[0] = $n
$Open=0
ReDim $NArray[$n+1]
If $p_Debug = 1 Then
For $a = 1 To $NArray[0]
If StringRegExp($NArray[$a], '\AGRP;Start') Then
ConsoleWrite('+')
$Open=1
ElseIf StringRegExp($NArray[$a], '\AGRP;Stop') Then
ConsoleWrite('!')
$Open=0
ElseIf $Open =1 Then
ConsoleWrite('-')
Else
ConsoleWrite(' ')
EndIf
ConsoleWrite($NArray[$a] & @CRLF)
Next
EndIf
Return $NArray
EndFunc ;==>_Install_ModifyForGroupInstall