Go Back   FileForums > Game Backup > PC Games > PC Games - CD/DVD Conversions > Conversion Tutorials

Reply
 
Thread Tools Display Modes
  #46  
Old 14-12-2024, 07:06
audiofeel's Avatar
audiofeel audiofeel is online now
Registered User
 
Join Date: Jan 2013
Location: Russia
Posts: 378
Thanks: 451
Thanked 877 Times in 317 Posts
audiofeel is on a distinguished road
Quote:
Originally Posted by BLACKFIRE69 View Post
This is an example of how to use ISArcEx.dll with an installer created in Delphi, intended to load the DLL from the temp directory, as requested.


Code:
LibPath := IncludeTrailingPathDelimiter(ExtractFilePath(ParamStr(0))) + 'bin\';

if not Assigned(ISArcExCl) then
  ISArcExCl := TISArcExM.Create(LibPath);
.
Thank you very much mr. @blackfire69, we have been waiting for this for two long months
Reply With Quote
The Following 4 Users Say Thank You to audiofeel For This Useful Post:
Behnam2018 (14-12-2024), BLACKFIRE69 (14-12-2024), hitman797 (15-12-2024), ScOOt3r (14-12-2024)
Sponsored Links
  #47  
Old 18-01-2025, 02:27
EmirHasan EmirHasan is offline
Registered User
 
Join Date: Aug 2024
Location: Turkiye
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
EmirHasan is on a distinguished road
Hello, first of all thank you very much for this wonderful forum I have benefited from it a lot and I apologize if my English is weak, I will talk in detail about the problem I am facing which is: I was working on Redshank[20.08].iss and I was working and compressing files using FreeARC and the following command line:

Quote:
@echo off
freearc a -r -m9 -ep1 -hp -pOceanBox443 OceanData.bin * -xzNewRun.bat
pause
This topic is successful, but I used a more powerful file compression tool "Mini Compressor" and tried compression using the following tools:
Quote:
precomp+nz+static2+XLolz/$bitmapz=bmpz/$bink=bink/$void=void/$photo=jpg/$ogg=ogg/$wavz=wvp/$mp3=mpz
But when exporting the Setup file from Scirpt Inno, I get the clear error in the image :



I tried to add a modification to the arc.ini text:

Quote:
[External compressor : precomp]
header = 0
packcmd = "PreComp\precomp" -cn -intense -ostdout <stdout> $$arcdatafile$$.tmp
unpackcmd = "PreComp\precomp" -ostdout -r stdin <stdin> <stdout>
But I also did not succeed, and this is the closest topic in the forum to solving the problem
Reply With Quote
  #48  
Old 18-01-2025, 04:03
audiofeel's Avatar
audiofeel audiofeel is online now
Registered User
 
Join Date: Jan 2013
Location: Russia
Posts: 378
Thanks: 451
Thanked 877 Times in 317 Posts
audiofeel is on a distinguished road
Quote:
Originally Posted by EmirHasan View Post
Hello, first of all thank you very much for this wonderful forum I have benefited from it a lot and I apologize if my English is weak, I will talk in detail about the problem I am facing which is: I was working on Redshank[20.08].iss and I was working and compressing files using FreeARC and the following command line:
This topic is successful, but I used a more powerful file compression tool "Mini Compressor" and tried compression using the following tools:
But when exporting the Setup file from Scirpt Inno, I get the clear error in the image :

I tried to add a modification to the arc.ini text:
But I also did not succeed, and this is the closest topic in the forum to solving the problem
Most likely, there are no necessary files to help with unpacking in the Unpack folder.
__________________
https://t.me/FMXInno
Reply With Quote
  #49  
Old 18-01-2025, 04:20
nordi's Avatar
nordi nordi is offline
Registered User
 
Join Date: Nov 2012
Location: Germany
Posts: 30
Thanks: 29
Thanked 38 Times in 16 Posts
nordi is on a distinguished road
Question - ISArcEx + new InnoSetup 6.4.0

Hi there...

InnoSetup 6.4.0 / Win11 : Does anyone have the same problems with the example script ?!

> "MainForm" = identifier error

> using "IsArcExChangeLanguage" = Windows Defender popup

(see pictures)

greetz
Attached Images
File Type: png Screenshot.png (27.0 KB, 86 views)
File Type: png Screenshot2.png (32.2 KB, 90 views)

Last edited by nordi; 18-01-2025 at 04:30.
Reply With Quote
  #50  
Old 18-01-2025, 04:43
audiofeel's Avatar
audiofeel audiofeel is online now
Registered User
 
