FileForums

FileForums (https://fileforums.com/index.php)
-   Conversion Tutorials (https://fileforums.com/forumdisplay.php?f=55)
-   -   ASIS: Advanced Simple Installer Script (https://fileforums.com/showthread.php?t=99481)

Titeuf 25-07-2020 23:46

Quote:

Originally Posted by KaktoR (Post 487052)
Here is a fix.

Section key from Settings.ini was interfering with [Files] section (there was a section key too, so I had to rename the INI related section to fix this).

It includes also a few other fixes.

Hello KaktoR, thank you for your update !

thanks for your

Edit: Now what lines do I see added when a game has multiple steam_emu.ini files in different directories?

KaktoR 26-07-2020 02:18

It is only possible to edit one ini file.

Titeuf 26-07-2020 02:33

Quote:

Originally Posted by KaktoR (Post 487057)
It is only possible to edit one ini file.

Hello KaktoR,
Yes I know! Maybe I spoke badly, I want to do it like this, look here => cordially

KaktoR 26-07-2020 03:30

Line 4482, search for this and add the red parts

Code:

#if CompactMode == "1"
  #if INIValue == ""
    SetIniString('{#INISection}', '{#INIKey}', ExpandConstant('{username}'), ExpandConstant('{#INIFile}'));
    SetIniString('{#INISection}', '{#INIKey}', ExpandConstant('{username}'), ExpandConstant('{app}\INIFile2.ini'));
  #else
    SetIniString('{#INISection}', '{#INIKey}', '{#INIValue}', ExpandConstant('{#INIFile}'));
    SetIniString('{#INISection}', '{#INIKey}', '{#INIValue}', ExpandConstant('{app}\INIFile2.ini'));
  #endif
#else
  SetIniString('{#INISection}', '{#INIKey}', WizardForm.UserInfoNameEdit.Text, ExpandConstant('{#INIFile}'));
  SetIniString('{#INISection}', '{#INIKey}', WizardForm.UserInfoNameEdit.Text, ExpandConstant('{app}\INIFile2.ini'));
#endif


Titeuf 26-07-2020 04:26

Quote:

Originally Posted by KaktoR (Post 487059)
Line 4482, search for this and add the red parts

Code:

#if CompactMode == "1"
  #if INIValue == ""
    SetIniString('{#INISection}', '{#INIKey}', ExpandConstant('{username}'), ExpandConstant('{#INIFile}'));
    SetIniString('{#INISection}', '{#INIKey}', ExpandConstant('{username}'), ExpandConstant('{app}\INIFile2.ini'));
  #else
    SetIniString('{#INISection}', '{#INIKey}', '{#INIValue}', ExpandConstant('{#INIFile}'));
    SetIniString('{#INISection}', '{#INIKey}', '{#INIValue}', ExpandConstant('{app}\INIFile2.ini'));
  #endif
#else
  SetIniString('{#INISection}', '{#INIKey}', WizardForm.UserInfoNameEdit.Text, ExpandConstant('{#INIFile}'));
  SetIniString('{#INISection}', '{#INIKey}', WizardForm.UserInfoNameEdit.Text, ExpandConstant('{app}\INIFile2.ini'));
#endif


Hello KaktoR,
thank you so much
cordially

Titeuf 02-08-2020 04:16

Hello,
I noticed a strange thing since the last Fix (ASIS.v7.2.0.Update.6.7z).
at the end of the installation, in the file eg: "steam_emu.ini" in "Language =" it adds a capital letter, eg: Language = French while the original is like this: Language = french!
hope you understand and how to fix this please
thanks in advance

KaktoR 02-08-2020 05:09

1 Attachment(s)
Use this

It can be done with LowerCase function too I guess but don't have time atm to deal with this.

Titeuf 02-08-2020 06:14

Quote:

Originally Posted by KaktoR (Post 487191)
Use this

It can be done with LowerCase function too I guess but don't have time atm to deal with this.

Hello KaktoR,
thanks for your file, Problem solved
I looked in Script.iss LowerCase too
thank you

Masquerade 15-08-2020 03:23

Hello,

My friend gigi has updated the Italian translations of this script, so they are correct.

New module: https://anonfiles.com/F9t9XaM1od/CustomMessages_iss

P.S. this contains the updated Russian translation from before.

KaktoR 15-08-2020 03:39

Thanks.

Will post final version later.

If someone has found more bugs, tell me.

PS: Please use this file for translation. It has changed a lot since 7.1.7
https://anonfiles.com/f80bXcM9o4/CustomMessages_iss

Masquerade 15-08-2020 06:34

Quote:

Originally Posted by KaktoR (Post 487425)
PS: Please use this file for translation. It has changed a lot since 7.1.7
https://anonfiles.com/f80bXcM9o4/CustomMessages_iss

Alright, I'll give that version from now on - my script is a butchered 7.1.4 version and I haven't upgraded since.

Atakanbasturk 23-08-2020 03:46

Setup.exe suddenly closes itself...
 
1 Attachment(s)
I compressed Spider-Man 3 files with UltraARC.

Config0.ini:

MASK = msc+lzma2

[External compressor:msc]
;Cls library in CIU
header = 0
default = -raw=1 -bmf=9 -bmp=1 -wav=1 -mp3=1
packcmd = "MEDIA\MSC\MSC" c -f -v -mp3=1 InFile OutFile
datafile = InFile
packedfile = OutFile

[External compressor:lzma2,Lzma2]
header = 0
default = :d25:fb=273:mf=bt4:mc=1000000:lc=4:lp=0
packcmd = "7z\7z_x64" a -txz -an -mcrc=0 -m1=lzma2:d1024m:mf=bt4:fb=273:lc=4:lp=0 -mmt=2 -mx9 -si -so <stdin> <stdout>

UltraARC's unpack.exe file can extract final file successfully. But When I use ASIS final version(compile script and run setup.exe), setup.exe closing when it reaches %87,7 everytime.

https://www.youtube. com/watch ?v=FYLmxA3TgvY

NOTE: I tried Spider-Man Web of Shadows and setup.exe successfully extract files.

Script.iss and Setting.ini in attachment.

NOTE 2: My RAMs, processor and SSD are fine. Tested with MemTest+, Aida64 Extreme and Samsung Magician.

Windows 10 pro 64 bit
32 GB DDR4 RAM
İntel i7 6700K

XxAZAxX 23-08-2020 15:27

Hi KaktoR, In the first post there are some old updates and the initial version, I was wondering if one day you would upgrade the updated version that is the whole package, because I have seen several scattered here and there and I would not make mistakes by making some copies paste wrong ... if you ever have the time I hope you will update it in the first post all ASIS package Thanks bro, and hope it's not a nuisance.. that's a really great job!

LordxKinG 24-08-2020 22:27

Why if I create diskpan lzma x4 cannot extract with ASIS Installer, it's always error at 50-70% installation Progress (it say file corupted) and if i tested on CIU v3 i'ts work normaly, any way for fix it?
Thanks and sorry for my bad english :D

Masquerade 28-08-2020 03:51

Hi, is there any possibility of being able to change how the progress bar measures the archives? I know currently it sits at equal length for each archive, so 2 archives = 50% each.

In the cases where I make 1 big archive and 1 small archive, is there a part of the script so I could make it 60/40 or 80/20 instead of 50/50?


All times are GMT -7. The time now is 13:00.

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