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

Reply
 
Thread Tools Display Modes
  #61  
Old 05-10-2020, 16:29
prince55 prince55 is offline
Registered User
 
Join Date: Mar 2017
Location: Egypt
Posts: 33
Thanks: 64
Thanked 11 Times in 8 Posts
prince55 is on a distinguished road
Does anyone still have UE4DT v5 ?
I need it
Reply With Quote
Sponsored Links
  #62  
Old 08-10-2020, 21:05
Cesar82's Avatar
Cesar82 Cesar82 is offline
Registered User
 
Join Date: May 2011
Location: Brazil
Posts: 1,016
Thanks: 1,721
Thanked 2,178 Times in 741 Posts
Cesar82 is on a distinguished road
@Razor12911
Could you create a version for us to use this way (key as a parameter)?

Code:
Arc.ini
[External compressor:ue4dt]
header    = 0
packcmd   = ue4dt.exe e -m2 {options} <stdin> <stdout>
unpackcmd = ue4dt.exe d -m2 {options} <stdin> <stdout>

Pack.bat
arc.exe a -ep1 -r -ed -s; -w.\temp -mue4dt:0x5DD20432F2AD810071033FC3F925FFDFD647514524D0A0D222E17D76BAF57BFD+lzma:ultra data.arc "pack\*"
It would be great if we had that possibility.
In this way we could send the key from a .bat file (like DiskSpan.bat currently used together with CIU).
Reply With Quote
The Following User Says Thank You to Cesar82 For This Useful Post:
KaktoR (09-10-2020)
  #63  
Old 08-10-2020, 23:59
Masquerade's Avatar
Masquerade Masquerade is offline
Registered User
 
Join Date: Jan 2020
Location: Monte d'Or
Posts: 1,158
Thanks: 284
Thanked 1,348 Times in 612 Posts
Masquerade is on a distinguished road
@Cesar92

I had a similar idea, however {option} will still translate any given value into a command line switch.

So, ue4dt must accept this command line:
Code:
ue4dt.exe e -m2 key <stdin> <stdout>
If you used {option}, a - will be appended to the key, making the run command:
Code:
ue4dt.exe e -m2 -key <stdin> <stdout>
leading to an error.
Reply With Quote
  #64  
Old 09-10-2020, 05:31
KaktoR's Avatar
KaktoR KaktoR is offline
Lame User
 
Join Date: Jan 2012
Location: From outer space
Posts: 4,370
Thanks: 1,076
Thanked 6,971 Times in 2,637 Posts
KaktoR is on a distinguished road
A really good idea!

This way you can copy&paste the key directly on cmd line instead of going to arc.ini and search for it
__________________
Haters gonna hate
Reply With Quote
  #65  
Old 09-10-2020, 13:12
Cesar82's Avatar
Cesar82 Cesar82 is offline
Registered User
 
Join Date: May 2011
Location: Brazil
Posts: 1,016
Thanks: 1,721
Thanked 2,178 Times in 741 Posts
Cesar82 is on a distinguished road
After reading the information in Razor12911 posts better.
I realized that it would also be necessary to set the parameter -m [1/2], so that through the .bat file it is possible to send the type.

It may not be possible to implement this, but it would be good.
But the normal mode could not be removed because for extraction it would be necessary to use the current mode using SetIniString for the decompression to be done using IsDone.

Maybe something that lets you use it like this:
Code:
ue4dt.exe e -m -key <stdin> <stdout>

arc.exe a -ep1 -r -ed -s; -w.\temp -mue4dt:2:0x5DD20432F2AD810071033FC3F925FFDFD647514524D0A0D222E17D76BAF57BFD+lzma:ultra data.arc "pack\*"
Reply With Quote
  #66  
Old 09-10-2020, 14:15
Razor12911's Avatar
Razor12911 Razor12911 is offline
Noob
 
Join Date: Jul 2012
Location: South Africa
Posts: 3,746
Thanks: 2,141
Thanked 11,093 Times in 2,295 Posts
Razor12911 is on a distinguished road
Update available

Changes

- As requested, added -k parameter so you can set key directly when using Freearc.

Code:
[External compressor:ue4dt]
header    = 0
packcmd   = ue4dt.exe e {options} <stdin> <stdout>
unpackcmd = ue4dt.exe d {options} <stdin> <stdout>
Code:
-mue4dt:m2:k0x5DD20432F2AD810071033FC3F925FFDFD647514524D0A0D222E17D76BAF57BFD
Reply With Quote
The Following 5 Users Say Thank You to Razor12911 For This Useful Post:
Cesar82 (09-10-2020), ffmla (10-10-2020), Gehrman (14-10-2020), KaktoR (09-10-2020), Masquerade (09-10-2020)
  #67  
Old 09-10-2020, 14:28
Masquerade's Avatar
Masquerade Masquerade is offline
Registered User
 
Join Date: Jan 2020
Location: Monte d'Or
Posts: 1,158
Thanks: 284
Thanked 1,348 Times in 612 Posts
Masquerade is on a distinguished road
What is the purpose of -m switch?
Reply With Quote
  #68  
Old 09-10-2020, 14:30
Razor12911's Avatar
Razor12911 Razor12911 is offline
Noob
 
Join Date: Jul 2012
Location: South Africa
Posts: 3,746
Thanks: 2,141
Thanked 11,093 Times in 2,295 Posts
Razor12911 is on a distinguished road
https://fileforums.com/showpost.php?...1&postcount=52

Code:
-m = method (1 = games that use borderlands3, street figher v... format, 2 = games that use rune ii format)
Reply With Quote
The Following User Says Thank You to Razor12911 For This Useful Post:
ffmla (31-10-2020)
  #69  
