Go Back   FileForums > Game Backup > PC Games > PC Games - CD/DVD Conversions > Conversion Tutorials
Register FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 30-07-2017, 08:36
Gupta Gupta is offline
Banned
 
Join Date: Aug 2016
Location: https://t.me/pump_upp
Posts: 399
Thanks: 139
Thanked 715 Times in 231 Posts
Gupta is on a distinguished road
Send a message via ICQ to Gupta Send a message via AIM to Gupta Send a message via Yahoo to Gupta
update Available:
  • Can Edit Ini on the installation
  • Music list is back!
  • can play any number of music files!
  • many changes in Compiler.
  • new DebugMode, if Enabled:
    Code:
    • Setup.ini is directly read from {src}, so that you don't have to recompile with every change in Setup.ini
    • if started with cmdline "/InstallOnly" - then no Uninstall will run even if already installed directly autorun will run

Editing Ini:
[Tasks]
EditIni1={src}\Codex.ini;Section:Settings;Key:Lang uage;Value:czech;Lang:czech
EditIni2={src}\Codex.ini;Section:Settings;Key:Lang uage;Value:english;Lang:englishUS
EditIni3={src}\Codex.ini;Section:Settings;Key:Lang uage;Value:Default

multiple languages can be separated by ','
EditIni2={src}\Codex.ini;Section:Settings;Key:Lang uage;Value:english;Lang:englishUS,englishUK

above tasks will be performed at ssPostInstall

Music List

Can Change Property From sections - "MusicList" and "AMusicList" of Setup.ini
newciu.PNG
newciu2.PNG

Last edited by Grumpy; 31-07-2017 at 18:15.
Reply With Quote
The Following 7 Users Say Thank You to Gupta For This Useful Post:
arkantos7 (30-07-2017), KaktoR (30-07-2017), mausschieber (30-07-2017), omdj (30-07-2017), sajmon83 (31-07-2017), Simorq (19-12-2017), Titeuf (30-07-2017)
Sponsored Links
  #2  
Old 15-09-2017, 13:49
gatosky1620's Avatar
gatosky1620 gatosky1620 is offline
Registered User
 
Join Date: Oct 2011
Location: Perú
Posts: 287
Thanks: 13
Thanked 966 Times in 131 Posts
gatosky1620 is on a distinguished road
Quote:
Originally Posted by PrinceGupta2000 View Post
update Available:
  • Can Edit Ini on the installation
  • Music list is back!
  • can play any number of music files!
  • many changes in Compiler.
  • new DebugMode, if Enabled:
    Code:
    • Setup.ini is directly read from {src}, so that you don't have to recompile with every change in Setup.ini
    • if started with cmdline "/InstallOnly" - then no Uninstall will run even if already installed directly autorun will run

Editing Ini:
[Tasks]
EditIni1={src}\Codex.ini;Section:Settings;Key:Lang uage;Value:czech;Lang:czech
EditIni2={src}\Codex.ini;Section:Settings;Key:Lang uage;Value:english;Lang:englishUS
EditIni3={src}\Codex.ini;Section:Settings;Key:Lang uage;Valueefault

multiple languages can be separated by ','
EditIni2={src}\Codex.ini;Section:Settings;Key:Lang uage;Value:english;Lang:englishUS,englishUK

above tasks will be performed at ssPostInstall

Music List

Can Change Property From sections - "MusicList" and "AMusicList" of Setup.ini
Attachment 18988
Attachment 18990
I SET THIS:

Code:
EditIni1={app}\Bin32\steam_api.ini;Section:Settings;Key:Language;Value:english;Lang:englishUS
EditIni2={app}\Bin32\steam_api.ini;Section:Settings;Key:Language;Value:spanish;Lang:spanishES
EditIni3={app}\Bin32\steam_api.ini;Section:Settings;Key:Language;Value:german;Lang:german
EditIni4={app}\Bin32\steam_api.ini;Section:Settings;Key:Language;Value:french;Lang:french
EditIni5={app}\Bin32\steam_api.ini;Section:Settings;Key:Language;Value:italian;Lang:italian
EditIni6={app}\Bin32\steam_api.ini;Section:Settings;Key:Language;Value:polish;Lang:polish
EditIni7={app}\Bin32\steam_api.ini;Section:Settings;Key:Language;Value:czech;Lang:czech
EditIni8={app}\Bin32\steam_api.ini;Section:Settings;Key:Language;Value:Default
why the editini alway use the last EdtiIniX, for example is i select Spanish in the autorun the language in the INI file alway czech

