FileForums

FileForums (https://fileforums.com/index.php)
-   Conversion Tutorials (https://fileforums.com/forumdisplay.php?f=55)
-   -   Conversion Designer/Installer Creator (https://fileforums.com/showthread.php?t=94605)

Razor12911 09-08-2015 05:24

1 Attachment(s)
I am no longer updating this program, because I don't have the complete source. So any coders out there, here is the script that the program uses. You can grab what you can grab from the script, pretty much has everything, and the biggest script I have ever created. 808kb and has about 20 000 lines.

babak1 09-08-2015 06:41

Thank you for the great work done.:)

------------------------------------------------------

Razor12911 what should be changed in the iss file that would fix this?

http://i.piccy.info/i9/8a189ea0cd2d7...931743/ME1.jpg

Razor12911 09-08-2015 07:20

Nothing. You have to edit the language files, isl.
The font part, select the font from the small button section.

babak1 09-08-2015 08:08

Quote:

Originally Posted by Razor12911 (Post 442444)
Nothing. You have to edit the language files, isl.
The font part, select the font from the small button section.

You were absolutely right. I edited where you said and now everything is fine. Thank you very much.:)

babak1 13-08-2015 17:27

Help. What needs to change in reg file that would be the installation path changed automatically when you manually change in setup.exe. What needs to be replaced (D:\) and (Silent Hill 3).

Quote:

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Konami]

[HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Konami\SIL ENT HILL 3]
"movie"="D:\\Silent Hill 3"
"sound"="D:\\Silent Hill 3"
@=""
"data"="D:\\Silent Hill 3"
"save"="D:\\Silent Hill 3\\savedata"
"installdir"="D:\\Silent Hill 3"

pakrat2k2 13-08-2015 18:41

Quote:

Originally Posted by babak1 (Post 442545)
Help. What needs to change in reg file that would be the installation path changed automatically when you manually change in setup.exe. What needs to be replaced (D:\) and (Silent Hill 3).

Look under useful programs topic for Reg to INNO Converter.
The program will change reg files into ISS script so you can easily add them to your [Registry] section of ISS scripts.

To answer your question you change ALL D:\Silent Hill 3 to {app}
which will allow installation to ANY HD & folder. I also removed the \Wow6432Node, as this will make it ONLY for 64 bit systems, Windows 64 bit systems will auto correct it to right section if running 64 bit OS, otherwise it will work as is for 86bit OS. See Below:

Code:

[Registry]

Root: HKLM; SubKey: SOFTWARE\Konami; Flags: uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\Konami\SILENT HILL 3; ValueType: string; ValueName: movie; ValueData: {app}; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\Konami\SILENT HILL 3; ValueType: string; ValueName: sound; ValueData: {app}; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\Konami\SILENT HILL 3; ValueType: string; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\Konami\SILENT HILL 3; ValueType: string; ValueName: data; ValueData: {app}; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\Konami\SILENT HILL 3; ValueType: string; ValueName: save; ValueData: {app}\savedata; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\Konami\SILENT HILL 3; ValueType: string; ValueName: installdir; ValueData: {app}; Flags: uninsdeletevalue uninsdeletekeyifempty


babak1 14-08-2015 02:55

IT WORKS!!! Thank you so much. Now I got it:)

Please tell me the value "Flags" is realy necessary?

pakrat2k2 14-08-2015 08:20

Quote:

Originally Posted by babak1 (Post 442554)
IT WORKS!!! Thank you so much. Now I got it:)

Please tell me the value "Flags" is realy necessary?

yes its needed always.

rated01 14-08-2015 22:57

i got a mismatch error every time when i create any game conversion please help

Razor12911 15-08-2015 13:21

Give us more information so that we can investigate.

carlo28 15-08-2015 19:04

Question
 
1 Attachment(s)
Good evening, first of all not fluent in English what I wrote here I did thanks to the translator of google. I have a question ... Is there any program to compress a .bin game but every part of the .bin have a certain weight? ... Just as when a partitioned winrar parties.

http://fileforums.com/attachment.php...1&d=1439690608

Razor12911 17-08-2015 16:52

http://fileforums.com/showthread.php?t=96619

carlo28 24-08-2015 07:31

thank you very much Razor12911, it was what he seeks.

babak1 27-08-2015 03:27

Please, help.

How to write a profile ID in the script.

HKEY_USERS\S-1-5-21-XXXXXXXXXX-XXXXXXXXXX-XXXXXXXXXX-XXXX\Software\Crystal Dynamics

pakrat2k2 27-08-2015 09:23

that ID number changes every time the game gets installed, so no use trying to enter a specific one like that into registry section of script.

babak1 27-08-2015 09:53

Quote:

Originally Posted by pakrat2k2 (Post 442864)
that ID number changes every time the game gets installed, so no use trying to enter a specific one like that into registry section of script.

But how to register it. Something like this ...

Quote:

Root: HKU; SubKey: S-1-5-21-SystemUser\Software\Crystal Dynamics; Flags: uninsdeletekeyifempty
Root: HKU; SubKey: S-1-5-21-SystemUser\Software\Crystal Dynamics\Legacy of Kain: Defiance; Flags: uninsdeletekeyifempty
Root: HKU; SubKey: S-1-5-21-SystemUser\Software\Crystal Dynamics\Legacy of Kain: Defiance\1.00.000; ValueType: dword; ValueName: ScreenWidth; ValueData: $00000780; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKU; SubKey: S-1-5-21-SystemUser\Software\Crystal Dynamics\Legacy of Kain: Defiance\1.00.000; ValueType: dword; ValueName: ScreenHeight; ValueData: $00000438; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKU; SubKey: S-1-5-21-SystemUser\Software\Crystal Dynamics\Legacy of Kain: Defiance\1.00.000; ValueType: dword; ValueName: ScreenDepth; ValueData: $00000016; Flags: uninsdeletevalue uninsdeletekeyifempty


--------------------------------------------------------------------------------------------------------

Now I understand. If it is to register in HKCU the same data appear in HKU.

Amsal 29-08-2015 08:21

Can anyone tell me how to display components as exclusive

Razor12911 05-09-2015 16:17

Not possible in IC.

Ch1p 08-09-2015 01:54

Greetings folks on FileForums!

Been using your (Razor12911) IC for a couple of weeks now for my repacks and I gotta say it works like a true charm! Really appreciate your work on it! :)

One little thing I would like to see (if it's at all possible) is a "border less" window, (remove/hide the M$ Windows frame around the installation window).


P.S if you want / need a Swedish translation send me a PM (Not a lot of software has any use of Swedish translations ^^)

Inge 08-09-2015 02:07

Quote:

One little thing I would like to see (if it's at all possible) is a "border less" window, (remove/hide the M$ Windows frame around the installation window).
If you use a .png Image instead of a .jpg, you will have no Windows frame.

Ch1p 08-09-2015 02:15

Quote:

Originally Posted by Inge (Post 443084)
If you use a .png Image instead of a .jpg, you will have no Windows frame.

Wow, such a simple solution, I wonder why I didn't think of that xO
Cheers Inge for the quick reply!

Mabrikos 13-09-2015 01:57

How does Media [online] work? I tried puting link to file but nothing happened when installing

Razor12911 13-09-2015 02:07

The link must be direct download. Either way, that feature is kinda buggy, it wasn't perfected.

wpdlatmels 15-09-2015 08:48

Thank you. I do not know everything yet, but
I will learn here.

Arimjie 19-10-2015 15:25

Hi razor, how to make DLC with using installer creator v3.0.2.0 and without uninstall option on program?
Thanks before

Razor12911 20-10-2015 05:01

not possible.

Arimjie 21-10-2015 03:38

Thanks Razor for reply

one question again, hmm how add indonesian on installer creator ? Sory i am newbie :D

Razor12911 21-10-2015 09:12

also not possible, lol.

houcine80 30-10-2015 10:11

hi you can modify script CIU v2.0.3.5 to avoid creating (BMP) thank you

Razor12911 01-11-2015 11:28

Quote:

Originally Posted by houcine80 (Post 444194)
hi you can modify script CIU v2.0.3.5 to avoid creating (BMP) thank you

not possible. With installer creator, it is only possible because I made the program make one automatically, with script, it isn't possible.

Razor12911 01-11-2015 12:00

UltraARC fix Uploaded

jamel2013 14-11-2015 02:58

big thanks Razor12911 everything is ok

Razor12911 03-12-2015 16:59

Installer Creator UltraARC Patch 2

Patch list

-Split temporary directory redirected from {tmp} to {app}.

babak1 05-12-2015 09:50

Razor12911 need your help

I create setup.exe for Setup-1a.rar Setup-1b.rar Setup-1c.rar

When the installation process reaches the Setup-1b.rar the progress bar begin rapidly gaining up to 100%. Even if you have 100%, installation does not end. I must still wait a while. With what it can be connected?

Setup-1b.rar have only one 10Gb file. If it is divided into parts that still does not change. Game archives I created manually using Winrar.


http://www.fotolink.su/pic_s/8c89dec...9f65b6dcda.jpg

babak1 09-12-2015 03:22

Please help. It is very important for me.

Razor12911 09-12-2015 09:56

Quote:

Originally Posted by babak1 (Post 445151)
Razor12911 need your help

I create setup.exe for Setup-1a.rar Setup-1b.rar Setup-1c.rar

When the installation process reaches the Setup-1b.rar the progress bar begin rapidly gaining up to 100%. Even if you have 100%, installation does not end. I must still wait a while. With what it can be connected?

Setup-1b.rar have only one 10Gb file. If it is divided into parts that still does not change. Game archives I created manually using Winrar.


http://www.fotolink.su/pic_s/8c89dec...9f65b6dcda.jpg

that's weird. Same thing happens with other archive types?

babak1 09-12-2015 10:44

No. 7z working fine. But I do not use it because the game is packed with 7z longer installed. I tried different versions winrar but happens the same. I think this is something to do with file size.

I created using Installer Creator of more than 30 games, but it happened the first time.
Prompt if you know what to change in your script.

Razor12911 09-12-2015 15:08

Ok, I'll look into it.

Amsal 11-12-2015 02:30

Bro, can you also add the precomp v0.43 in installer creator! It is just a request

navuhodonosor 11-12-2015 03:38

I have an error on build. It is simple setup, nothing fancy, 2 dat files. In log it says:
Compiling [Code] section
Error!: Line: 2875 Column 20:
Unknown identifier 's'
Any idea?


All times are GMT -7. The time now is 17:06.

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