Go Back   FileForums > Game Backup > PC Games > PC Games - CD/DVD Conversions > Conversion Tutorials
Register FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 29-11-2017, 08:45
pnKed pnKed is offline
Registered User
 
Join Date: Jan 2017
Location: Brexit
Posts: 7
Thanks: 0
Thanked 0 Times in 0 Posts
pnKed is on a distinguished road
How do we use this script to make a compressed game?
Reply With Quote
Sponsored Links
  #2  
Old 29-11-2017, 08:49
KaktoR's Avatar
KaktoR KaktoR is offline
Lame User
 
Join Date: Jan 2012
Location: From outer space
Posts: 4,688
Thanks: 1,106
Thanked 7,335 Times in 2,837 Posts
KaktoR is on a distinguished road
Use the _Tools folder for compressing game files.

Use script to create setup.exe for unpacking archives.

Btw, last round of testing was good, except new script tomorrow
__________________
Haters gonna hate
Reply With Quote
The Following User Says Thank You to KaktoR For This Useful Post:
pakrat2k2 (29-11-2017)
  #3  
Old 29-11-2017, 09:58
pnKed pnKed is offline
Registered User
 
Join Date: Jan 2017
Location: Brexit
Posts: 7
Thanks: 0
Thanked 0 Times in 0 Posts
pnKed is on a distinguished road
Quote:
Originally Posted by KaktoR View Post
Use the _Tools folder for compressing game files.

Use script to create setup.exe for unpacking archives.

Btw, last round of testing was good, except new script tomorrow
How do we edit the music out? Modifying the script will stop it but will the music option still appear when on the setup.exe?
Reply With Quote
  #4  
Old 29-11-2017, 10:17
KaktoR's Avatar
KaktoR KaktoR is offline
Lame User
 
Join Date: Jan 2012
Location: From outer space
Posts: 4,688
Thanks: 1,106
Thanked 7,335 Times in 2,837 Posts
KaktoR is on a distinguished road
If you don't want music, just change

#define Music

to

;#define Music

Just add a ; before
__________________
Haters gonna hate
Reply With Quote
  #5  
Old 29-11-2017, 10:21
pnKed pnKed is offline
Registered User
 
Join Date: Jan 2017
Location: Brexit
Posts: 7
Thanks: 0
Thanked 0 Times in 0 Posts
pnKed is on a distinguished road
Cheers, I've compressed a game using Compressor 2.1 but have no idea how to implement the script into it so it will unpack itself.
Reply With Quote
  #6  
Old 29-11-2017, 10:23
KaktoR's Avatar
KaktoR KaktoR is offline
Lame User
 
Join Date: Jan 2012
Location: From outer space
Posts: 4,688
Thanks: 1,106
Thanked 7,335 Times in 2,837 Posts
KaktoR is on a distinguished road
Create Setup.exe, move it to compressed game files (there should be a records.ini file)
__________________
Haters gonna hate
Reply With Quote
  #7  
Old 29-11-2017, 10:31
pnKed pnKed is offline
Registered User
 
Join Date: Jan 2017
Location: Brexit
Posts: 7
Thanks: 0
Thanked 0 Times in 0 Posts
pnKed is on a distinguished road
Can't find a records.ini file. Sadly, could you send me an example of a script made to make a setup.exe for a UltraARC compressed .arc file?
Reply With Quote
  #8  
Old 29-11-2017, 10:38
KaktoR's Avatar
KaktoR KaktoR is offline
Lame User
 
Join Date: Jan 2012
Location: From outer space
Posts: 4,688
Thanks: 1,106
Thanked 7,335 Times in 2,837 Posts
KaktoR is on a distinguished road
There is one from where you have compressed a game.
__________________
Haters gonna hate
Reply With Quote
  #9  
Old 29-11-2017, 10:42
pnKed pnKed is offline
Registered User
 
Join Date: Jan 2017
Location: Brexit
Posts: 7
Thanks: 0
Thanked 0 Times in 0 Posts
pnKed is on a distinguished road
I see now, moving the exe there doesn't fix things, I prob need to add some paths? Thanks for the help btw!

Last edited by pnKed; 29-11-2017 at 10:44.
Reply With Quote
  #10  
Old 29-11-2017, 10:55
pakrat2k2's Avatar
pakrat2k2 pakrat2k2 is offline
Moderator
 
Join Date: Apr 2005
Location: Canada
Posts: 7,209
Thanks: 3,040
Thanked 9,043 Times in 3,086 Posts
pakrat2k2 is on a distinguished road
Quote:
Originally Posted by pnKed View Post
I see now, moving the exe there doesn't fix things, I prob need to add some paths? Thanks for the help btw!
no, just move the setup.exe, records.ini, archives ( from ultraarc )

all in a folder.

