https://mega.nz/folder/w9YhiaBR#VvW35Vd ... r/Q4I1iS6Q
Jeśli mamy zrobione powyższe to wypakowujemy L2_unofficial_update_20.03.2021.7z do katalogu głównego JA2Legion2v38 i nadpisujemy pliki.
Download: https://www.mediafire.com/file/u088wuqi ... 21.7z/file
Co zawiara ta nieoficjalna aktualizacja ?
1. Dodaje brakujące średniki w 3 plikach.
2. Dodaje brakujący plik 120.BAD (skopiowany 0.BAD i nazwany 120.BAD).
3. Przywraca oryginalne statystyki najemników AIM's & MERC'S (nareszcie) !
4. Zmiania fundusze początkowe na 50k i dodatkowe losowe z przedziału: 5k do 20k.
5. Przywraca oryginalny rekonesans w L2 1.13 czyli duże czerwone znaki zapytania na mapie (NO_ENEMY_DETECTION_WITHOUT_RECON = FALSE)
6. Usuwa 2 sek. opóźnienie ze wskazówkami podczas ładowania gry w L2 1.13 (USE_LOADSCREENHINTS = FALSE)
7. Wyłączono bonusy dla elitarnych przeciwników (w końcu) // Ja2_Options.INI : [Tactical Difficulty Settings]
8. dodano plik AMBIENT\232.bad
9. dodano plik Readme (translated Czytaj_to.txt) do JA2Legion2v38\dokumenty\addons\
Odnośnie fabuły:
Cytuj:
"Terrorist called Karlos kidnaps daughter of millionaire Oswald (who lives in Torawia) and demands a huge ransom for her. He gives Oswald 30 days to pay the demand, otherwise he will kill his child. The millionaire, knowing that he wouldn't get the money in time, contacts with an old acquaintance - Murray Ebstern. Friend, a former employee of A.I.M., recommends Oswald to turn to this organisation.
Because of some financial trouble, Oswald hires only the cheapest mercs and sends them to Osarwia, where Karlos escaped with the kidnapped daughter of millionaire. The squad starts a search, yet having no idea that they're going straight into a bigger deal, than they may think... "
Because of some financial trouble, Oswald hires only the cheapest mercs and sends them to Osarwia, where Karlos escaped with the kidnapped daughter of millionaire. The squad starts a search, yet having no idea that they're going straight into a bigger deal, than they may think... "
From the plot we're finding out that looks like he don't care about his daughter if he would like to hire only the cheapest mercs. This mod is challenging, so to make it more serious (cheapest mercs vs enemy elites is not serious imho) and to avoid a lot of saves-loads I've changed starting money to at last 50k for every difficulty level and changed additional random money from 5k to 20k.
Below was presented original -- Random money & -- Starting money lua script (line 1196 from the file JA2Legion2v38\Data-Legion2\Data-Files\scripts\GameInit.lua).
Kod:
-- Losuj dodatkowe fundusze. Zależy od wybrania stopnia trudności gry.
i = math.random(1, 4)
if (i == 1) then
KASA = 2*1500
elseif (i == 2) then
KASA = 2*2000
elseif (i == 3) then
KASA = 2*2500
elseif (i == 4) then
KASA = 2*3000
end
-- Ustaw ilość funduszy. Zależy od wybrania stopnia trudności gry.
if ( newDIFFICULTY_LEVEL == DIF_LEVEL_EASY ) then
iStartingCash = 45000 + KASA
elseif ( newDIFFICULTY_LEVEL == DIF_LEVEL_MEDIUM ) then
iStartingCash = 35000 + KASA
elseif ( newDIFFICULTY_LEVEL == DIF_LEVEL_HARD ) then
iStartingCash = 25000 + KASA
elseif ( newDIFFICULTY_LEVEL == DIF_LEVEL_INSANE ) then
iStartingCash = 15000 + KASA
end
i = math.random(1, 4)
if (i == 1) then
KASA = 2*1500
elseif (i == 2) then
KASA = 2*2000
elseif (i == 3) then
KASA = 2*2500
elseif (i == 4) then
KASA = 2*3000
end
-- Ustaw ilość funduszy. Zależy od wybrania stopnia trudności gry.
if ( newDIFFICULTY_LEVEL == DIF_LEVEL_EASY ) then
iStartingCash = 45000 + KASA
elseif ( newDIFFICULTY_LEVEL == DIF_LEVEL_MEDIUM ) then
iStartingCash = 35000 + KASA
elseif ( newDIFFICULTY_LEVEL == DIF_LEVEL_HARD ) then
iStartingCash = 25000 + KASA
elseif ( newDIFFICULTY_LEVEL == DIF_LEVEL_INSANE ) then
iStartingCash = 15000 + KASA
end
BTW if someone want to play with new Music then you can find it in JA2Legion2v38\dokumenty\addons. Czytaj_to.txt is a readme file.
Cytuj:
Installation
1. Place the selected plug-in and the ini installation file in the "Data-Legion2 \ Addons \" directory
2. Run "Starter Legion 2.exe" and select "Tools" then "Install add-on".
1. Place the selected plug-in and the ini installation file in the "Data-Legion2 \ Addons \" directory
2. Run "Starter Legion 2.exe" and select "Tools" then "Install add-on".
After that if you want to play with Data-BigMaps + Music or Data-NewQuests + Music you should add "CONFIG_MOD2=Data-Legion2\Addons\Data-Music" under [AddonX] and add to the name " + Music". This is my Starter Legion 2 Addons.ini:
Kod:
[Addon1]
Name=Data-BigMaps + Music
CONFIG_MOD1=Data-Legion2\Addons\Data-BigMaps
CONFIG_MOD2=Data-Legion2\Addons\Data-Music
PROFIL_MOD=Profiles\UserProfile_Legion2_BigMaps
[Addon2]
Name=Data-NewQuests + Music
CONFIG_MOD1=Data-Legion2\Addons\Data-NewQuests\NewQuests
CONFIG_MOD2=Data-Legion2\Addons\Data-Music
PROFIL_MOD=Profiles\UserProfile_Legion2_NewQuests
DIR=Data-Legion2\Addons\Data-NewQuests
[Addon3]
Name=Data-NewQuests + Data-BigMaps + Music
CONFIG_MOD1=Data-Legion2\Addons\Data-BigMaps
CONFIG_MOD2=Data-Legion2\Addons\Data-NewQuests\NewQuests
CONFIG_MOD3=Data-Legion2\Addons\Data-Music
DIR=Data-Legion2\Addons\Data-NewQuests
DEFAULT_EXE=
DEFAULT_EXE_EDITOR=
PROFIL_MOD=Profiles\UserProfile_Legion2_NewQuests_BigMaps
[Addon4]
Name=Music
CONFIG_MOD1=Data-Legion2\Addons\Data-Music
PROFIL_MOD=
DIR=Data-Legion2\Addons\Data-Music
Name=Data-BigMaps + Music
CONFIG_MOD1=Data-Legion2\Addons\Data-BigMaps
CONFIG_MOD2=Data-Legion2\Addons\Data-Music
PROFIL_MOD=Profiles\UserProfile_Legion2_BigMaps
[Addon2]
Name=Data-NewQuests + Music
CONFIG_MOD1=Data-Legion2\Addons\Data-NewQuests\NewQuests
CONFIG_MOD2=Data-Legion2\Addons\Data-Music
PROFIL_MOD=Profiles\UserProfile_Legion2_NewQuests
DIR=Data-Legion2\Addons\Data-NewQuests
[Addon3]
Name=Data-NewQuests + Data-BigMaps + Music
CONFIG_MOD1=Data-Legion2\Addons\Data-BigMaps
CONFIG_MOD2=Data-Legion2\Addons\Data-NewQuests\NewQuests
CONFIG_MOD3=Data-Legion2\Addons\Data-Music
DIR=Data-Legion2\Addons\Data-NewQuests
DEFAULT_EXE=
DEFAULT_EXE_EDITOR=
PROFIL_MOD=Profiles\UserProfile_Legion2_NewQuests_BigMaps
[Addon4]
Name=Music
CONFIG_MOD1=Data-Legion2\Addons\Data-Music
PROFIL_MOD=
DIR=Data-Legion2\Addons\Data-Music
I'm wondering where is my original:
Kod:
[Addon0]
Name=None
CONFIG_MOD1=None
PROFIL_MOD=Profiles
Name=None
CONFIG_MOD1=None
PROFIL_MOD=Profiles
Anyway Starter Legion 2.exe showing it in "Mods selection" somehow.
Metariva Mod Main Theme: https://www.mediafire.com/file/ee015f2o ... 1.WAV/file
I really like it, so I replace default one in: JA2Legion2v38\Data-Legion2\Addons\Data-Music\Music