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

Reply
 
Thread Tools Display Modes
  #16  
Old 22-03-2017, 17:19
seventhorama seventhorama is offline
Registered User
 
Join Date: Jul 2011
Location: outer space
Posts: 30
Thanks: 0
Thanked 1 Time in 1 Post
seventhorama is on a distinguished road
hello rinaldo, is it possible to add "merge" function in your installer?

Link
Reply With Quote
Sponsored Links
  #17  
Old 23-03-2017, 00:00
rinaldo's Avatar
rinaldo rinaldo is offline
Registered User
 
Join Date: Sep 2015
Location: Rome
Posts: 433
Thanks: 101
Thanked 694 Times in 190 Posts
rinaldo is on a distinguished road
Quote:
Originally Posted by seventhorama View Post
hello rinaldo, is it possible to add "merge" function in your installer?

Link

you should ask razor no me
Reply With Quote
  #18  
Old 25-03-2017, 08:51
rinaldo's Avatar
rinaldo rinaldo is offline
Registered User
 
Join Date: Sep 2015
Location: Rome
Posts: 433
Thanks: 101
Thanked 694 Times in 190 Posts
rinaldo is on a distinguished road
finish v3 version
Attached Files
File Type: 7z WUI v3.7z (5.05 MB, 191 views)
Reply With Quote
The Following 4 Users Say Thank You to rinaldo For This Useful Post:
Mini (27-03-2018), Simorq (01-12-2017), TWOELV (25-03-2017), ZAZA4EVER (31-03-2017)
  #19  
Old 14-04-2017, 13:33
artag artag is offline
Registered User
 
Join Date: Nov 2016
Location: somewhere
Posts: 20
Thanks: 9
Thanked 4 Times in 4 Posts
artag is on a distinguished road
hi rinaldo: newbie question here:

Let's say i have my game packed on 3 arc files: main.arc sound.arc videos.arc

where on the script should i put the name of the files?

thanks
Reply With Quote
  #20  
Old 27-03-2018, 09:34
Simorq's Avatar
Simorq Simorq is offline
Registered User
 
Join Date: Mar 2014
Location: Iran
Posts: 642
Thanks: 3,602
Thanked 1,304 Times in 464 Posts
Simorq is on a distinguished road
Cancel no work
Reply With Quote
  #21  
Old 27-03-2018, 10:58
rinaldo's Avatar
rinaldo rinaldo is offline
Registered User
 
Join Date: Sep 2015
Location: Rome
Posts: 433
Thanks: 101
Thanked 694 Times in 190 Posts
rinaldo is on a distinguished road
Quote:
Originally Posted by artag View Post
hi rinaldo: newbie question here:

Let's say i have my game packed on 3 arc files: main.arc sound.arc videos.arc

where on the script should i put the name of the files?

thanks
EXAMPLE:

Code:

#define Data1 "main.arc"
#define Data2 "Video.arc"
#define Data3 "Sound.arc"
#define Data4 "LanguageEN.arc"
#define Data5 "LanguageDE.arc"
#define Data6 "LanguageIT.arc"
#define Data7 "LanguageRU.arc"
#define Data8 "LanguageFR.arc"
#define Data9 "LanguageES.arc"
#define Data10 "LanguageCA.arc"


if not ISArcExtract    ( 0, 55, ExpandConstant('{src}\{#Data1}'), ExpandConstant('{app}\'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}\'), notPCFonFLY{PCFonFLY}) then break;
if not ISArcExtract    ( 0, 5,  ExpandConstant('{src}\{#Data2}'), ExpandConstant('{app}\'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}\'), notPCFonFLY{PCFonFLY}) then break;
if not ISArcExtract    ( 0, 5,  ExpandConstant('{src}\{#Data3}'), ExpandConstant('{app}\'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}\'), notPCFonFLY{PCFonFLY}) then break;
if not ISArcExtract    ( 0, 5,  ExpandConstant('{src}\{#Data4}'), ExpandConstant('{app}\'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}\'), notPCFonFLY{PCFonFLY}) then break;
if not ISArcExtract    ( 0, 5,  ExpandConstant('{src}\{#Data5}'), ExpandConstant('{app}\'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}\'), notPCFonFLY{PCFonFLY}) then break;
if not ISArcExtract    ( 0, 5,  ExpandConstant('{src}\{#Data6}'), ExpandConstant('{app}\'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}\'), notPCFonFLY{PCFonFLY}) then break;
if not ISArcExtract    ( 0, 5,  ExpandConstant('{src}\{#Data7}'), ExpandConstant('{app}\'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}\'), notPCFonFLY{PCFonFLY}) then break;
if not ISArcExtract    ( 0, 5,  ExpandConstant('{src}\{#Data8}'), ExpandConstant('{app}\'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}\'), notPCFonFLY{PCFonFLY}) then break;
if not ISArcExtract    ( 0, 5,  ExpandConstant('{src}\{#Data9}'), ExpandConstant('{app}\'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}\'), notPCFonFLY{PCFonFLY}) then break;
if not ISArcExtract    ( 0, 5,  ExpandConstant('{src}\{#Data10}'), ExpandConstant('{app}\'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}\'), notPCFonFLY{PCFonFLY}) then break;

EXAMPLE2 for 3 packed:

Code:
#define Data1 "main.arc"
#define Data2 "Video.arc"
#define Data3 "Sound.arc"


if not ISArcExtract    ( 0, 90, ExpandConstant('{src}\{#Data1}'), ExpandConstant('{app}\'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}\'), notPCFonFLY{PCFonFLY}) then break;
if not ISArcExtract    ( 0, 5,  ExpandConstant('{src}\{#Data2}'), ExpandConstant('{app}\'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}\'), notPCFonFLY{PCFonFLY}) then break;
if not ISArcExtract    ( 0, 5,  ExpandConstant('{src}\{#Data3}'), ExpandConstant('{app}\'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}\'), notPCFonFLY{PCFonFLY}) then break;
__________________
if you understand read more

Last edited by rinaldo; 27-03-2018 at 11:04.
Reply With Quote
The Following User Says Thank You to rinaldo For This Useful Post:
Simorq (27-03-2018)
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
Conversion Designer/Installer Creator Razor12911 Conversion Tutorials 1614 03-10-2024 02:24
altef_4's installer altef_4 Conversion Tutorials 244 24-05-2024 23:20
WUI lightbox Installer rinaldo Conversion Tutorials 8 02-09-2021 23:53
INDEX - Conversion Tutorial Index Razor12911 Conversion Tutorials 5 11-06-2020 03:05
Tutorial using CI 8.0.0 yener90 Conversion Tutorials 424 21-10-2014 10:49



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


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