another thing if i add
Code:
EditIni9={app}\Bin32\steam_api.ini;Section:Settings;Key:UserName;Value:{username}
dont change the username in the INI file
Reply With Quote
  #3  
Old 25-03-2018, 01:40
vollachr's Avatar
vollachr vollachr is offline
Conversions & UCC Creator
 
Join Date: Sep 2009
Location: Israel
Posts: 247
Thanks: 58
Thanked 536 Times in 186 Posts
vollachr is on a distinguished road
Quote:
Originally Posted by Gupta View Post
Editing Ini:
[Tasks]
EditIni1={src}\Codex.ini;Section:Settings;Key:Lang uage;Value:czech;Lang:czech
EditIni2={src}\Codex.ini;Section:Settings;Key:Lang uage;Value:english;Lang:englishUS
EditIni3={src}\Codex.ini;Section:Settings;Key:Lang uage;Value:Default

multiple languages can be separated by ','
EditIni2={src}\Codex.ini;Section:Settings;Key:Lang uage;Value:english;Lang:englishUS,englishUK

above tasks will be performed at ssPostInstall
Can't get the EditIni feature to work...

The ini I need edited is in a sub-folder in the game's installation (Binaries\Win32\), the ini file name is steam_api.ini

The section is [Settings], the key is Language, the available languages are:
English (EnglishUS)
German
French
Italian
Spanish (SpanishES)
Japanese
Korean
Russian

What I tried:

Code:
EditIni1={src}\Binaries\Win32\steam_api.ini;Section:Settings;Key:Language;Value:english;Lang:EnglishUS
EditIni2={src}\Binaries\Win32\steam_api.ini;Section:Settings;Key:Language;Value:german;Lang:German
EditIni3={src}\Binaries\Win32\steam_api.ini;Section:Settings;Key:Language;Value:french;Lang:French
EditIni4={src}\Binaries\Win32\steam_api.ini;Section:Settings;Key:Language;Value:italian;Lang:Italian
EditIni5={src}\Binaries\Win32\steam_api.ini;Section:Settings;Key:Language;Value:spanish;Lang:SpanishES
EditIni6={src}\Binaries\Win32\steam_api.ini;Section:Settings;Key:Language;Value:japanese;Lang:Japanese
EditIni7={src}\Binaries\Win32\steam_api.ini;Section:Settings;Key:Language;Value:korean;Lang:Korean
EditIni8={src}\Binaries\Win32\steam_api.ini;Section:Settings;Key:Language;Value:russian;Lang:Russian
Also tried the same with {app} instead of {src}

But nothing happens, the value in the ini file remains Language=english, no matter what.

Here's how the ini looks in the relevant section:

Code:
[Settings]

###
### 
### Enter your name here
### 
### Names with diacritic or cyrillic characters are supported but no garantee to work
###

UserName=MYNAME

###
### Select your language here if available
###

Language=english
Any help?

Thanks.
__________________

Ultimate Conversion Compressor Creator (Discontinued/Abandoned)
My Other Tools: File Splitter and Merger - Multiple Text/String Replacer (MTSR) - UCC Files & Folders Lister
Microsoft Certified Professional
Retired Conversion Creator

Last edited by vollachr; 25-03-2018 at 01:45.
Reply With Quote
  #4  
Old 25-03-2018, 04:40
Gupta Gupta is offline
Banned
 
Join Date: Aug 2016
Location: https://t.me/pump_upp
Posts: 399
Thanks: 139
Thanked 715 Times in 231 Posts
Gupta is on a distinguished road
Send a message via ICQ to Gupta Send a message via AIM to Gupta Send a message via Yahoo to Gupta
Quote:
Originally Posted by vollachr View Post
Can't get the EditIni feature to work...

The ini I need edited is in a sub-folder in the game's installation (Binaries\Win32\), the ini file name is steam_api.ini

The section is [Settings], the key is Language, the available languages are:
English (EnglishUS)
German
French
Italian
Spanish (SpanishES)
Japanese
Korean
Russian

What I tried:

