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

Reply
 
Thread Tools Display Modes
  #31  
Old 26-02-2017, 10:16
ZakirAhmad ZakirAhmad is offline
Registered User
 
Join Date: Sep 2015
Location: Kmr
Posts: 290
Thanks: 56
Thanked 56 Times in 37 Posts
ZakirAhmad is on a distinguished road
please help me...
while unpacking i am getting unarc.dll has returned with error code 1.. arc data corrupted... I included precomp.exe, cls-precompmt.dll and cls-precompmt.ini in wpi script...
Reply With Quote
Sponsored Links
  #32  
Old 27-02-2017, 03:15
ZakirAhmad ZakirAhmad is offline
Registered User
 
Join Date: Sep 2015
Location: Kmr
Posts: 290
Thanks: 56
Thanked 56 Times in 37 Posts
ZakirAhmad is on a distinguished road
@everyone

The problem is only with scripts... cmd extractor works good...
Reply With Quote
  #33  
Old 27-02-2017, 05:27
vint56 vint56 is offline
Registered User
 
Join Date: May 2011
Location: almaty
Posts: 52
Thanks: 144
Thanked 55 Times in 31 Posts
vint56 is on a distinguished road
example on ISDone0.6final

#define Precompmt
[Setup]

[Files]
#ifdef Precompmt
Source: Include\PrecompMt\cls-precompmt.dll; DestDir: {tmp}; Flags: dontcopy
Source: Include\PrecompMt\precomp.exe; DestDir: {tmp}; Flags: dontcopy
Source: Include\PrecompMt\precomp64.exe; DestDir: {tmp}; Flags: dontcopy
#endif

[Code]
var
i:integer;