Old 10-10-2020, 00:27
Masquerade's Avatar
Masquerade Masquerade is offline
Registered User
 
Join Date: Jan 2020
Location: Monte d'Or
Posts: 1,158
Thanks: 284
Thanked 1,348 Times in 612 Posts
Masquerade is on a distinguished road
Quote:
Originally Posted by Razor12911 View Post
https://fileforums.com/showpost.php?...1&postcount=52

Code:
-m = method (1 = games that use borderlands3, street figher v... format, 2 = games that use rune ii format)
How do we tell the difference between the 2 formats? By inspection of the game files in either sides, is m1 for pak chunks and m2 for single paks?
Reply With Quote
  #70  
Old 30-10-2020, 10:05
KaktoR's Avatar
KaktoR KaktoR is offline
Lame User
 
Join Date: Jan 2012
Location: From outer space
Posts: 4,370
Thanks: 1,076
Thanked 6,971 Times in 2,637 Posts
KaktoR is on a distinguished road
For some reason I can't use the new version with k parameter. cmd process doesn't go above 0.3% (ue4dt.exe has a cpu load at 9.9%), it just like stucks there forever.

I tested on BL3.

The old version of ue4dt works fine (with key inside arc.ini).
__________________
Haters gonna hate
Reply With Quote
  #71  
Old 30-10-2020, 14:46
Masquerade's Avatar
Masquerade Masquerade is offline
Registered User
 
Join Date: Jan 2020
Location: Monte d'Or
Posts: 1,158
Thanks: 284
Thanked 1,348 Times in 612 Posts
Masquerade is on a distinguished road
Quote:
Originally Posted by KaktoR View Post
For some reason I can't use the new version with k parameter. cmd process doesn't go above 0.3%
Same here, I tried on Xuan Yuan yesterday.

I thought this morning it was because I forgot to specify an -m switch - did you do this?
Reply With Quote
  #72  
Old 30-10-2020, 19:35
FitGirl FitGirl is offline
Registered User
 
Join Date: Dec 2014
Location: Riga
Posts: 203
Thanks: 20
Thanked 243 Times in 131 Posts
FitGirl is on a distinguished road
Quote:
Originally Posted by Masquerade View Post
Same here, I tried on Xuan Yuan yesterday.

I thought this morning it was because I forgot to specify an -m switch - did you do this?
Why? Only TOC is encrypted in final version, unlike in demo.
Reply With Quote
  #73  
Old 31-10-2020, 02:06
Masquerade's Avatar
Masquerade Masquerade is offline
Registered User
 
Join Date: Jan 2020
Location: Monte d'Or
Posts: 1,158
Thanks: 284
Thanked 1,348 Times in 612 Posts
Masquerade is on a distinguished road
Quote:
Originally Posted by FitGirl View Post
Only TOC is encrypted in final version
TOC?

I checked the game exe for any encryption keys, found one (using spiritovod's tool) - so I just guessed that the main pak would be encrypted too.
Reply With Quote
  #74  
Old 31-10-2020, 11:42
FitGirl FitGirl is offline
Registered User
 
Join Date: Dec 2014
Location: Riga
Posts: 203
Thanks: 20
Thanked 243 Times in 131 Posts
FitGirl is on a distinguished road
TOC - table of content. Game data for XS7 is not encrypted.
Reply With Quote
The Following 2 Users Say Thank You to FitGirl For This Useful Post:
L0v3craft (21-01-2021), Masquerade (31-10-2020)
  #75  
Old 12-11-2020, 05:49
Cesar82's Avatar
Cesar82 Cesar82 is offline
Registered User
 
Join Date: May 2011
Location: Brazil
Posts: 1,016
Thanks: 1,721
Thanked 2,178 Times in 741 Posts
Cesar82 is on a distinguished road
@Razor12911, when you have time you could check why the previous version of ue4dt R6 works with Borderlands 3, but the new version R7 does not work.

The R7 version does not seem to work with this game.
Kaktor had to revert to ue4dt R6 version for it to work.
See the post.

The commands used in CIU were:
Code:
ue4dt:-m1:-k0x115EE4F8C625C792F37A503308048E79726E512F0BF8D2AD7C4C87BC5947CBA7+xzlib+srep:m3f+4x4:lzma

Command on DiskSpan.bat
Resources\Arc.exe a -cfg".\DiskSpan_x64.ini" -ep1 -r -ed -s; -w.\TEMP -mue4dt:-m1:-k0x115EE4F8C625C792F37A503308048E79726E512F0BF8D2AD7C4C87BC5947CBA7+xzlib+srep:m3f+4x4:lzma+diskspan:4420mb:4470mb -dp"D:\Game\Borderlands 3" ".\Output_Dir\Data1.bin.001"

DiskSpan_x64.ini (Arc cfgFile)
[External compressor:ue4dt,UE4DT]
header    = 0
packcmd   = "PRE\RZTools\UE4DT\ue4dt.exe" e {options} <stdin> <stdout>
unpackcmd = "PRE\RZTools\UE4DT\ue4dt.exe" d {options} <stdin> <stdout>
Thanks!

Last edited by Cesar82; 12-11-2020 at 09:43.
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
Project CARS 2/3 Bff Decryption Tool Razor12911 Conversion Tutorials 32 28-03-2022 10:37
What is the best method to compress Unreal Engine games? danswano Conversion Tutorials 12 13-12-2020 04:15
Unreal Engine 3/4 and lolzx Compressor danswano Conversion Tutorials 37 15-04-2018 10:42
S.T.A.L.K.E.R. Shadow of Chernobyle - Crashing Cpt.Canuck General Gaming 4 23-03-2007 12:01
Unreal engine game cracks Zargonog PC Games 4 15-11-2000 06:38



All times are GMT -7. The time now is 01:42.


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