Quote:
Originally Posted by KaktoR
There is a critical error in your bat file
Code:
if "%INPUT%" EQU 0 goto
The "0" is in every language.
If I want to select French [1], then every language which comes after French will be moved to backup folder (including french too). In this case only english language will be kept in game folder.
Edit: No matter what language you select, all languages go to backup folder.
|
I didn't even notice....
P.S: The idea is to go through the entire bat file from top to bottom and when it arrives in the selected language it will jump to the next one.
You must remove the quotes in
"!INPUT!
"
Also missing the
goto word before EndLang (if %INPUT% EQU 11
goto EndLang)
I forgot to rename the number before goto.
The first value is correct (With value 0)
The next ones should be changed to 1,2, 3,...11
Code:
:ENGLISH_Lang
if "%INPUT%" EQU 0 goto FRENCH_Lang
Sorry, I was probably sleepy!


If you have time, test it with the attachment file!