|
|
|
#1
|
||||
|
||||
|
It was a test update, I reverted the changes,
|
| Sponsored Links |
|
#2
|
|||
|
|||
|
Actually i've tried the initial release of yours after the unicode fix and it has the same issue, it's either a bug of the fix you did to make it work with unicode or the script is already bugged by the original developer it self. not sure :/
|
|
#3
|
||||
|
||||
|
oh, you mean that.
The RAM Detection method used only works on 2GB Ram and nothing more, I guess, the thingy will have a dll file after all. Thanks for noticing. |
|
#4
|
|||
|
|||
|
I think i will forget about it meanwhile.
|
|
#5
|
|||
|
|||
|
Can you teach me how to use the CIU is not, when I created using png and bmp, when it was at fault for the button to install the repack of my
|
|
#6
|
|||
|
|||
|
Hello,
How to compress files inside packed file? i mean let's say i have a .pak file and this file contains lots of files inside, if i unpack it then compress it i will get a higher compression ratio, if i compress the packed file i get less compression ratio. How to tell freearc or srep to detect those files inside the pack and compress them properly with having to unpack the file? |
|
#7
|
||||
|
||||
|
Re: Designer,
Progress: 10% Decided to remove all graphics first, they are a distraction. |
|
#8
|
|||
|
|||
|
Custom installer from game disc
I am trying to make a custom installer for my Crysis 3.
Question: Can I use innosetup to make an installer from my Disc/s - without having to install the game first? IF not, is there any software I can use? Thank you. |
|
#9
|
||||
|
||||
|
you cant tell it to detect that file. you can either compress it as it is or compress the unpacked version of the file, cant do both.
|
| The Following User Says Thank You to pakrat2k2 For This Useful Post: | ||
danswano (09-05-2013) | ||
|
#10
|
|||
|
|||
|
Hello,
I have a high end PC, how do i increase the compression speed in my parameter? Thank you. |
|
#11
|
||||
|
||||
|
i = integer
Freearc -mti for multi cputhread compression -lc for compression memory -use LMZA x64 |
| The Following User Says Thank You to Razor12911 For This Useful Post: | ||
danswano (11-05-2013) | ||
|
#12
|
|||
|
|||
|
Can you give a full parameter example for arc+srep using specific lc and mt please?
|
|
#13
|
||||
|
||||
|
arc -ep1 -r -ed -m3 -mt4 -lc8192mb
for precomp, just look at the cmd prompt window and it will tell you what method to use for quick compression for srep -mem384mb I think Last edited by Razor12911; 11-05-2013 at 14:08. |
| The Following User Says Thank You to Razor12911 For This Useful Post: | ||
danswano (11-05-2013) | ||
|
#14
|
||||
|
||||
|
Instructions on scripts which use ISDone v0.6
Ok, First things first. This blackbox script/installer doesn't support internal compression therefore, I will show you how to use the freearc, 7zip, srep, precomp, winrar, diskchange unpacking. Now here is an example and a few explainations. if not ISArcExtract (Component, Progress, ArchiveSource, Destination, '', false, Password, ExpandConstant('{tmp}\arc.ini'), True/False) then break; if not IS7ZipExtract (Component, Progress, ArchiveSource, Destination, True/False, Password) then break; if not ISRarExtract (Component, Progress, ArchiveSource, Destination, True/False, Password) then break; if not ISSRepExtract (Component, Progress, ArchiveSource, Destination, True/False) then break; if not ISPrecompExtract(Component, Progress, ArchiveSource, Destination, True/False) then break; e.g. if not ISArcExtract ( 0, 100, ExpandConstant('{src}\Data1.bin'), ExpandConstant('{app}\'), '', false, '1234', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}\'), False) then break; Component > Allows unpacking when the component is selected. Ask for more info about this. e.g if not ISArcExtract ( 0, 100, ExpandConstant('{src}\Data1.bin'), ExpandConstant('{app}\'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}\'), False) then break; Progress > The progressbar taken up by the unpacking progress of archive. Take NOTE, 100 is the total, therefore is it's one archive, set 100, if two, set 50 and the other 50 if not ISArcExtract ( 0, 50, ExpandConstant('{src}\Data1.bin'), ExpandConstant('{app}\'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}\'), False) then break; if not ISArcExtract ( 0, 50, ExpandConstant('{src}\Data2.bin'), ExpandConstant('{app}\'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}\'), False) then break; ArchiveSource > Now as you can see, the example, ExpandConstant('{src}\Data1.bin'). The expandconstant is for the constant expansion for never mind it but you should take it for granted. {src} which means source of the setup, {pf} means the folder program files, for other constants, click here. e.g. if not ISArcExtract ( 0, 100, ExpandConstant('{src}\Data1.bin'), ExpandConstant('{app}\'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}\'), False) then break; Destination > it acts the same way as the source of files but now you are directing the files in the archive to be unpacked in a folder, take note, this can only work if you are unpacking freearc, 7z or rar archive because they can contain a lot of files in one and as for precomp and srep, specify the destination file. e.g. if not ISArcExtract ( 0, 100, ExpandConstant('{src}\Data1.bin'), ExpandConstant('{app}\'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}\'), notPCFonFLY{PCFonFLY}) then break; if not ISPrecompExtract( 0, 0, ExpandConstant('{src}\data.pcf'), ExpandConstant('{app}\data.arc'), true) then break; Password > The archive password set by you. e.g. if not ISArcExtract ( 0, 100, ExpandConstant('{src}\Data1.bin'), ExpandConstant('{app}\'), '', false, '1234', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}\'), False) then break; True/False > aka. notPCFonFLY {PCFonFLY} It's an option to delete file after unpacking process, True means, file must be deleted and False means file mustn't be deleted. e.g. if not ISArcExtract ( 0, 100, ExpandConstant('{src}\Data1.bin'), ExpandConstant('{app}\'), '', false, '1234', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}\'), False) then break; Now, here are a few examples. The Password feature is only available for 7z, rar and arc. Freearc if not ISArcExtract ( 0, 100, ExpandConstant('{src}\Data1.bin'), ExpandConstant('{app}\'), '', false, '1234', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}\'), False) then break; 7zip if not IS7ZipExtract ( 0, 75, ExpandConstant('{src}\data1.7z'), ExpandConstant('{app}'), false, '1234') then break; rar if not ISRarExtract ( 0, 25, ExpandConstant('{src}\data.rar'), ExpandConstant('{app}'), false, '4321') then break; srep if not ISSRepExtract ( 0, 10, ExpandConstant('{app}\data.srep'),ExpandConstant(' {app}\data.pcf'), true) then break; precomp if not ISPrecompExtract( 0, 90, ExpandConstant('{app}\data.pcf'), ExpandConstant('{app}\data.arc'), true) then break; Now comes to the diskchange if not ShowChangeDiskWindow (Text, ExpandConstant('{src}'),Archive) then break; Text > The text which should be written to notify the user of the setup on what to do. Archive > The archive the setup can use for verification. e.g. if not ShowChangeDiskWindow ('Insert the next disk...', ExpandConstant('{src}'),'Data7.cab') then break; |
| The Following 2 Users Say Thank You to Razor12911 For This Useful Post: | ||
danswano (20-05-2013), y_thelastknight (20-05-2013) | ||
|
#15
|
||||
|
||||
|
How do I create a reg key universal x64 x32???
|
![]() |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| INNO TROUBLESHOOT - Tutorials and Answers about INNO Setup | REV0 | Conversion Tutorials | 129 | 21-05-2021 05:51 |
| INNO TUTORIAL - Using Unicode and ANSI Versions of INNO Setup | REV0 | Conversion Tutorials | 51 | 26-03-2015 06:57 |
| Frequently Asked Questions | Joe Forster/STA | PC Games - Frequently Asked Questions | 0 | 29-11-2005 09:48 |