PDA

View Full Version : This "pzlib v3" how to use


GBT repack
05-10-2017, 05:44
Thanks Razor12911 for us to release so many original programs. I will always thank him:)

But I do not understand how to use, I hope someone to share the relevant documents and the use of methods, thank everyone!:o

I am sorry, I can only speak a little English

In my country, almost no one knows

KaktoR
05-10-2017, 07:50
Here is a example. I have tested ztool with this back in the days.

pzlibv3 is included

GBT repack
06-10-2017, 06:26
Here is a example. I have tested ztool with this back in the days.

pzlibv3 is included

Thank you very much, you are a good man!

S-Ghost
06-10-2017, 19:12
Please kaktor
How to use ztool

Commands
Options

GBT repack
07-10-2017, 00:22
@ KaktoR, can you share an inno script (isdone) to me?
You share the "ztool test" very well, but I do not know how to decompress the game files.
I used to be isdone0.6final (2011/12/31). If there is a newer version, but also hope to share, thank you.

Thanks again for all the guys, later I will share my own inno script out, but now it is still semi-finished.

GBT repack
07-10-2017, 00:28
my head is spinning ,help...

Simorq
07-10-2017, 03:20
Please kaktor
How to use ztool
Commands
Options

pzlib:fast
pzlib:normal
pzlib:high
pzlib:max (Best Choice)
pzlib:ultra

[External compressor:pzlib]
header = 0
packcmd = ZTool e:pzlib:max:t25p:c128m - - <stdin> <stdout>
unpackcmd = ZTool d:{compressor}{:option}:t75p:cm0mb - - <stdin> <stdout>

[External compressor:plz4,plzo,pzstd]
header = 0
packcmd = ZTool e:{compressor}:t175p{:option} $$arcdatafile$$.tmp <stdout>
unpackcmd = ZTool d:{compressor}{:option}:t75p:cm0mb - - <stdin> <stdout>

KaktoR
07-10-2017, 03:43
pzlib from ztool is not good, that's why i don't use it
http://fileforums.com/showpost.php?p=462895&postcount=239

to change pzlib to plz4,plzo,pzstd open compress.bat (right-click -> Edit) and replace -mpzlib with -mplz4 or -mplzo or -mpzstd

GBT repack
07-10-2017, 05:31
pzlib from ztool is not good, that's why i don't use it
http://fileforums.com/showpost.php?p=462895&postcount=239

to change pzlib to plz4,plzo,pzstd open compress.bat (right-click -> Edit) and replace -mpzlib with -mplz4 or -mplzo or -mpzstd

Thank you for your reply, I have repeatedly tested the "plz4", "plzo", "pzstd" and found that their compression ratio than pzlib.
Although pzlib will be a bug, extract the file when the error, but @fitgirl has been using it .... too incredible!
I wondered how she did it ...
Guys, to share with the "ztool" related inno setup script (isdone), haste, thanks

S-Ghost
21-10-2017, 09:51
Thanks Simorq , but what is this :{compressor} mean ?

Can i use it with .bat file

Please i want to learn basics of repacking.

Thanks again simorq ..

S-Ghost
21-10-2017, 09:54
What is the best compress mothod for unreal engine 4 games

JRD!
22-10-2017, 00:53
Thanks Simorq , but what is this :{compressor} mean ?

Can i use it with .bat file

Please i want to learn basics of repacking.

Thanks again simorq ..

{compressor} is a constant recognized by FREEARC that replaces the name of the external compressor,
if you have several external compressors with the same settings you can use this constant to avoid creating additional section In the configuration file:


Example with similar parameters:

[External compressor:precomp038]
header=0
default=-slow -c9 -m9
packcmd=precomp038 {options} -o$$arcpackedfile$$.tmp $$arcdatafile$$.tmp
unpackcmd=precomp038 -o$$arcdatafile$$.tmp -r $$arcpackedfile$$.tmp

[External compressor:precomp040]
header=0
default=-slow -c9 -m9
packcmd=precomp040 {options} -o$$arcpackedfile$$.tmp $$arcdatafile$$.tmp
unpackcmd=precomp040 -o$$arcdatafile$$.tmp -r $$arcpackedfile$$.tmp


Can be replaced by that:

[External compressor:precomp038,precomp040]
header=0
default=-slow -c9 -m9
packcmd={compressor} {options} -o$$arcpackedfile$$.tmp $$arcdatafile$$.tmp
unpackcmd={compressor} -o$$arcdatafile$$.tmp -r $$arcpackedfile$$.tmp

S-Ghost
22-10-2017, 04:59
Thanks JRD for the help

Please teach me basics of repack (A-Z)

And please use simple english. ����

dbongz94
09-05-2018, 23:44
hello.
am new to pzlib and i have totally no idea how it works
can someone explain to me step by step on how i compress files using pzlib

