|
|
|
#1
|
||||
|
||||
|
Quote:
|
| Sponsored Links |
|
#2
|
|||
|
|||
|
>>Was that the jpg and png thing? I don't know if that was a bug or a feature, and haven't tested yet, but in previous releases you could only use JPG images for Backgrounds, not PNG ones.
i thought only PNG can be added(previous releases), in this release, you can add multiple PNGs for installer, Installer.bmp, Installer#_*.png(#- counter, *- short name for language)(all Installer*.png should have same dimensions since .bmp is same) >>You mean internal INNO compression? vulture protective compression for images(Setup folder) etc. >> Have you added ztool too? what we discussed earlier will be implemented, thinking about making something like ultraarc (started writing too, will release a cli tomorrow or on Sunday) |
|
#3
|
||||
|
||||
|
Ahh sorry, i missunderstood you previously. I thought you mean background pictures (in Background folder).
I have wrote that a while back in bug list on other place.
__________________
Haters gonna hate
|
|
#4
|
||||
|
||||
|
Prince
Which UltraArc version should I use for the latest CIU version? UltraARC 2800 R2 Edition? Last edited by omdj; 28-07-2017 at 15:04. |
|
#6
|
||||
|
||||
|
Is there any possibility of modifying by means of setup.ini the time in which splash is shown?
|
|
#7
|
|||
|
|||
|
Update available:
170729:
Code:
[ASplash] ;Defaults Fadein=1000 Showfor=10000 Fadeout=1 Transparency=255 ;Fadein#, Showfor#, Fadeout# for individual splash screens ( time in ms ) ;Transparency# ( 0 -255 ) transparency of splash screens ;Fadein1=10 ;Showfor1=10000 ;Fadeout1=1000 ;Transparency1=255 [Splash] ;Defaults Fadein=10 Showfor=10000 Fadeout=1000 Transparency=255 ;Fadein#, Showfor#, Fadeout# for individual splash screens ( time in ms ) ;Transparency# ( 0 -255 ) transparency of splash screens ;Fadein1=10 ;Showfor1=10000 ;Fadeout1=1000 ;Transparency1=255 |
|
#8
|
||||
|
||||
|
my friend can you fix the #define ProgramFiles option problems please, and add the Recently ini files setting, like CPY.ini, steam_emu.ini, etc, and the same time fix the Language SetIniString. i mean this
NOW Language = Spanish IT MUST BE Language = spanish |
|
#9
|
|||
|
|||
|
update Available:
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. |
|
#10
|
||||
|
||||
|
Quote:
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
another thing if i add Code:
EditIni9={app}\Bin32\steam_api.ini;Section:Settings;Key:UserName;Value:{username}
|
|
#11
|
||||
|
||||
|
Quote:
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
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 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. |
|
#12
|
|||
|
|||
|
Quote:
|
|
#13
|
||||
|
||||
|
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 |
|
#14
|
||||
|
||||
|
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;
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. |
|
#15
|
||||
|
||||
|
Hello,
Thank you for your update! Is it possible to change the name of the player in ex: the Codex.ini file? If possible can you say what to add thank you in advance |
![]() |
|
|
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 |