Join Date: Jan 2013
Location: Russia
Posts: 378
Thanks: 451
Thanked 877 Times in 317 Posts
audiofeel is on a distinguished road
Quote:
Originally Posted by nordi View Post
Hi there...
InnoSetup 6.4.0 / Win11 : Does anyone have the same problems with the example script ?!
> "MainForm" = identifier error
> using "IsArcExChangeLanguage" = Windows Defender popup
(see pictures)
greetz
MainForm removed as obsolete. You can temporarily use WizardForm or just zero to avoid the error.

Quote:
At long last, Setup's wizard window now shows a thumbnail image on its taskbar button, and animates correctly when minimized and restored. As part of this work, support for the long-deprecated [Setup] section directive WindowVisible, which was used to enable a 1990s-style blue gradient background behind the wizard window, has been dropped.
Code:
1.- if (ISArcDiskAddingSuccess) and ISArcExInit(WizardForm.Handle, 1, @ProgressCallback) then
2.- if (ISArcDiskAddingSuccess) and ISArcExInit(0, 1, @ProgressCallback) then
IsArcExChangeLanguage - You can delete this or comment it out
__________________
https://t.me/FMXInno

Last edited by audiofeel; 18-01-2025 at 05:11.
Reply With Quote
The Following User Says Thank You to audiofeel For This Useful Post:
nordi (18-01-2025)
  #51  
Old 18-01-2025, 05:41
nordi's Avatar
nordi nordi is offline
Registered User
 
Join Date: Nov 2012
Location: Germany
Posts: 30
Thanks: 29
Thanked 38 Times in 16 Posts
nordi is on a distinguished road
Hi audiofeel,

thx for the answer, with your advice it`s working in IS6.4.0...
-------
But:
I want to use command IsArcExChangeLanguage :
because using different ini-files , I can let translate the messages in different languages while installing...

>> Windows Defender popup :

Solved >> "every pc restart is good" + new GUID > working now

*perhaps it was the security block in the file properties too
Attached Images
File Type: png secure.png (14.6 KB, 19 views)

Last edited by nordi; 25-01-2025 at 10:54. Reason: UPDATE
Reply With Quote
  #52  
Old 18-01-2025, 05:42
EmirHasan EmirHasan is offline
Registered User
 
Join Date: Aug 2024
Location: Turkiye
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
EmirHasan is on a distinguished road
Quote:
Originally Posted by audiofeel View Post
Most likely, there are no necessary files to help with unpacking in the Unpack folder.
Thanks for the help, all the necessary files to help with unpacking in the Unpack folder

[IMG][/IMG]

[IMG][/IMG]

[IMG][/IMG]

These are the files I have.
Reply With Quote
  #53  
Old 18-01-2025, 05:50
audiofeel's Avatar
audiofeel audiofeel is online now
Registered User
 
Join Date: Jan 2013
Location: Russia
Posts: 378
Thanks: 451
Thanked 877 Times in 317 Posts
audiofeel is on a distinguished road
Quote:
Originally Posted by nordi View Post
Hi audiofeel,
thx for the answer, with your advice it`s working in IS6.4.0...
But:
I want to use command IsArcExChangeLanguage :
because using different ini-files , I can let translate the messages in different languages while decompressing...
(Here I will use IS6.3.3 for now.)
Unfortunately, I can't even repeat the error that you have with the pop-up window of Windows Defender. So I can't say anything. We are waiting for the author, maybe he will suggest something.
__________________
https://t.me/FMXInno
Reply With Quote
The Following User Says Thank You to audiofeel For This Useful Post:
nordi (18-01-2025)
  #54  
Old 18-01-2025, 06:09
audiofeel's Avatar
audiofeel audiofeel is online now
Registered User
 
Join Date: Jan 2013
Location: Russia
Posts: 378
Thanks: 451
Thanked 877 Times in 317 Posts
audiofeel is on a distinguished road
Quote:
Originally Posted by EmirHasan View Post
Thanks for the help, all the necessary files to help with unpacking in the Unpack folder
[IMG][/IMG]
[IMG][/IMG]
[IMG][/IMG]
These are the files I have.
You may have messed something up in the CLS.INI ARC.INI files. Contact the author of this wonderful and divine compression program MINI COMPRESSOR, maybe he will help you.
and your use of precomp is somehow annoying, use XTOOL instead, write what game you want to compress and maybe we will find something for you to compress but without PRECOMP
__________________
https://t.me/FMXInno
Reply With Quote
  #55  
Old 19-01-2025, 20:54
Behnam2018 Behnam2018 is offline
Registered User
 