PsYcHo_RaGE
10-05-2018, 04:46
Thank you for your reply, I have repeatedly tested the "plz4", "plzo", "pzstd" and found that their compression ratio than pzlib.
Although pzlib will be a bug, extract the file when the error, but @fitgirl has been using it .... too incredible!
I wondered how she did it ...
Guys, to share with the "ztool" related inno setup script (isdone), haste, thanks

she's not incredible stop mentioning her name here its the Razor who is the best of em all.....give him the credits

PsYcHo_RaGE
10-05-2018, 04:53
hello.
am new to pzlib and i have totally no idea how it works
can someone explain to me step by step on how i compress files using pzlib

pzlib can't be used to compress all games, you must have to play with new settings new compressors, precompressors, filters etc etc

pZLib
Pre-ZLIB (pzlib)

This program detects and unpack zlib streams for a certain input (like precomp)
giving you an option to apply a stronger compression such as LZMA.

This only detects zlib streams compressed using default and maximum level
which have headers. (It doesn't detect headerless)

Usage:
pZLib encode/decode [options] inputfile -o outputfile
inputfile/outputfile can be specified as "-" for stdin/stdout

Options:
-t#: Number of threads to use (maximum = 8 )
-t#p: (default = 50) Percentage of threads to use
-v: Verification so that restoration keeps CRC the same
-ai: Prints out additional information

Note:
Input and/or Output can be "-" to signal stdin and/or stdout usage.
Multi threading only works during restoration.
Freearc usage example included

Example:
pzlib encode $$arcdatafile$$.tmp -o $$arcpackedfile$$.tmp

PsYcHo_RaGE
10-05-2018, 05:00
@ KaktoR, can you share an inno script (isdone) to me?
You share the "ztool test" very well, but I do not know how to decompress the game files.
I used to be isdone0.6final (2011/12/31). If there is a newer version, but also hope to share, thank you.

Thanks again for all the guys, later I will share my own inno script out, but now it is still semi-finished.

if you know the compression you should also know the decompression as well if you want to repack games and become a repacker

for decompression you need to create a simple bat file with compressed file and certain decompressors and some setting to use with em for testing your decompression speed
and if you want installer to do that task for you then you should go with Razor's WPI or any other modded one or create your own installer in inno setup
then you need to place the files and certain settings in arc.ini file and you are done installing as well as uninstalling

you can also use my modded installer which is originally created by razor!!!!

darkwolves
12-05-2018, 09:05
she's not incredible stop mentioning her name here its the Razor who is the best of em all.....give him the credits

that is not going to happen both names will always come up in the forums
fitgirl has a high reputation on here and you will see her name all over
and yes she uses razors tools and credits him but she does not only use his tools
and has done many other things wich leave people speechless..
like repacking .cpk games before xtool was ever even started long before it started
she can repack unreal engine 4 games there is not a tool on here that can do that yet
razor has a reputation for a reason and so does fitgirl and both are well deserved

78372
12-05-2018, 22:25
she's not incredible stop mentioning her name here its the Razor who is the best of em all.....give him the credits

She's incredible for her works, Razor should get credits for his work, not others.

And she always give credits to other people, there are a lot of repackers who don't , so she deserves the respect.

ShivShubh
12-05-2018, 23:57
that is not going to happen both names will always come up in the forums
fitgirl has a high reputation on here and you will see her name all over
and yes she uses razors tools and credits him but she does not only use his tools
and has done many other things wich leave people speechless..
like repacking .cpk games before xtool was ever even started long before it started
she can repack unreal engine 4 games there is not a tool on here that can do that yet
razor has a reputation for a reason and so does fitgirl and both are well deserved

You mean repack Unreal Engine 4 games by unpacking the game files right ? Most of the times Unreal Engine 4 has zlib or sometimes encrypted, on the latter case you have to extract the game files to repack it.

As for CPK, you can just use CPK maker and create a cpk file out of extracted files then use xdelta to restore. Did it on Bayonetta PC and some other games.

she's not incredible stop mentioning her name here its the Razor who is the best of em all.....give him the credits

Well she doesn't always use Razor's tool

Although pzlib will be a bug, extract the file when the error, but @fitgirl has been using it .... too incredible!
I wondered how she did it ...

If you are talking about pzlib 3, then always use -t1 for precompression stage and your chances of encountering errors during decompression will be reduced by many times ! But I wonder why anyone would want to use pzlib 3 when massively better tools like ZTool or XTool exists.

darkwolves
13-05-2018, 01:25
@shiv i already know all of that the biggest unreal engine 4 game i have repacked is marvel vs capcom infinite
yes it can be extracted and packed back up but there is no precompression tool for them
thing about this game is it will not run decrypted so it also had to be re encrypted
as for cpk i used the same method as you that is until xtool

PsYcHo_RaGE
15-05-2018, 01:48
that is not going to happen both names will always come up in the forums
fitgirl has a high reputation on here and you will see her name all over
and yes she uses razors tools and credits him but she does not only use his tools
and has done many other things wich leave people speechless..
like repacking .cpk games before xtool was ever even started long before it started
she can repack unreal engine 4 games there is not a tool on here that can do that yet
razor has a reputation for a reason and so does fitgirl and both are well deserved

nevermind she's still nothing in my opinion even she has done many things which leave people speechless......

PsYcHo_RaGE
15-05-2018, 01:53
She's incredible for her works, Razor should get credits for his work, not others.

And she always give credits to other people, there are a lot of repackers who don't , so she deserves the respect.

very well but still she's nothing in my opinion even she has done incredible works.....But as much as we know razor i respect him and others too

and whom are you mentioning that she has given credits to other people whom she gave?

78372
15-05-2018, 03:00
That's your opinion, for that you can't ask others to "stop mentioning her name"

She give credits to the people from whom she takes tools, there are other repack teams(not to mention here due to rules) who don't.

darkwolves
15-05-2018, 04:31
nevermind she's still nothing in my opinion even she has done many things which leave people speechless......

you are going to end up getting told off all over this forum if you keep up with that attitude...
how much do you actually know about either person?
do you think no one ever helped razor develop anything?? if you had done more reading through here
then you would know fitgirl has been supplying him with alot of what he needs to make xtool..
so keep trash talking fitgirl and people aren't going to like you they won't want to help you..
your posts will end up being passed over and ignored by most users..
so be very careful what you say about anyone on here until you know all the facts about them...

doofoo24
15-05-2018, 09:07
so be very careful what you say about anyone on here...

wow :(
BETTER FOR THE MODERATOR TO STEP IN BEFORE THIS GET OUT OF HAND

darkwolves
15-05-2018, 09:49
wow :(
BETTER FOR THE MODERATOR TO STEP IN BEFORE THIS GET OUT OF HAND

oh it won't you can be honest and not be disrespectful at the same time
and people should be mindful about what they say about others
you never know that could be the only person around at the time that can help you..
with problems you may be having with tools
and they likley won't if they do not like you

Sergey3695
15-05-2018, 11:41
my opinion
https://i.ytimg.com/vi/M0EAyMBGwf4/hqdefault.jpg
sorry me.

KaktoR
15-05-2018, 11:53
Calm down people.

Otherwise i will write one of the mods to clean this mess.

darkwolves
15-05-2018, 20:28
Calm down people.

Otherwise i will write one of the mods to clean this mess.

i am aways calm nothing i have said was said with malcontent
just being honest is all

PsYcHo_RaGE
18-05-2018, 10:35
That's your opinion, for that you can't ask others to "stop mentioning her name"

She give credits to the people from whom she takes tools, there are other repack teams(not to mention here due to rules) who don't.

well i was really guessing these words from ya guys and i think a lot about it
guys found what we are upto, why we are behaving like child's and talking a mess
i don't want to break any friendship or say its temporary with you guys because of a .......
i am sorry guys i think i was drunk that time:confused:
but i will keep this personal with ........

PsYcHo_RaGE
18-05-2018, 10:39
you are going to end up getting told off all over this forum if you keep up with that attitude...
how much do you actually know about either person?
do you think no one ever helped razor develop anything?? if you had done more reading through here
then you would know fitgirl has been supplying him with alot of what he needs to make xtool..
so keep trash talking fitgirl and people aren't going to like you they won't want to help you..
your posts will end up being passed over and ignored by most users..
so be very careful what you say about anyone on here until you know all the facts about them...

better to drop this topic away, i don't want any mess
you are all like my friends, i don't know why we are doing this because of .........
Still i want to say sorry to you:)

PsYcHo_RaGE
18-05-2018, 10:41
https://i.ytimg.com/vi/M0EAyMBGwf4/hqdefault.jpg
sorry me.

well i don't know what you are trying to tell me but don't get involved in this mess;)

darkwolves
18-05-2018, 11:28
better to drop this topic away, i don't want any mess
you are all like my friends, i don't know why we are doing this because of .........
Still i want to say sorry to you:)

its cool there is no reason for anything to escalate into a war we are all here for the same reasons

darkwolves
18-05-2018, 11:30
as far as pzlib 3 is concerned there is already a thread for it here all that is needed to be known about it

http://fileforums.com/showthread.php?t=98672

yasitha
10-01-2019, 10:40
What is this Civil War? :D :D :D

I have search *marvel vs capcom infinite*
and i have found...there's WAR :D

Hahaha finally it cool down.
From sake... :D

anyways.....

Anyone knows about
What precomp used for
Marvel vs capcom infinite?