some characters are speaking German
#1 -thomasjt-
Posted 29 September 2010 - 12:34 AM
I've tried using the forum search which isn't working and I've googled for this but to no avail. Some of the characters at the beginning of my new BG1 game randomly speak German, while the rest speak English as they should. An example of this is Breager in the starting inn. Is this a common problem?
Cheers,
Tom
#2
Posted 29 September 2010 - 02:52 AM
If you've used the BWS/BWP to install your megamod, you might have an Expert install on your hands if you didn't choose German as a language at the start ... remember, Expert = omgwtfpwnz0rs borkage
"I am the smiley addict, yellow and round, this is my grin when I'm usually around .
When there's trouble brewing, see me post, cuz it's usually a wall o' yellow and your eyes are toast!!!"
BWP GUIDE - BWP FIXES - impFAQ - NPC LIST - KIT LIST - AREA LIST
GitHub Links : BWP Fixpack | Lolfixer | BWP Trimpack | RezMod
#3 -thomasjt-
Posted 29 September 2010 - 03:02 AM
If there's a file called WeiDU.log in your BGII-SoA folder, it'd be great if you could paste its contents (or attach it) here
If you've used the BWS/BWP to install your megamod, you might have an Expert install on your hands if you didn't choose German as a language at the start ... remember, Expert = omgwtfpwnz0rs borkage
Thanks for the quick and friendly reply I'll attach that file now, but I did just do a standard install so hopefully I should have avoided the worst of the borkage
Here's the contents of WeiDU.log http://justpaste.it/4tg
#4
Posted 29 September 2010 - 03:20 AM
That report is just for the Breager NPC mod (which is currently german-only )
Edited by Lollorian, 29 September 2010 - 03:20 AM.
"I am the smiley addict, yellow and round, this is my grin when I'm usually around .
When there's trouble brewing, see me post, cuz it's usually a wall o' yellow and your eyes are toast!!!"
BWP GUIDE - BWP FIXES - impFAQ - NPC LIST - KIT LIST - AREA LIST
GitHub Links : BWP Fixpack | Lolfixer | BWP Trimpack | RezMod
#5
Posted 29 September 2010 - 03:26 AM
My Own: Ajantis BG1 Expansion Modification -- Sir Ajantis for BGII -- Ajantis Portrait Pack -- Another fine Hell -- Brage's Redemption -- BGQE at Gibberlings 3 / BGQE at Kerzenburgforum -- Brandock the Mage -- Endless BG1 -- Grey The Dog NPC -- Imoen 4 Ever -- Imoen Is Stone -- Jastey's SoD TweakPack -- Road to Discovery (SoD) -- Solaufein's Rescue - jastey's Solaufein NPC Mod -- The Boareskyr Bridge Scene (SoD)
Contributions: Adalon's Blood (Silberdrachenblutmod) -- Alternatives -- Ascalon's Questpack -- Ascalon's Breagar NPC -- Balduran's Seatower -- BG1 NPC Project -- BG1 Romantic Encounters -- Corthala Romantique -- Edwin Romance -- Fading Promises -- Gavin BG1 --Hidden Adventures -- Imoen Can Die -- Keldorn Romance (berelinde's) -- Lure of Sirine's Call -- NTotSC -- Romantic Encounters (BGII)
Avatar by Rabain
#6
Posted 29 September 2010 - 03:33 AM
I can see Ascalon's questpack and many german/spanish-only NPCs being installed in an english-only game (Yoshi dialogue comes from Hanna NPC)
"I am the smiley addict, yellow and round, this is my grin when I'm usually around .
When there's trouble brewing, see me post, cuz it's usually a wall o' yellow and your eyes are toast!!!"
BWP GUIDE - BWP FIXES - impFAQ - NPC LIST - KIT LIST - AREA LIST
GitHub Links : BWP Fixpack | Lolfixer | BWP Trimpack | RezMod
#7
Posted 29 September 2010 - 07:02 AM
If "%TEST%" == "F" (
echo Foreign language: Other
If Exist BWP_Language exit /b 0
If Exist BWP_English (If not Exit BWP_Expert) exit /b 0
exit /b 1
)
like it was done before or also ask English uses what they want and create the BWP_Language for English only games like it's done for other languages as well.
The last one clearly makes more sense to me.
I must admit that I did not thought about that missing translation for English only and Leonoard might not have thought about it, either.
Edited by dabus, 29 September 2010 - 07:43 AM.
#8 -thomasjt-
Posted 29 September 2010 - 06:21 PM
The BiG World Installpack\Install.bat checks for the BWP_Language-file to determine if foreign mods should be removed. You either need to add a new line 53 ff
If "%TEST%" == "F" (
echo Foreign language: Other
If Exist BWP_Language exit /b 0
If Exist BWP_English (If not Exit BWP_Expert) exit /b 0
exit /b 1
)
like it was done before or also ask English uses what they want and create the BWP_Language for English only games like it's done for other languages as well.
The last one clearly makes more sense to me.
I must admit that I did not thought about that missing translation for English only and Leonoard might not have thought about it, either.
Sweet, it seems I've discovered a bug In the meantime I guess I should just play through randomly clicking through German dialogue?
#9
Posted 30 September 2010 - 01:10 AM
It's just a piece of text is missing which tells you to type an L after the version you selected.
So T = Tactics and TL = Tactics English only.
That's already working for all translations, the sentence that tells you that is just not a part of the text displayed for English users...
If you don't want that text, you have to install with the pending L after the version-string.
#10
Posted 30 September 2010 - 01:42 AM
"I am the smiley addict, yellow and round, this is my grin when I'm usually around .
When there's trouble brewing, see me post, cuz it's usually a wall o' yellow and your eyes are toast!!!"
BWP GUIDE - BWP FIXES - impFAQ - NPC LIST - KIT LIST - AREA LIST
GitHub Links : BWP Fixpack | Lolfixer | BWP Trimpack | RezMod
#11
Posted 30 September 2010 - 02:43 AM
While installing, the tra.txt will be checked for the language-type (N=native, F=Foreign, maybe E=English).
The mods will be not be installed if it is declared as foreign and the BWP_language exits.
Very easy to configure and can be extended if needed.
#12
Posted 02 October 2010 - 11:38 AM
I accidentally made a typo and was not clearly enough about the line.
If Exist BWP_English (If not Exit BWP_Expert) exit /b 0is wrong. If you want foreign languages in Expert-versions only, the code should be
If Exist BWP_English If not Exist BWP_Expert exit /b 0If you don't want foreign languages at all
If Exist BWP_English exit /b 0
I've already informed Leonardo about this.