procedure CancelButtonOnClick(Sender: TObject);
begin
SuspendProc;
if MsgBox(SetupMessage(msgExitSetupMessage), mbConfirmation, MB_YESNO) = IDYES then ISDoneCancel:=1;
#ifdef Precompmt
if not IsWin64 then begin
Exec(ExpandConstant('{sys}\taskkill.exe'), ' /F /IM Precomp.exe', '', SW_HIDE, ewWaitUntilTerminated, i);
end else begin
Exec(ExpandConstant('{sys}\taskkill.exe'), ' /F /IM Precomp64.exe', '', SW_HIDE, ewWaitUntilTerminated, i);
DelTree(ExpandConstant('{app}\'), True, True, True);
end;
#endif
ResumeProc;
end;

#ifdef Precompmt
SaveStringToFile(ExpandConstant('{tmp}\cls-precompmt.ini'), '[CLS]'+#13#10+'Threads=75%'+#13#10+'Brute=0'+#13#10+'Te mp='+ExpandConstant('{tmp}'), True);
ExtractTemporaryFile('cls-precompmt.dll');
ExtractTemporaryFile('precomp.exe');
ExtractTemporaryFile('precomp64.exe');
#endif

if not ISArcExtract ( 0, 0, ExpandConstant('{src}\data-1.arc'), ExpandConstant('{app}\'), '', false, 'pass', ExpandConstant('{tmp}\cls-precompmt.ini'), ExpandConstant('{app}'), notPCFonFLY{PCFonFLY}) then break;

Last edited by vint56; 27-02-2017 at 09:12.
Reply With Quote
The Following 3 Users Say Thank You to vint56 For This Useful Post:
Prince4 (27-02-2017), rinaldo (27-02-2017), Simorq (27-02-2017)
  #34  
Old 27-02-2017, 06:49
Prince4 Prince4 is offline
Registered User
 
Join Date: Mar 2015
Location: India->Delhi->Rohini
Posts: 121
Thanks: 109
Thanked 19 Times in 15 Posts
Prince4 is on a distinguished road
Unhappy

Braw why am i still getting

Code:
Could not get the file size of null00
with whatever version of pecomp i use and also the CLS this isn't working too..

Plz a little help?

There are about 3 games that i need to put in to DVD5s that have a lot of ZLibs in them
__________________
Who's Got Time To Play Games? Huh??
Reply With Quote
  #35  
Old 27-02-2017, 06:57
ZakirAhmad ZakirAhmad is offline
Registered User
 
Join Date: Sep 2015
Location: Kmr
Posts: 290
Thanks: 56
Thanked 56 Times in 37 Posts
ZakirAhmad is on a distinguished road
please bro i have no experience in programming... can u please give me modified version of wpi which supports precompmt...
Reply With Quote
  #36  
Old 27-02-2017, 07:21
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
Quote:
Originally Posted by vint56 View Post
example on isdone0.6final

#define precompmt
[setup]

[files]
#ifdef precompmt
source: Include\precompmt\cls-precompmt.dll; destdir: {tmp}; flags: Dontcopy
source: Include\precompmt\precomp.exe; destdir: {tmp}; flags: Dontcopy
source: Include\precompmt\precomp64.exe; destdir: {tmp}; flags: Dontcopy
#endif

[code]
var
il:integer;

procedure cancelbuttononclick(sender: Tobject);
begin
suspendproc;
if msgbox(setupmessage(msgexitsetupmessage), mbconfirmation, mb_yesno) = idyes then isdonecancel:=1;
#ifdef precompmt
if not iswin64 then begin
exec(expandconstant('{sys}\taskkill.exe'), ' /f /im precomp.exe', '', sw_hide, ewwaituntilterminated, i);
end else begin
exec(expandconstant('{sys}\taskkill.exe'), ' /f /im precomp64.exe', '', sw_hide, ewwaituntilterminated, i);
deltree(expandconstant('{app}\'), true, true, true);
end;
#endif
resumeproc;
end;

#ifdef precompmt
savestringtofile(expandconstant('{tmp}\cls-precompmt.ini'), '[cls]'+#13#10+'threads=75%'+#13#10+'brute=0'+#13#10+'te mp='+expandconstant('{app}'), true);
extracttemporaryfile('cls-precompmt.dll');
extracttemporaryfile('precomp.exe');
extracttemporaryfile('precomp64.exe');
#endif

if not isarcextract ( 0, 0, expandconstant('{src}\data-1.arc'), expandconstant('{app}\'), '', false, 'pass', expandconstant('{tmp}\arc.ini'), expandconstant('{app}'), notpcfonfly{pcfonfly}) then break;
ciu
Reply With Quote
  #37  
Old 27-02-2017, 07:51
ZakirAhmad ZakirAhmad is offline
Registered User
 
Join Date: Sep 2015
Location: Kmr
Posts: 290
Thanks: 56
Thanked 56 Times in 37 Posts
ZakirAhmad is on a distinguished road
I said bro please provide wpi script which extracts precompmt. .. please please please...
Reply With Quote
  #38  
Old 27-02-2017, 10:16
vint56 vint56 is offline
Registered User
 
Join Date: May 2011
Location: almaty
Posts: 52
Thanks: 144
Thanked 55 Times in 31 Posts
vint56 is on a distinguished road
ZakirAhmad
Attached Files
File Type: rar WPI_v3.1.rar (5.49 MB, 211 views)
Reply With Quote
  #39  
Old 27-02-2017, 10:20
ZakirAhmad ZakirAhmad is offline
Registered User
 
Join Date: Sep 2015
Location: Kmr
Posts: 290
Thanks: 56
Thanked 56 Times in 37 Posts
ZakirAhmad is on a distinguished road
@vint56

thanks bro... is it working
Reply With Quote
  #40  
Old 27-02-2017, 22:06
ZakirAhmad ZakirAhmad is offline
Registered User
 
Join Date: Sep 2015
Location: Kmr
Posts: 290
Thanks: 56
Thanked 56 Times in 37 Posts
ZakirAhmad is on a distinguished road
This was good bro but i am using modified wpi script with archieve.ini

@vint56
This really helped but since i am using modified wpi script with archive.ini... i was not able to modify this using ur example script... please modify for me this script... thanks in advance...
Attached Files
File Type: rar Modify.rar (247.8 KB, 77 views)
Reply With Quote
  #41  
Old 27-02-2017, 23:58
ZakirAhmad ZakirAhmad is offline
Registered User
 
Join Date: Sep 2015
Location: Kmr
Posts: 290
Thanks: 56
Thanked 56 Times in 37 Posts
ZakirAhmad is on a distinguished road
please any one reply...
Reply With Quote
  #42  
Old 28-02-2017, 00:06
vint56 vint56 is offline
Registered User
 
Join Date: May 2011
Location: almaty
Posts: 52
Thanks: 144
Thanked 55 Times in 31 Posts
vint56 is on a distinguished road
ZakirAhmad
Attached Files
File Type: rar ZakirAhmad.rar (19.1 KB, 83 views)
Reply With Quote
The Following User Says Thank You to vint56 For This Useful Post:
ZakirAhmad (28-02-2017)
  #43  
Old 28-02-2017, 00:34
ZakirAhmad ZakirAhmad is offline
Registered User
 
Join Date: Sep 2015
Location: Kmr
Posts: 290
Thanks: 56
Thanked 56 Times in 37 Posts
ZakirAhmad is on a distinguished road
@vint56...
thanks bro,it worked... while compressing with precomp045 i am getting error arc.exe has stopped working on a 2gb file... while precomp044 works good... what am i doing wrong...
Reply With Quote
  #44  
Old 28-02-2017, 00:55
vint56 vint56 is offline
Registered User
 
Join Date: May 2011
Location: almaty
Posts: 52
Thanks: 144
Thanked 55 Times in 31 Posts
vint56 is on a distinguished road
ZakirAhmad I do not know what kind of bug you but try to add it precomp -intense -cn -t-j
arc.ini
packcmd = precomp -intense -cn -t-j -o$$arcpackedfile$$.tmp $$arcdatafile$$.tmp
Reply With Quote
The Following User Says Thank You to vint56 For This Useful Post:
ZakirAhmad (28-02-2017)
  #45  
Old 28-02-2017, 02:24
ZakirAhmad ZakirAhmad is offline
Registered User
 
Join Date: Sep 2015
Location: Kmr
Posts: 290
Thanks: 56
Thanked 56 Times in 37 Posts
ZakirAhmad is on a distinguished road
Thanks... the modified script u uploaded for me has uninstall problemm... please correct... thanks alot...
Reply With Quote
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
FIFA 09 - DVD9 MULTI 5 to DVD5 MULTI 2 SirArthur PC Games - CD/DVD Conversions 21 25-12-2009 21:00
How To Create Xbox Multi Game Dvd Discs dude XBox Games 8 23-04-2003 21:34
xbox iso tools / multi dvd-r games dude XBox Games 8 26-02-2003 15:38
looking for help with AvP2 multi player noob-boy PC Games 4 16-08-2002 16:49
Copying games without multi session writing Robitaille DC Games 5 19-11-2000 00:47



All times are GMT -7. The time now is 20:05.


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