Join Date: Jun 2018
Location: IRAN
Posts: 58
Thanks: 963
Thanked 24 Times in 20 Posts
Behnam2018 is on a distinguished road
Wink I want to add music Button OFF -ON to this script

Hello, I want this script with music. Can you help me please?

I want to add music Button OFF- ON to this script

simple to this setup
Attached Images
File Type: jpg test.jpg (50.3 KB, 64 views)
File Type: jpg 1.jpg (37.5 KB, 59 views)
Attached Files
File Type: rar Setup.rar (27.28 MB, 2 views)

Last edited by Behnam2018; 19-01-2025 at 22:34.
Reply With Quote
  #56  
Old 20-01-2025, 00:54
nordi's Avatar
nordi nordi is offline
Registered User
 
Join Date: Nov 2012
Location: Germany
Posts: 30
Thanks: 29
Thanked 38 Times in 16 Posts
nordi is on a distinguished road
add MP3

Quote:
Originally Posted by Behnam2018 View Post
Hello, I want this script with music. Can you help me please?
Hi,
I attached example scripts below...
(search for "New Lines" in the script for seeing the changes)

greeting
Nordi
Attached Images
File Type: png MP3.png (78.1 KB, 17 views)
Attached Files
File Type: 7z ISArcExMp3Button.7z (4.13 MB, 10 views)
File Type: 7z ISArcExMp3Anim.7z (4.17 MB, 6 views)

Last edited by nordi; 25-01-2025 at 11:00. Reason: Update
Reply With Quote
The Following 2 Users Say Thank You to nordi For This Useful Post:
audiofeel (20-01-2025), Behnam2018 (20-01-2025)
  #57  
Old 20-01-2025, 16:33
nordi's Avatar
nordi nordi is offline
Registered User
 
Join Date: Nov 2012
Location: Germany
Posts: 30
Thanks: 29
Thanked 38 Times in 16 Posts
nordi is on a distinguished road
ISArcExAddDiskEx - Questions I - different files are shown

Quote:
Originally Posted by BLACKFIRE69 View Post
ISArcEx - Minor Update
* if you call 'ISArcExAddDisksEx' like this:
ISArcExAddDisksEx('C:\Test\data-langs.bin', 'MyPwd', 'Eng', 'D:\Test\Output');
.
- Question 1 -

Hi Community / Hi Blackfire69,

I have a problem with the names of the files to be extracted.

>> TEST SCRIPT ATTACHED

Description:
In the attached image you can see that something has been selected for installation.
During the installation (extraction), however, a different file from the same archive is displayed.
> But in the end the correct file has been extracted.

I hope, someone can help here.
kind regards
Nordi
Attached Images
File Type: jpg Error 1.jpg (240.0 KB, 45 views)
Attached Files
File Type: 7z AddDiskEx.7z (2.94 MB, 3 views)

Last edited by nordi; 25-01-2025 at 11:26. Reason: Script+File Update
Reply With Quote
  #58  
Old 20-01-2025, 16:39
nordi's Avatar
nordi nordi is offline
Registered User
 
Join Date: Nov 2012
Location: Germany
Posts: 30
Thanks: 29
Thanked 38 Times in 16 Posts
nordi is on a distinguished road
ISArcExAddDiskEx - Questions II - different sizes are shown

- Question 2 -

Hi Community / Hi Blackfire69,

I have a second problem with ISArcExAddDisksEx and the shown sizes of the files to be extracted.

>> TEST SCRIPT : ONE POST ABOVE

Description:
In the attached image you can see :
during the installation (extraction), however, a different size from archive is displayed.
(Note: three different bf-files, not single one)

I hope, someone can help here.
kind regards
Nordi
Attached Images
File Type: png Error1.png (28.5 KB, 46 views)

Last edited by nordi; 25-01-2025 at 09:31. Reason: Pic Update
Reply With Quote
The Following User Says Thank You to nordi For This Useful Post:
Behnam2018 (21-01-2025)
Reply

Thread Tools
Display Modes

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
XTool 2020 (Plugins) Razor12911 Conversion Tutorials 405 24-12-2024 06:30
ASIS: Advanced Simple Installer Script KaktoR Conversion Tutorials 1389 12-12-2024 02:15
Best Compression For Archiving brispuss PC Games 13 06-09-2023 06:49
Game Installer Designer by altef_4 altef_4 Conversion Tutorials 236 28-05-2021 03:54
Compression Questions yasitha Conversion Tutorials 10 09-01-2019 13:29



All times are GMT -7. The time now is 02:37.


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