It seems that you're using an outdated browser. Some things may not work as they should (or don't work at all).
We suggest you upgrade newer and better browser like: Chrome, Firefox, Internet Explorer or Opera

×
Hi,

I just bought Legend of Kyrandia Book One to use with ScummVM on my Android tablet.

I downloaded the installer and extracted it using Innounp then copied the required data files over but ScummVM only lets me choose from the German language or English Demo versions when adding the game. I tried going to the settings and changing the language to English after choosing the German version but it won't let me.

Any ideas how to add the full English version?

Thanks
This question / problem has been solved by DeMignonimage
avatar
treaclewench: ...Any ideas how to add the full English version?
The English version is in the DAT1 subfolder of the App data (DAT2 is French and DAT3 German).
Either you're using the wrong DAT folder or the game uses the wrong one due to configuration.

When installing the game, Inno Setup creates a shortcut to start it
"C:\<the actual path>\Legend of Kyrandia\ScummVM\scummvm.exe" -c "C:\Legend of Kyrandia\kyra1-cd.ini" kyra1-cd

It launches the ScummVM and hands over an ini-file (kyra1-cd.ini) and chooses the relevant section (here "kyra1-cd" which launches the English version from the DAT1 subfolder)

During the installation, the default kyra1-cd.ini (which you get with innounp) is edited by Inno Setup.

In the section [scummvm] the following line is added:
themepath=C:\<the actual path>\Legend of Kyrandia\ScummVM\

Under [kyra1-cd], the following entries are altered or added:
path=C:\<the actual path>\Legend of Kyrandia\DAT1
savepath=C:\<the actual path>\Legend of Kyrandia

[kyra1-cd-fr]
path=C:\<the actual path>\Legend of Kyrandia\DAT2
savepath=C:\<the actual path>\Legend of Kyrandia

[kyra1-cd-de]
path=C:\<the actual path>\Legend of Kyrandia\DAT3
savepath=C:\<the actual path>\Legend of Kyrandia

I don't use ScummVM under Andriod, but if you feed it with the game data of the subfolder DAT1 and set the right paths for themepath=, path= and savepath= it should work like expected.

I hope that's a bit helpful.
Ah ok, that makes sense now. Innounp didn't preserve the folders when extracting the installer, it just extracted everything to one folder so ScummVM probably got confused. It turns out I was using the wrong command with Innounp, I was using -e which extracts with no paths, -x preserves the paths.

Thanks!