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

Reply
 
Thread Tools Display Modes
  #1  
Old 05-11-2011, 10:16
DN8 DN8 is offline
Registered User
 
Join Date: Nov 2011
Location: Venezuela
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
DN8 is on a distinguished road
How to edit the appearance of a FreeArc sfx archive?

Hello friends.

I want to know how I can change the appearance of a sfx archive of FreeArc? , I want that when you unzip the exe file looks like this:



I've tried with and ResourseTuner ResourseHacker and it was not possible to edit compressed files because they can not.
Reply With Quote
Sponsored Links
  #2  
Old 05-11-2011, 17:44
sulfurum1989's Avatar
sulfurum1989 sulfurum1989 is offline
Registered User
 
Join Date: Mar 2010
Location: spain
Posts: 50
Thanks: 0
Thanked 6 Times in 2 Posts
sulfurum1989 is on a distinguished road
Use th modificable sfx attached.

And replace the bitmap images with which you want

use resourse hacker to open the sfx archive

in Bitmap tab you can replace the image , (bmp)
in Dialog tab , you can resize the extraction window


Attached Files
File Type: zip freearc.sfx.zip (281.1 KB, 173 views)

Last edited by Joe Forster/STA; 15-09-2013 at 03:10. Reason: uploaded file as forum attachment
Reply With Quote
The Following 4 Users Say Thank You to sulfurum1989 For This Useful Post:
Grehg (28-08-2013), kj911 (14-12-2022), logansama (16-04-2018), MMR (21-02-2013)
  #3  
Old 05-11-2011, 19:33
pakrat2k2's Avatar
pakrat2k2 pakrat2k2 is offline
Moderator
 
Join Date: Apr 2005
Location: Canada
Posts: 7,209
Thanks: 3,040
Thanked 9,030 Times in 3,083 Posts
pakrat2k2 is on a distinguished road
thanks for the info.. only had part of left hand column, but not the program name itself.

Now to incorporate that into INNO + Freearc script?
Reply With Quote
  #4  
Old 05-11-2011, 19:55
sulfurum1989's Avatar
sulfurum1989 sulfurum1989 is offline
Registered User
 
Join Date: Mar 2010
Location: spain
Posts: 50
Thanks: 0
Thanked 6 Times in 2 Posts
sulfurum1989 is on a distinguished road
it is possible , call frearc sfx in inno setup whit autoit , no dlls , no codes , only 1 sfx archive , and , 1 auto ok button created with AutoIt

is easy , in inno setup at the final of installation calls the auto ok , the auto ok calls the freaarc sfx

with this method is executed sfx file with AutoIt , in inno setup calls the auto ok , like calls directx for example

I want to learn how to call a FreeArc file with Inno Setup - as peterf conversions but I had to try alternative methods

Last edited by sulfurum1989; 05-11-2011 at 20:07.
Reply With Quote
  #5  
Old 06-11-2011, 05:40
DN8 DN8 is offline
Registered User
 
Join Date: Nov 2011
Location: Venezuela
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
DN8 is on a distinguished road
Miracle .!!!!! It was what I was looking for. Thank you very much. Greetings from Taringa!
Reply With Quote
  #6  
Old 06-11-2011, 05:54
DN8 DN8 is offline
Registered User
 
Join Date: Nov 2011
Location: Venezuela
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
DN8 is on a distinguished road
Quote:
it is possible , call frearc sfx in inno setup whit autoit , no dlls , no codes , only 1 sfx archive , and , 1 auto ok button created with AutoIt

is easy , in inno setup at the final of installation calls the auto ok , the auto ok calls the freaarc sfx

with this method is executed sfx file with AutoIt , in inno setup calls the auto ok , like calls directx for example

I want to learn how to call a FreeArc file with Inno Setup - as peterf conversions but I had to try alternative methods
(Translated by pakrat2k2)

Look I have the commands needed to make the file executable FreeArc sfx, make unattended installation.

You should only add this:

Code:
Filename: {src}\DATA.exe; Parameters: "-x -d""{app}"" -y -s2";
where:

Data = sfx is your executable file prepared by the FreeArc
{app} = Destination Directory. With a *slag(backslash) can be placed more subdirectories

These parameters are necessary for the installation is deatenida. regards

Last edited by Joe Forster/STA; 06-11-2011 at 09:41.
Reply With Quote
  #7  
Old 06-11-2011, 08:55
sulfurum1989's Avatar
sulfurum1989 sulfurum1989 is offline
Registered User
 
Join Date: Mar 2010
Location: spain
Posts: 50
Thanks: 0
Thanked 6 Times in 2 Posts
sulfurum1989 is on a distinguished road
: O amazing, , we are close to having a good script, , this day I will make tests with these parameters
Reply With Quote
  #8  
Old 06-11-2011, 09:31
pakrat2k2's Avatar
pakrat2k2 pakrat2k2 is offline
Moderator
 
Join Date: Apr 2005
Location: Canada
Posts: 7,209
Thanks: 3,040
Thanked 9,030 Times in 3,083 Posts
pakrat2k2 is on a distinguished road
found this on RU forum too: might help if there are more then 1 freearc files

