|
|
|
|
|
|
Re: Play 1.13 Unfinished Business and MODs[message #358182 is a reply to message #351967]
|
Thu, 03 October 2019 15:51 
|
|
defloe |
Messages:1
Registered:September 2019 |
|
|
hi everyone, i have problems running JA2 1.13 UB using latest SCI from Depri repository (8684 & 8694 release). the game start normally with few red text error from ini files. up to campaign settings where i can only choose between 2 difficulties (novice & experienced). After i click start campaign, the game goes black screen with music playing until it stops.
is there anyone else who had same problems with me? i'm using fresh install of GOG JA2 gold version and latest SCI. no other mods used.
thanks before.
Report message to a moderator
|
Civilian
|
|
|
|
Re: Play 1.13 Unfinished Business and MODs[message #359489 is a reply to message #359488]
|
Sat, 11 April 2020 22:41 
|
|
Deleted. |
 |
Messages:2648
Registered:December 2012 Location: Russian Federation |
|
|
Check the changes made in GameInit.lua in 7609/unstable, you probably need to replace
if ( newDIFFICULTY_LEVEL == DIF_LEVEL_EASY ) then
iStartingCash = GetStartingCashNovice()
elseif ( newDIFFICULTY_LEVEL == DIF_LEVEL_MEDIUM ) then
iStartingCash = GetStartingCashExperienced()
elseif ( newDIFFICULTY_LEVEL == DIF_LEVEL_HARD ) then
iStartingCash = GetStartingCashExpert()
elseif ( newDIFFICULTY_LEVEL == DIF_LEVEL_INSANE ) then
iStartingCash = GetStartingCashInsane()
end
AddTransactionToPlayersBook( Fincances.ANONYMOUS_DEPOSIT, 0, GetWorldTotalMin(), iStartingCash )
with
-- Get starting cash from DifficultySettings.xml
SetStartingCashDifLevel(newDIFFICULTY_LEVEL)
Or just use stable 7609 as it's much closer to the mod version you are trying to use (I think UB support was added soon after stable 4870, so anything after that is not supported in mod files).
"TableData\Inventory\MercStartingGear25.xml" is the right path, since in base game MercStartingGear.xml is also stored in TableData\Inventory folder and not in Items folder.
[Updated on: Sat, 11 April 2020 22:41]
Left this community.Report message to a moderator
|
|
|
|
|
|