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

Reply
 
Thread Tools Display Modes
  #16  
Old 25-12-2017, 11:23
KaktoR's Avatar
KaktoR KaktoR is offline
Lame User
 
Join Date: Jan 2012
Location: From outer space
Posts: 4,100
Thanks: 1,058
Thanked 6,661 Times in 2,487 Posts
KaktoR is on a distinguished road
What about 256 instead? Will it crash?
__________________
Haters gonna hate
Reply With Quote
Sponsored Links
  #17  
Old 27-12-2017, 10:13
doofoo24 doofoo24 is offline
Registered User
 
Join Date: Nov 2016
Location: canada
Posts: 408
Thanks: 138
Thanked 463 Times in 227 Posts
doofoo24 is on a distinguished road
Quote:
Originally Posted by doofoo24 View Post
* note if i use 4x4:lzma the setup always crash while if i use ztool with
the problem is in cls-afr it work well if i use 1 or 2 thread for afr
SaveStringToFile(ExpandConstant('{tmp}\cls.ini'), '[afr]'+#13#10+'Threads=1', True);

otherwise if i use more threads witch 4x4:lzma it crash...
*if i use lzma without 4x4 and remove the threads count it work will the setup(afr) cpu usage almost 100%

Last edited by doofoo24; 27-12-2017 at 10:17.
Reply With Quote
  #18  
Old 27-12-2017, 14:22
Mini Mini is offline
Registered User
 
Join Date: Nov 2013
Location: -
Posts: 125
Thanks: 171
Thanked 76 Times in 43 Posts
Mini is on a distinguished road
[Setup]
AppName=My Program
AppVerName=My Program v 1.7
DefaultDirName={pf}\My Program
OutputBaseFilename=example
OutputDir=.

[Languages]
Name: russian; MessagesFile: compiler:Languages\Russian.isl

[Code]
type
TSystemInfo = record
wProcessorArchitecture: Word;
wReserved: Word;
dwPageSize: DWORD;
lpMinimumApplicationAddress: Integer;
lpMaximumApplicationAddress: Integer;
dwActiveProcessorMask: DWORD;
dwNumberOfProcessors: DWORD;
dwProcessorType: DWORD;
dwAllocationGranularity: DWORD;
wProcessorLevel: Integer;
wProcessorRevision: Word;
end;

procedure GetSystemInfo(var lpSystemInfo: TSystemInfo); external '[email protected] stdcall';

procedure InitializeWizard();
var
SysInfo: TSystemInfo;
Threads: Integer;
begin
GetSystemInfo(SysInfo);
Threads:= SysInfo.dwNumberOfProcessors;

SetIniString('Afr', 'Threads', IntToStr(Threads), ExpandConstant('{tmp}\cls.ini'));
end;
Reply With Quote
The Following 3 Users Say Thank You to Mini For This Useful Post:
Abbat (18-08-2020), doofoo24 (27-12-2017), Simorq (27-12-2017)
  #19  
Old 27-12-2017, 22:34
doofoo24 doofoo24 is offline
Registered User
 
Join Date: Nov 2016
Location: canada
Posts: 408
Thanks: 138
Thanked 463 Times in 227 Posts
doofoo24 is on a distinguished road
so it work cls afr the same number of threads as the system but sometime i get setup has stop working in the beginning ?
* it's seems to be from isdone if i put afr data first i get this error but if i put different data that did't use afr first and put afr data second seems to fix the problem...

ISArcExtract ( 0, 1, ExpandConstant('{src}\Setup-2.arc'), ExpandConstant('{app}'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}'), False) then break; (here i compress game file like exe/bik)
ISArcExtract ( 0, 99, ExpandConstant('{src}\Setup-1.arc'), ExpandConstant('{app}'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}'), False) then break; (here only forge file)

seems to fix the problem that i have...
AFR work GREAT
other test i done ON FORGE FILE only
ac 1 i get 1.10 gb
ac liberation 820mb

Last edited by doofoo24; 04-01-2018 at 14:31.
Reply With Quote
The Following User Says Thank You to doofoo24 For This Useful Post:
oltjon (28-12-2017)
  #20  
Old 04-01-2018, 13:08
doofoo24 doofoo24 is offline
Registered User
 
Join Date: Nov 2016
Location: canada
Posts: 408
Thanks: 138
Thanked 463 Times in 227 Posts
doofoo24 is on a distinguished road
Question

does anyone try to install the new security update for windows for intel processor ?
because i am getting this error when i try to decompress is it srep or afr or inno ?

Last edited by doofoo24; 12-05-2018 at 21:14.
Reply With Quote
  #21  
Old 04-01-2018, 14:29
doofoo24 doofoo24 is offline
Registered User
 
Join Date: Nov 2016
Location: canada
Posts: 408
Thanks: 138
Thanked 463 Times in 227 Posts
doofoo24 is on a distinguished road
Talking

so the problem trun to be from the old cls-srep...
using the new srep from ProFrager (cls_srep_v0.03b) seem to fix the problem now no temp file super fast...
BIG BIG THANK TO ProFrager...

Last edited by doofoo24; 04-01-2018 at 14:43.
Reply With Quote
  #22  
Old 04-01-2018, 19:09
ZakirAhmad ZakirAhmad is offline
Registered User
 
Join Date: Sep 2015
Location: Kmr
Posts: 290
Thanks: 56
Thanked 54 Times in 37 Posts
ZakirAhmad is on a distinguished road
is AFR going to include other lzo game engines like Dunia, Unreal engine etc.
Reply With Quote
  #23  
Old 05-01-2018, 04:47
Andu21 Andu21 is offline
Registered User
 
Join Date: Feb 2016
Location: Impossible Planet
Posts: 114
Thanks: 179
Thanked 48 Times in 38 Posts
Andu21 is on a distinguished road
Quote:
Originally Posted by ZakirAhmad View Post
is AFR going to include other lzo game engines like Dunia, Unreal engine etc.
I don't think so, it's called Anvil Forge Recompressor for a reason.

For an Unreal recompressor use: http://fileforums.com/showthread.php?t=99953
Reply With Quote
  #24  
Old 07-01-2018, 02:31
doofoo24 doofoo24 is offline
Registered User
 
Join Date: Nov 2016
Location: canada
Posts: 408
Thanks: 138
Thanked 463 Times in 227 Posts
doofoo24 is on a distinguished road
does anyone encounter error when using afr in decompression ?
seems to be memory issues...

Last edited by doofoo24; 12-05-2018 at 21:14.
Reply With Quote
  #25  
Old 10-01-2018, 09:41
ZakirAhmad ZakirAhmad is offline
Registered User
 
Join Date: Sep 2015
Location: Kmr
Posts: 290
Thanks: 56
Thanked 54 Times in 37 Posts
ZakirAhmad is on a distinguished road
i encountered archieve data correpted in assassins creed 1
Reply With Quote
  #26  
Old 30-01-2018, 13:53
oltjon's Avatar
oltjon oltjon is offline
Registered User
 
Join Date: Dec 2013
Location: UNITED STATES OF ALBANIA
Posts: 218
Thanks: 1,132
Thanked 167 Times in 79 Posts
oltjon is on a distinguished road
Another alpha, just added support for containers from the updated R6S (ZSTD-streams). I did not fix any bugs, and CLS did not do it.
I did it for a long time, now I just recompiled, like the odd works.

For the old games, use stable (019 version), this one is only to be pampered
CREDIT
Edison007
Attached Files
File Type: 7z AFR_v020a7.7z (448.1 KB, 237 views)
Reply With Quote
The Following 6 Users Say Thank You to oltjon For This Useful Post:
Crynuvo (05-02-2018), danswano (04-02-2018), elit (01-04-2018), EzzEldin16 (30-01-2018), nickwazhere2012 (31-01-2018), Simorq (04-02-2018)
  #27  
Old 04-02-2018, 06:38
danswano danswano is offline
Registered User
 
Join Date: Feb 2013
Location: Luxm
Posts: 314
Thanks: 218
Thanked 27 Times in 22 Posts
danswano is on a distinguished road
Question

There is no progress bar when using arf_x64.exe to unpack?

Last edited by danswano; 04-02-2018 at 06:48.
Reply With Quote
  #28  
Old 04-02-2018, 06:52
Simorq's Avatar
Simorq Simorq is offline
Registered User
 
Join Date: Mar 2014
Location: Iran
Posts: 642
Thanks: 3,602
Thanked 1,299 Times in 464 Posts
Simorq is on a distinguished road
Quote:
Originally Posted by danswano View Post
There is no progress bar when using arf_x64.exe to unpack?
not be support for stdin/out
Reply With Quote
The Following User Says Thank You to Simorq For This Useful Post:
danswano (04-02-2018)
  #29  
Old 04-02-2018, 06:59
danswano danswano is offline
Registered User
 
Join Date: Feb 2013
Location: Luxm
Posts: 314
Thanks: 218
Thanked 27 Times in 22 Posts
danswano is on a distinguished road
So there is no way to use afr with progress bar for ACO now?
Reply With Quote
  #30  
Old 05-02-2018, 05:48
drsanjula's Avatar
drsanjula drsanjula is offline
Registered User
 
Join Date: Aug 2015
Location: Sri-lanka
Posts: 13
Thanks: 0
Thanked 0 Times in 0 Posts
drsanjula is on a distinguished road
Does this work with ACOrigins?
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
Fast Zlib Recompressor by Razor12911 (*Test*) panker1992 Conversion Tutorials 25 27-04-2016 05:22
Hunted The Demons Forge 2xDVD5 mesut28 PC Games - CD/DVD Conversions 14 24-01-2016 06:33
Hunted The Demon's Forge (1x DVD5) *INNO+FreeArc* peterf1999 PC Games - CD/DVD Conversions 18 24-12-2012 03:06
about battle forge hacks. shlomi8780 Game Trainers 0 25-06-2009 04:14
Forge of freedom Leemarvin PC Games 3 31-01-2007 17:37



All times are GMT -7. The time now is 11:54.


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