what I do is set an output folder ( within script itself ) copy the files/folder
from ultraarc into the output folder, then when everythings together the output from ultraarc will always be in output folder. no searching for the files.
Reply With Quote
  #11  
Old 29-11-2017, 11:06
pnKed pnKed is offline
Registered User
 
Join Date: Jan 2017
Location: Brexit
Posts: 7
Thanks: 0
Thanked 0 Times in 0 Posts
pnKed is on a distinguished road
Quote:
Originally Posted by pakrat2k2 View Post
no, just move the setup.exe, records.ini, archives ( from ultraarc )

all in a folder.

what I do is set an output folder ( within script itself ) copy the files/folder
from ultraarc into the output folder, then when everythings together the output from ultraarc will always be in output folder. no searching for the files.
I do have this from the records:
Code:
[Record1]
Type=Freearc_Original
Source={src}\Data1.Bin
Output={app}
Disk=1
[Record2]
Type=Split
Source={src}\Data2a.Bin
Output={app}\Data2.Bin
Disk=1
[Record3]
Type=Split
Source={src}\Data2b.Bin
Output={app}\Data2.Bin
Disk=2
[Record4]
Type=Freearc_Split
Source={app}\Data2.Bin
Output={app}
Disk=2
[Record5]
Type=Freearc_Original
Source={src}\Data3.Bin
Output={app}
Disk=2
[Record6]
Type=Split
Source={src}\Data4a.Bin
Output={app}\Data4.Bin
Disk=2
[Record7]
Type=Split
Source={src}\Data4b.Bin
Output={app}\Data4.Bin
Disk=3
[Record8]
Type=Freearc_Split
Source={app}\Data4.Bin
Output={app}
Disk=3
Do I add this to the script?
Reply With Quote
  #12  
Old 29-11-2017, 11:46
KaktoR's Avatar
KaktoR KaktoR is offline
Lame User
 
Join Date: Jan 2012
Location: From outer space
Posts: 4,688
Thanks: 1,106
Thanked 7,335 Times in 2,837 Posts
KaktoR is on a distinguished road
No, just run setup.exe, then install
__________________
Haters gonna hate
Reply With Quote
  #13  
Old 30-11-2017, 06:46
pnKed pnKed is offline
Registered User
 
Join Date: Jan 2017
Location: Brexit
Posts: 7
Thanks: 0
Thanked 0 Times in 0 Posts
pnKed is on a distinguished road
Doesn't do anything sadly
Reply With Quote
  #14  
Old 30-11-2017, 06:52
KaktoR's Avatar
KaktoR KaktoR is offline
Lame User
 
Join Date: Jan 2012
Location: From outer space
Posts: 4,688
Thanks: 1,106
Thanked 7,335 Times in 2,837 Posts
KaktoR is on a distinguished road
Make sure #define UltraARC is enabled.
__________________
Haters gonna hate
Reply With Quote
  #15  
Old 30-11-2017, 07:06
KaktoR's Avatar
KaktoR KaktoR is offline
Lame User
 
Join Date: Jan 2012
Location: From outer space
Posts: 4,688
Thanks: 1,106
Thanked 7,335 Times in 2,837 Posts
KaktoR is on a distinguished road
Code:
Update v6.9.5
- All settings are now in Settings.ini
- Added Internal Inno compression. Now you have to choose between UltraARC, DiskSpan and Internal Inno
- Fixed some bugs
- Added System requirements page
- Added ISSysInfo.dll by peterf1999
- Removed the Slideshow Fullscreen option by now because of some bugs with it. Slideshow is now always in fullscreen
- Changed disk requirement appereance
- Changed SmallBitmap to a banner bitmap
- Added some more options to Settings.ini
- Minor improvements
FF doesn't let me upload anything atm. Have pakrat send a copy, maybe he can upload it
__________________
Haters gonna hate

Last edited by KaktoR; 30-11-2017 at 07:09.
Reply With Quote
The Following 4 Users Say Thank You to KaktoR For This Useful Post:
arkantos7 (02-12-2017), kassane (02-12-2017), Simorq (30-11-2017), Titeuf (30-11-2017)
Reply


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
[Help] need Advanced Installer script with Razor1911's UltraArc module rez3vil Conversion Tutorials 3 15-04-2024 02:24
Portable Installer Inno Setup Script y_thelastknight Conversion Tutorials 59 23-10-2020 00:02
INDEX - Conversion Tutorial Index Razor12911 Conversion Tutorials 5 11-06-2020 02:05
Simple Arc Installer 78372 Conversion Tutorials 1 15-06-2017 15:37
MSC+Srep+lzma Simple Script Example gozarck Conversion Tutorials 10 07-09-2015 16:31



All times are GMT -7. The time now is 14:28.


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