Code:
#define Archives "{src}\1.arc;DestDir:{app}\;Disk:1"
#define Archives Archives + "|" + "{src}\2.arc;DestDir:{app};Disk:2"
#define Archives Archives + "|" + "{src}\3.arc;DestDir:{app};Disk:3"
#define Archives Archives + "|" + "{src}\4.arc;DestDir:{app};Disk:4"
Reply With Quote
  #9  
Old 06-11-2011, 09:57
sulfurum1989's Avatar
sulfurum1989 sulfurum1989 is offline
Registered User
 
Join Date: Mar 2010
Location: spain
Posts: 50
Thanks: 0
Thanked 6 Times in 2 Posts
sulfurum1989 is on a distinguished road
@DN8. You Can Be more specific about these parameters, in which section you have to place them?? , (image )

PD , activate your MPs
Reply With Quote
  #10  
Old 06-11-2011, 10:29
pakrat2k2's Avatar
pakrat2k2 pakrat2k2 is offline
Moderator
 
Join Date: Apr 2005
Location: Canada
Posts: 7,209
Thanks: 3,040
Thanked 9,030 Times in 3,083 Posts
pakrat2k2 is on a distinguished road
what I posted #8, those can go i top section of script before [FILES], what DN8 posted #6 that can go in [FILES] section, but not necessary to be there. It can go anywhere.
Reply With Quote
  #11  
Old 06-11-2011, 11:07
sulfurum1989's Avatar
sulfurum1989 sulfurum1989 is offline
Registered User
 
Join Date: Mar 2010
Location: spain
Posts: 50
Thanks: 0
Thanked 6 Times in 2 Posts
sulfurum1989 is on a distinguished road
Freearc In Inno More Easier than never




Explaining the tutorial

1 - Do not put your arc sfx in Files & Dirs dont!

2 - Go to Install Run Section and

3 - Create New Item and put these commands ( like in the image )

{src}\DATA.exe
-x -d"{app}" -y -s2


To create subfolders


example ( thanks to pakrat2k2 )

-x -d"{app}"\BmGame\Movies -y -s2



PD : DATA . exe is an example (name of your choice.exe)

4 - Your ARC SFX archive must be in the Output folder of your project Inno Setup

At the end of the installation runs automatically the decompression of The Sfx

Last edited by sulfurum1989; 06-11-2011 at 21:45.
Reply With Quote
  #12  
Old 06-11-2011, 11:19
pakrat2k2's Avatar
pakrat2k2 pakrat2k2 is offline
Moderator
 
Join Date: Apr 2005
Location: Canada
Posts: 7,209
Thanks: 3,040
Thanked 9,030 Times in 3,083 Posts
pakrat2k2 is on a distinguished road
if you want subdirectories then change to this

Filename: {src}\DATA.exe; Parameters: "-x -d""{app}\xyz\"" -y -s2";

where \xyz\ is the subfolder
Reply With Quote
  #13  
Old 06-11-2011, 11:31
sulfurum1989's Avatar
sulfurum1989 sulfurum1989 is offline
Registered User
 
Join Date: Mar 2010
Location: spain
Posts: 50
Thanks: 0
Thanked 6 Times in 2 Posts
sulfurum1989 is on a distinguished road
Quote:
Originally Posted by pakrat2k2 View Post
if you want subdirectories then change to this

Filename: {src}\DATA.exe; Parameters: "-x -d""{app}\xyz\"" -y -s2";

where \xyz\ is the subfolder
I get an error decompression with this line

But the subfolders problems can be solved compressing in your sfx multiple folders at the root folder of the game

Last edited by sulfurum1989; 06-11-2011 at 11:36.
Reply With Quote
  #14  
Old 06-11-2011, 12:00
pakrat2k2's Avatar
pakrat2k2 pakrat2k2 is offline
Moderator
 
Join Date: Apr 2005
Location: Canada
Posts: 7,209
Thanks: 3,040
Thanked 9,030 Times in 3,083 Posts
pakrat2k2 is on a distinguished road
tried with {app}\xyz ?
Reply With Quote
  #15  
Old 06-11-2011, 12:16
sulfurum1989's Avatar
sulfurum1989 sulfurum1989 is offline
Registered User
 
Join Date: Mar 2010
Location: spain
Posts: 50
Thanks: 0
Thanked 6 Times in 2 Posts
sulfurum1989 is on a distinguished road
yes friend,,,

at this moment . the solution is compress multiple folders in the X game instalation folder ,, when the sfx is unpacked creates an exact copy
Reply With Quote
Reply

Tags
appearance, compressed, freearc, menú, sfx

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
The Sims Medieval DVD9 to 2xDVD5 senseman PC Games - CD/DVD Conversions 6 01-07-2011 03:06
WinRAR archive question/s coffin filler Software 4 11-10-2007 11:33
winRAR diagnostic error 1: unexpected archive end? whatevaz_cleva DC Games 1 11-07-2001 05:09



All times are GMT -7. The time now is 22:52.


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