Thread: Death Stranding
View Single Post
  #24  
Old 29-10-2020, 13:31
Cesar82's Avatar
Cesar82 Cesar82 is offline
Registered User
 
Join Date: May 2011
Location: Brazil
Posts: 1,074
Thanks: 1,814
Thanked 2,304 Times in 787 Posts
Cesar82 is on a distinguished road
Quote:
Originally Posted by KaktoR View Post
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!
Attached Files
File Type: 7z CallBefore_LANG.7z (3.3 KB, 2 views)
Reply With Quote
The Following User Says Thank You to Cesar82 For This Useful Post:
Prettyboy099 (30-10-2020)