Code:
EditIni1={src}\Binaries\Win32\steam_api.ini;Section:Settings;Key:Language;Value:english;Lang:EnglishUS
EditIni2={src}\Binaries\Win32\steam_api.ini;Section:Settings;Key:Language;Value:german;Lang:German
EditIni3={src}\Binaries\Win32\steam_api.ini;Section:Settings;Key:Language;Value:french;Lang:French
EditIni4={src}\Binaries\Win32\steam_api.ini;Section:Settings;Key:Language;Value:italian;Lang:Italian
EditIni5={src}\Binaries\Win32\steam_api.ini;Section:Settings;Key:Language;Value:spanish;Lang:SpanishES
EditIni6={src}\Binaries\Win32\steam_api.ini;Section:Settings;Key:Language;Value:japanese;Lang:Japanese
EditIni7={src}\Binaries\Win32\steam_api.ini;Section:Settings;Key:Language;Value:korean;Lang:Korean
EditIni8={src}\Binaries\Win32\steam_api.ini;Section:Settings;Key:Language;Value:russian;Lang:Russian
Also tried the same with {app} instead of {src}

But nothing happens, the value in the ini file remains Language=english, no matter what.

Here's how the ini looks in the relevant section:

Code:
[Settings]

###
### 
### Enter your name here
### 
### Names with diacritic or cyrillic characters are supported but no garantee to work
###

UserName=MYNAME

###
### Select your language here if available
###

Language=english
Any help?

Thanks.
Are you changing the language from autorun?
Reply With Quote
  #5  
Old 25-03-2018, 04:47
vollachr's Avatar
vollachr vollachr is offline
Conversions & UCC Creator
 
Join Date: Sep 2009
Location: Israel
Posts: 247
Thanks: 58
Thanked 536 Times in 186 Posts
vollachr is on a distinguished road
Quote:
Originally Posted by Gupta View Post
Are you changing the language from autorun?
Of course, I tested on German & Italian languages with same result, the ini isn't being changed, it stays with the default English value, even though I selected the correct language on autorun and performed the entire setup in selected language.
__________________

Ultimate Conversion Compressor Creator (Discontinued/Abandoned)
My Other Tools: File Splitter and Merger - Multiple Text/String Replacer (MTSR) - UCC Files & Folders Lister
Microsoft Certified Professional
Retired Conversion Creator
Reply With Quote
  #6  
Old 25-03-2018, 06:28
vollachr's Avatar
vollachr vollachr is offline
Conversions & UCC Creator
 
Join Date: Sep 2009
Location: Israel
Posts: 247
Thanks: 58
Thanked 536 Times in 186 Posts
vollachr is on a distinguished road
OK, finally figured the EditIni problem out...

It seems there should be an ending semicolon at the end of each line and it should be with {app}, like this:

Code:
EditIni1={app}\Binaries\Win32\steam_api.ini;Section:Settings;Key:Language;Value:english;Lang:EnglishUS;
EditIni2={app}\Binaries\Win32\steam_api.ini;Section:Settings;Key:Language;Value:german;Lang:German;
EditIni3={app}\Binaries\Win32\steam_api.ini;Section:Settings;Key:Language;Value:french;Lang:French;
EditIni4={app}\Binaries\Win32\steam_api.ini;Section:Settings;Key:Language;Value:italian;Lang:Italian;
EditIni5={app}\Binaries\Win32\steam_api.ini;Section:Settings;Key:Language;Value:spanish;Lang:SpanishES;
EditIni6={app}\Binaries\Win32\steam_api.ini;Section:Settings;Key:Language;Value:japanese;Lang:Japanese;
EditIni7={app}\Binaries\Win32\steam_api.ini;Section:Settings;Key:Language;Value:korean;Lang:Korean;
EditIni8={app}\Binaries\Win32\steam_api.ini;Section:Settings;Key:Language;Value:russian;Lang:Russian;
That finally worked, at least for the German language, will now test other languages. (Update: Worked for all languages)

It just doesn't work without that last semicolon, my guess is it needs it to "close" the Lang parameter in the line, but I'm no programmer.
__________________

Ultimate Conversion Compressor Creator (Discontinued/Abandoned)
My Other Tools: File Splitter and Merger - Multiple Text/String Replacer (MTSR) - UCC Files & Folders Lister
Microsoft Certified Professional
Retired Conversion Creator

Last edited by vollachr; 25-03-2018 at 08:22.
Reply With Quote
The Following 3 Users Say Thank You to vollachr For This Useful Post:
Gupta (09-04-2018), kassane (25-03-2018), pakrat2k2 (25-03-2018)
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
INDEX - Conversion Tutorial Index Razor12911 Conversion Tutorials 5 11-06-2020 02:05
Crysis 3 DVD9 to 3xDVD5 Custom Installer spawniectes PC Games - CD/DVD Conversions 79 31-08-2017 07:19
Tutorial using CI 8.0.0 yener90 Conversion Tutorials 424 21-10-2014 09:49



All times are GMT -7. The time now is 10:05.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2026, vBulletin Solutions Inc.
FileForums @ https://fileforums.com