-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
154 additions
and
76 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
# Garkin's UnPAZ v1.1 | ||
Tool for extracting Black Desert Online archives. | ||
|
||
### UnPAZ \<input file\> \<commands\> | ||
|
||
*\<input file\>*: name of .meta or .paz file (default: pad00000.meta) | ||
*\<commands\>*: | ||
*-f \<mask\>*: Filter, this argument must be followed by mask. Mask supports wildcards * and ?. | ||
*-o \<path\>*: Output folder, this argument must be followed by path. | ||
*-h*: Print this help text | ||
*-l*: List file names without extracting them | ||
*-n*: No folder structure, extract files directly to output folder. | ||
*-y*: Yes to all questions (creating folders, overwritting files). | ||
*-q*: Quiet (limit printed messages to file names) | ||
|
||
### Examples: | ||
UnPAZ pad00001.paz -f *.luac | ||
UnPAZ pad00000.meta -y -f *languagedata_??.txt -o Extracted | ||
UnPAZ D:\Games\BlackDesert\live\Paz\pad00000.meta -l | ||
# Garkin's UnPAZ v1.2 | ||
Tool for extracting Black Desert Online archives. | ||
|
||
### UnPAZ \<input file\> \<commands\> | ||
|
||
*\<input file\>*: name of .meta or .paz file (default: pad00000.meta) | ||
*\<commands\>*: | ||
*-f \<mask\>*: Filter, this argument must be followed by mask. Mask supports wildcards * and ?. | ||
*-o \<path\>*: Output folder, this argument must be followed by path. | ||
*-h*: Print this help text | ||
*-l*: List file names without extracting them | ||
*-n*: No folder structure, extract files directly to output folder. | ||
*-y*: Yes to all questions (creating folders, overwritting files). | ||
*-q*: Quiet (limit printed messages to file names) | ||
|
||
### Examples: | ||
UnPAZ pad00001.paz -f *.luac | ||
UnPAZ pad00000.meta -y -f *languagedata_??.txt -o Extracted | ||
UnPAZ D:\Games\BlackDesert\live\Paz\pad00000.meta -l |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
@mkdir obj\x64 2>nul | ||
x86_64-w64-mingw32-g++.exe -O3 -c BDO.cpp -o obj/x64/BDO.o | ||
x86_64-w64-mingw32-g++.exe -O3 -c BDOFiles.cpp -o obj/x64/BDOFiles.o -lz | ||
x86_64-w64-mingw32-g++.exe -O3 -c IceKey.cpp -o obj/x64/IceKey.o | ||
x86_64-w64-mingw32-g++.exe -O3 -c UnPAZ.cpp -o obj/x64/UnPAZ.o | ||
x86_64-w64-mingw32-g++.exe -O3 -c Utility.cpp -o obj/x64/Utility.o | ||
@mkdir bin\x64 2>nul | ||
x86_64-w64-mingw32-g++.exe -o bin/x64/UnPAZ.exe obj/x64/BDO.o obj/x64/BDOFiles.o obj/x64/IceKey.o obj/x64/UnPAZ.o obj/x64/Utility.o -static -s -lboost_filesystem-mt -lboost_system-mt -lz |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
@mkdir obj\x86 2>nul | ||
i686-w64-mingw32-g++.exe -O3 -c BDO.cpp -o obj/x86/BDO.o | ||
i686-w64-mingw32-g++.exe -O3 -c BDOFiles.cpp -o obj/x86/BDOFiles.o -lz | ||
i686-w64-mingw32-g++.exe -O3 -c IceKey.cpp -o obj/x86/IceKey.o | ||
i686-w64-mingw32-g++.exe -O3 -c UnPAZ.cpp -o obj/x86/UnPAZ.o | ||
i686-w64-mingw32-g++.exe -O3 -c Utility.cpp -o obj/x86/Utility.o | ||
@mkdir bin\x86 2>nul | ||
i686-w64-mingw32-g++.exe -o bin/x86/UnPAZ.exe obj/x86/BDO.o obj/x86/BDOFiles.o obj/x86/IceKey.o obj/x86/UnPAZ.o obj/x86/Utility.o -static -s -lboost_filesystem-mt -lboost_system-mt -lz |