Join Us and become a Member for a Verified Badge to access private areas with the latest PS4 PKGs.
Status
Not open for further replies.
Following my previous release, after learning How to Change PS4 DLC Region for FPKG Games by Jr550 I made a PS4 PKG DLC Region Batch Script for Windows to change the Region / TitleID of the original PS4 DLC PKG based on orbis-pub-gen and sfo by Hippie68.

Download: ps4-pkg-dlc-region.cmd / GIT

From the README.md: PS4 PKG DLC Region

ps4-pkg-dlc-region
is windows batch script can batch change the region and TitleID of the original ps4 dlc Pkg, and it is base on orbis-pub-gen and sfo by Hippie68.

It will automatically determine that the volume_type of the original pkg is pkg_ps4_ac_data or pkg_ps4_ac_nodata, pkg_ps4_patch, pkg_ps4_app:
  • pkg_ps4_ac_data:
    • DLC with extra files
  • pkg_ps4_ac_nodata:
    • DLC without extra files (unlockable)
  • pkg_ps4_patch:
    • PS4 Game Update (during the parsing, you will be prompted to enter the original PS4 Game PKG path)
  • pkg_ps4_app:
    • PS4 Game
Note: The experimental features of pkg_ps4_patch and pkg_ps4_app have not been tested...

User Defined

Before the first execution, the user needs to determine several defined values in ps4-pkg-dlc-region.cmd:
  • orbisPubPath
    Determines the path of orbis-pub, nullable if it has been set in the path of windows
  • sfoPath
    Determines the path of sfo(hippie68), nullable if it has been set in the path of windows
  • pkgPath
    Determine the path to the original pkg
  • newRegion (length is 2)
    Determine the Region of the generated pkg
    JP: Japanese, EP: European, UP: American, HP: Hong Kong, KP: Korean
  • newTitleID (length is 9)
    Determine the TitleID of the generated pkg
  • genDirName
    Determines the directory name for the generated output
  • icon0Path
    Determine the path of icon0.png when the original pkg has no preview image, the generated pkg will use this file
  • cleanup
    y: remove all temporary files, n: don't delete anything
  • passcode
    Determine the passcode value for pkg
  • overwriteUnpackedArchives (New)
    Determines whether to still extract when an unpacked PKG archive already exists,
    y: perform extract and overwrite, n: use existing unpacked file
  • overwriteExistGP4 (New)
    Determines whether to override gp4 configuration, when gp4 archive already exists,
    y: generate new gp4 file, n: use existing gp4 file
  • pkgCreate (New)
    Determines whether to automatically generate a new PKG after extract,
    y: generate new PKG, n: extract only
Reference
PS4 PKG DLC Region Batch Script to Change Region TitleID by Avan06.png
 

Comments

@avan
I'm trying to make the patch v1.42 (opoisso893) from diablo3 (cusa00242) run on the cusa00433 version but unfortunately it doesn't work.

could you please write an exact instruction where you have to change something in the cmd file?

I have already done the following:

1. ps4-pkg-dlc-region-main.zip in the root of the hard drive f: unzipped.
2. copy the orbis-pub-cmd.exe and sfo.exe to the unzipped folder ps4-pkg-dlc-region-main
3. changed the ps4-pkg-dlc-region.cmd as follows:

:: =========== User Defined Block Start ===========
:: Determines the path of orbis-pub, nullable if it has been set in the path of windows
set orbisPubPath=
:: Determines the path of sfo (hippie68), nullable if it has been set in the path of windows
set sfoPath=
:: Determine the path to the original pkg
set pkgPath=.\update
:: Determine the Region(length is 2) of the generated pkg
:: Empty value, indicating that the Region is unchanged
:: JP: Japanese, EP: European, UP: American, HP: Hong Kong, KP: Korean
set newRegion=ep
:: Determine the TitleID(length is 9) of the generated pkg
:: Empty value, indicating that the TitleID is unchanged
set newTitleID=cusa00433
4. created the folders ps4 and pc in the root of f:
5. copied the patch Diablo.III.Reaper.of.Souls-Ultimate.Evil.Edition_CUSA00242_v1.42_[4.00]_OPOISSO893.pkg to the folder f:\ps4-pkg-dlc-region-main\update
6. I then started the cmd. file

I then got the following message:
Code:
1: f:\ps4-pgk-dlc-region-main\update\diablo....pkg
[info] extract pkg to ep-cusa00433...-a0142-v0101
extract 1: sc.exe
[info] move sc0 to image0\sce_sys and edit param.sfo
file not found
could not open file'f:\ps4-kgf-dlc....\update\ep0002-cusa00433_00-d3.....\image0\sce_sys\param.sfo

handling cusa0043-patch is required the original cusaa00433-app...
preess [enter] the pkg path of duablo III:_ reaper of souls - ultimate evil edition:

If I now enter .ps4, the following appears:
2: f:\ps4-pkg-....\update\ep0002-cusa00433...a100-v101.pkg
[[info] extract pkg to ep002-cusa00433_00-d3ultimateevil00-a0100-v0101
extract1: sc.exe
[info] move sc0 to image0\sce_sys\ and edit param .sfo
file not found
could not open file'f:\ps4-kgf-dlc....\update\ep0002-cusa00433_00-d3.....\image0\sce_sys\param.sfo

gp4 proj create failed...

Press any key...
then the cmd closes.. what am I doing wrong? where did I forget something?

I ask for help. thanks.
 
Hello @esme,
from the log, it seems that patch pkg has not been successfully extracted.
Code:
[info] move sc0 to image0\sce_sys and edit param.sfo
file not found
could not open file'f:\ps4-kgf-dlc....\update\ep0002-cusa00433_00-d3.....\image0\sce_sys\param.sfo

The following describes how to set path and region and title id
  1. set path
    If the file path is
    f://ps4-pkg-dlc-region-main/orbis-pub-cmd.exe
    f://ps4-pkg-dlc-region-main/sfo.exe

    set orbisPubPath=f://ps4-pkg-dlc-region-main/orbis-pub-cmd.exe
    set sfoPath=f://ps4-pkg-dlc-region-main/sfo.exe


  2. set region and title id (uppercase recommended)
    You want to change CUSA00242(USA) to CUSA00433(EUR) version

    set newRegion=EP
    set newTitleID=CUSA00433
Because the file type is patch, you will need to enter the base game path of CUSA00433 during the process

Edit: I have tried to change the patch from CUSA00242 v1.42 to CUSA00433, as follows in the log. Although successful, not sure if it will work when installed in ps4.
Code:
Active code page: 65001

  ps4 pkg dlc region changes batch script
  based on orbis-pub-gen and sfo

   The PKG path    is .\dlc
   The new Region  is EP
   The new TitleID is CUSA00433

1: F:\ps4-pkg-dlc-region\dlc\Diablo.III.Reaper.of.Souls-Ultimate.Evil.Edition_CUSA00242_v1.42_[4.00]_OPOISSO893.pkg
[Info] extract pkg to EP0002-CUSA00433_00-D3ULTIMATEEVIL00-A0142-V0101
extract1: Image0/CPKs/CoreCommon.cpk
extract2: Image0/CPKs/ServerCommon.cpk
extract3: Image0/CPKs/enUS_CommonCutscene.cpk
extract4: Image0/CPKs/enUS_CoreCommon.cpk
extract5: Image0/CPKs/esMX_CommonCutscene.cpk
extract6: Image0/CPKs/esMX_CoreCommon.cpk
extract7: Image0/CPKs/frFR_CommonCutscene.cpk
extract8: Image0/CPKs/frFR_CoreCommon.cpk
extract9: Image0/Update/CPKs/Patch2_6_0.cpk
extract10: Image0/Update/CPKs/Patch2_6_0b.cpk
extract11: Image0/Update/CPKs/Patch2_6_0c.cpk
extract12: Image0/Update/CPKs/Patch2_6_1.cpk
extract13: Image0/Update/CPKs/Patch2_6_10.cpk
extract14: Image0/Update/CPKs/Patch2_6_1a.cpk
extract15: Image0/Update/CPKs/Patch2_6_4.cpk
extract16: Image0/Update/CPKs/Patch2_6_5.cpk
extract17: Image0/Update/CPKs/Patch2_6_6.cpk
extract18: Image0/Update/CPKs/Patch2_6_7.cpk
extract19: Image0/Update/CPKs/Patch2_6_7a.cpk
extract20: Image0/Update/CPKs/Patch2_6_8.cpk
extract21: Image0/Update/CPKs/Patch2_6_9.cpk
extract22: Image0/Update/CPKs/Patch2_7_0.cpk
extract23: Image0/Update/CPKs/Patch2_7_1.cpk
extract24: Image0/Update/CPKs/Patch2_7_2.cpk
extract25: Image0/Update/CPKs/Patch2_7_3.cpk
extract26: Image0/Update/CPKs/Patch2_7_4.cpk
extract27: Image0/Update/CPKs/enUS_Patch2_6_0.cpk
extract28: Image0/Update/CPKs/enUS_Patch2_6_0b.cpk
extract29: Image0/Update/CPKs/enUS_Patch2_6_1.cpk
extract30: Image0/Update/CPKs/enUS_Patch2_6_10.cpk
extract31: Image0/Update/CPKs/enUS_Patch2_6_1a.cpk
extract32: Image0/Update/CPKs/enUS_Patch2_6_4.cpk
extract33: Image0/Update/CPKs/enUS_Patch2_6_5.cpk
extract34: Image0/Update/CPKs/enUS_Patch2_6_6.cpk
extract35: Image0/Update/CPKs/enUS_Patch2_6_7.cpk
extract36: Image0/Update/CPKs/enUS_Patch2_6_7a.cpk
extract37: Image0/Update/CPKs/enUS_Patch2_6_8.cpk
extract38: Image0/Update/CPKs/enUS_Patch2_6_9.cpk
extract39: Image0/Update/CPKs/enUS_Patch2_7_0.cpk
extract40: Image0/Update/CPKs/enUS_Patch2_7_1.cpk
extract41: Image0/Update/CPKs/enUS_Patch2_7_2.cpk
extract42: Image0/Update/CPKs/enUS_Patch2_7_3.cpk
extract43: Image0/Update/CPKs/enUS_Patch2_7_4.cpk
extract44: Image0/Update/CPKs/esMX_Patch2_6_0.cpk
extract45: Image0/Update/CPKs/esMX_Patch2_6_0b.cpk
extract46: Image0/Update/CPKs/esMX_Patch2_6_1.cpk
extract47: Image0/Update/CPKs/esMX_Patch2_6_10.cpk
extract48: Image0/Update/CPKs/esMX_Patch2_6_1a.cpk
extract49: Image0/Update/CPKs/esMX_Patch2_6_4.cpk
extract50: Image0/Update/CPKs/esMX_Patch2_6_5.cpk
extract51: Image0/Update/CPKs/esMX_Patch2_6_6.cpk
extract52: Image0/Update/CPKs/esMX_Patch2_6_7.cpk
extract53: Image0/Update/CPKs/esMX_Patch2_6_7a.cpk
extract54: Image0/Update/CPKs/esMX_Patch2_6_8.cpk
extract55: Image0/Update/CPKs/esMX_Patch2_6_9.cpk
extract56: Image0/Update/CPKs/esMX_Patch2_7_0.cpk
extract57: Image0/Update/CPKs/esMX_Patch2_7_1.cpk
extract58: Image0/Update/CPKs/esMX_Patch2_7_2.cpk
extract59: Image0/Update/CPKs/esMX_Patch2_7_3.cpk
extract60: Image0/Update/CPKs/esMX_Patch2_7_4.cpk
extract61: Image0/Update/CPKs/frFR_Patch2_6_0.cpk
extract62: Image0/Update/CPKs/frFR_Patch2_6_0b.cpk
extract63: Image0/Update/CPKs/frFR_Patch2_6_1.cpk
extract64: Image0/Update/CPKs/frFR_Patch2_6_10.cpk
extract65: Image0/Update/CPKs/frFR_Patch2_6_1a.cpk
extract66: Image0/Update/CPKs/frFR_Patch2_6_4.cpk
extract67: Image0/Update/CPKs/frFR_Patch2_6_5.cpk
extract68: Image0/Update/CPKs/frFR_Patch2_6_6.cpk
extract69: Image0/Update/CPKs/frFR_Patch2_6_7.cpk
extract70: Image0/Update/CPKs/frFR_Patch2_6_7a.cpk
extract71: Image0/Update/CPKs/frFR_Patch2_6_8.cpk
extract72: Image0/Update/CPKs/frFR_Patch2_6_9.cpk
extract73: Image0/Update/CPKs/frFR_Patch2_7_0.cpk
extract74: Image0/Update/CPKs/frFR_Patch2_7_1.cpk
extract75: Image0/Update/CPKs/frFR_Patch2_7_2.cpk
extract76: Image0/Update/CPKs/frFR_Patch2_7_3.cpk
extract77: Image0/Update/CPKs/frFR_Patch2_7_4.cpk
extract78: Image0/sce_module/libSceFios2.prx
extract79: Image0/sce_module/libSceNpToolkit2.prx
extract80: Image0/sce_module/libc.prx
extract81: Image0/sce_sys/about/right.sprx
extract82: Image0/eboot.bin
extract83: Image0/sce_discmap.plt
extract84: Image0/sce_discmap_patch.plt
extract85: Sc0/app/playgo-chunk.dat
extract86: Sc0/changeinfo/changeinfo.xml
extract87: Sc0/changeinfo/changeinfo_00.xml
extract88: Sc0/changeinfo/changeinfo_02.xml
extract89: Sc0/changeinfo/changeinfo_03.xml
extract90: Sc0/changeinfo/changeinfo_04.xml
extract91: Sc0/changeinfo/changeinfo_05.xml
extract92: Sc0/changeinfo/changeinfo_08.xml
extract93: Sc0/changeinfo/changeinfo_16.xml
extract94: Sc0/changeinfo/changeinfo_17.xml
extract95: Sc0/changeinfo/changeinfo_20.xml
extract96: Sc0/trophy/trophy00.trp
extract97: Sc0/icon0.dds
extract98: Sc0/icon0.png
extract99: Sc0/npbind.dat
extract100: Sc0/nptitle.dat
extract101: Sc0/param.sfo
extract102: Sc0/pic0.dds
extract103: Sc0/pic0.png
extract104: Sc0/playgo-chunk.dat
extract105: Sc0/playgo-chunk.sha
extract106: Sc0/playgo-manifest.xml
extract107: Sc0/pronunciation.sig
extract108: Sc0/pronunciation.xml
extract109: Sc0/psreserved.dat
extract110: Sc0/shareparam.json
extract111: Sc0/snd0.at9
[Info] move Sc0 to Image0\sce_sys\ and edit param.sfo
        1 file(s) moved.
        1 file(s) moved.
        1 file(s) moved.
        1 file(s) moved.
        1 file(s) moved.
        1 file(s) moved.
        1 file(s) moved.
[Info] chunkCount:72, scenarioCount:1
        1 file(s) moved.
        1 file(s) moved.
        1 file(s) moved.
        1 file(s) moved.
        1 file(s) moved.
        1 file(s) moved.
        1 file(s) moved.
        1 file(s) moved.
        1 file(s) moved.
        1 file(s) moved.
        1 file(s) moved.
        1 file(s) moved.
        1 file(s) moved.
        1 file(s) moved.
        1 file(s) moved.
        1 file(s) moved.

Handling CUSA00433-patch is required the original CUSA00433-app pkg...
Preess [Enter] the pkg path of Diablo III: Reaper of Souls – Ultimate Evil Edition:
F:\ps4-pkg-dlc-region\dlc\app\EP0002-CUSA00433_00-D3ULTIMATEEVIL00-A0100-V0101.PKG

[Warn] Fix the TitleID [CUSA00242 to CUSA00433] of sce_sys\nptitle.dat
[Warn] Fix the TitleID [CUSA00242 to CUSA00433] of sce_sys\playgo-chunk.dat
[Warn] Fix the TitleID [CUSA00242 to CUSA00433] of sce_sys\app\playgo-chunk.dat
[Info] Creating EP0002-CUSA00433_00-D3ULTIMATEEVIL00-A0142-V0101.pkg...
[Debug] 2022-09-03 14:36:58 Create image Process started.
[Debug] nptitle.dat: NP Title file.
[Warn]  The latest QA passed package file is not specified although Application Version is 01.42. Delta patch feature is disabled. Make sure that it is intentional.
[Debug] Custom patches thanks to flat_z and cfwprophet!
[Warn]  Patched By CyB1K! Credits to SocraticBliss and TheRadziu
[Warn]  *** Version 04.008
[Debug] Custom patches thanks to flat_z and cfwprophet!
[Warn]  Patched By CyB1K! Credits to SocraticBliss and TheRadziu
[Warn]  Publishing Tools Version 3.87
[Debug] icon0.png: 512x512/24bit.
[Debug] pic0.png: 1920x1080/24bit.
[Debug] (app) chunks=72, mchunks=2, scenarios=1, default_scenario=#0
[Debug] (patch) chunks=72, mchunks=1, scenarios=1, default_scenario=#0
[Warn]  Number of Initial Chunks was changed by the patch/remaster. (Scenario #0, 24 -> 1) Confirm that it is intentional change.
[Debug] Scenario #0 Language Group #0 (patch): Initial Payload = 8077MiB
[Debug] Scenario #0 Language Group #0 (app): Initial Payload = 38331MiB
[Info]  Initial Payload for Scenario #0 Language Group #0 is very large. (Informative) (38331MiB)
[Debug] Writing internal image.
[Debug] Writing internal image.
[Debug] Calculating image digest.
[Debug] Check Integrity started.
[Debug] Check Integrity ended.
[Debug] There is no referable blocks in the application package.
[Warn]  One or more redundant file(s) are found. Make sure if intentional.
[Debug] Redundant file: Sc0/icon0.dds
[Debug] Redundant file: Sc0/icon0.png
[Debug] PlayGo chunks:
[Debug] Chunk #000: layer=0 mchunks=1 size= 8270528KiB
[Debug] Chunk #001: layer=0 mchunks=0 size=       0KiB
[Debug] Chunk #002: layer=0 mchunks=0 size=       0KiB
[Debug] Chunk #003: layer=0 mchunks=0 size=       0KiB
[Debug] Chunk #004: layer=0 mchunks=0 size=       0KiB
[Debug] Chunk #005: layer=0 mchunks=0 size=       0KiB
[Debug] Chunk #006: layer=0 mchunks=0 size=       0KiB
[Debug] Chunk #007: layer=0 mchunks=0 size=       0KiB
[Debug] Chunk #008: layer=0 mchunks=0 size=       0KiB
[Debug] Chunk #009: layer=0 mchunks=0 size=       0KiB
[Debug] Chunk #010: layer=0 mchunks=0 size=       0KiB
[Debug] Chunk #011: layer=0 mchunks=0 size=       0KiB
[Debug] Chunk #012: layer=0 mchunks=0 size=       0KiB
[Debug] Chunk #013: layer=0 mchunks=0 size=       0KiB
[Debug] Chunk #014: layer=0 mchunks=0 size=       0KiB
[Debug] Chunk #015: layer=0 mchunks=0 size=       0KiB
[Debug] Chunk #016: layer=0 mchunks=0 size=       0KiB
[Debug] Chunk #017: layer=0 mchunks=0 size=       0KiB
[Debug] Chunk #018: layer=0 mchunks=0 size=       0KiB
[Debug] Chunk #019: layer=0 mchunks=0 size=       0KiB
[Debug] Chunk #020: layer=0 mchunks=0 size=       0KiB
[Debug] Chunk #021: layer=0 mchunks=0 size=       0KiB
[Debug] Chunk #022: layer=0 mchunks=0 size=       0KiB
[Debug] Chunk #023: layer=0 mchunks=0 size=       0KiB
[Debug] Chunk #024: layer=0 mchunks=0 size=       0KiB
[Debug] Chunk #025: layer=0 mchunks=0 size=       0KiB
[Debug] Chunk #026: layer=0 mchunks=0 size=       0KiB
[Debug] Chunk #027: layer=0 mchunks=0 size=       0KiB
[Debug] Chunk #028: layer=0 mchunks=0 size=       0KiB
[Debug] Chunk #029: layer=0 mchunks=0 size=       0KiB
[Debug] Chunk #030: layer=0 mchunks=0 size=       0KiB
[Debug] Chunk #031: layer=0 mchunks=0 size=       0KiB
[Debug] Chunk #032: layer=0 mchunks=0 size=       0KiB
[Debug] Chunk #033: layer=0 mchunks=0 size=       0KiB
[Debug] Chunk #034: layer=0 mchunks=0 size=       0KiB
[Debug] Chunk #035: layer=0 mchunks=0 size=       0KiB
[Debug] Chunk #036: layer=0 mchunks=0 size=       0KiB
[Debug] Chunk #037: layer=0 mchunks=0 size=       0KiB
[Debug] Chunk #038: layer=0 mchunks=0 size=       0KiB
[Debug] Chunk #039: layer=0 mchunks=0 size=       0KiB
[Debug] Chunk #040: layer=0 mchunks=0 size=       0KiB
[Debug] Chunk #041: layer=0 mchunks=0 size=       0KiB
[Debug] Chunk #042: layer=0 mchunks=0 size=       0KiB
[Debug] Chunk #043: layer=0 mchunks=0 size=       0KiB
[Debug] Chunk #044: layer=0 mchunks=0 size=       0KiB
[Debug] Chunk #045: layer=0 mchunks=0 size=       0KiB
[Debug] Chunk #046: layer=0 mchunks=0 size=       0KiB
[Debug] Chunk #047: layer=0 mchunks=0 size=       0KiB
[Debug] Chunk #048: layer=0 mchunks=0 size=       0KiB
[Debug] Chunk #049: layer=0 mchunks=0 size=       0KiB
[Debug] Chunk #050: layer=0 mchunks=0 size=       0KiB
[Debug] Chunk #051: layer=0 mchunks=0 size=       0KiB
[Debug] Chunk #052: layer=0 mchunks=0 size=       0KiB
[Debug] Chunk #053: layer=0 mchunks=0 size=       0KiB
[Debug] Chunk #054: layer=0 mchunks=0 size=       0KiB
[Debug] Chunk #055: layer=0 mchunks=0 size=       0KiB
[Debug] Chunk #056: layer=0 mchunks=0 size=       0KiB
[Debug] Chunk #057: layer=0 mchunks=0 size=       0KiB
[Debug] Chunk #058: layer=0 mchunks=0 size=       0KiB
[Debug] Chunk #059: layer=0 mchunks=0 size=       0KiB
[Debug] Chunk #060: layer=0 mchunks=0 size=       0KiB
[Debug] Chunk #061: layer=0 mchunks=0 size=       0KiB
[Debug] Chunk #062: layer=0 mchunks=0 size=       0KiB
[Debug] Chunk #063: layer=0 mchunks=0 size=       0KiB
[Debug] Chunk #064: layer=0 mchunks=0 size=       0KiB
[Debug] Chunk #065: layer=0 mchunks=0 size=       0KiB
[Debug] Chunk #066: layer=0 mchunks=0 size=       0KiB
[Debug] Chunk #067: layer=0 mchunks=0 size=       0KiB
[Debug] Chunk #068: layer=0 mchunks=0 size=       0KiB
[Debug] Chunk #069: layer=0 mchunks=0 size=       0KiB
[Debug] Chunk #070: layer=0 mchunks=0 size=       0KiB
[Debug] Chunk #071: layer=0 mchunks=0 size=       0KiB
[Debug] param.sfo: Image0 Total Size = 8077MiB.
[Debug] param.sfo: Image0 Sc0 Size = 15872KiB.
[Debug] param.sfo: Image0 Cache Size = 6080KiB.
[Debug] [Patch Referable Rate]
[Debug] Package Size: 8077 MiB (8469020672 bytes)
[Debug] Referable Size: N/A (no referable information)
[Debug] Distribution Required Size: 8077 MiB (8469020672 bytes)
[Warn]  2022-09-03 14:47:19 Create image Process finished with warning(s).

Press any key to continue . . .
 
@avan
Thanks for the answer, but even after changing I get the same error.

:: =========== User Defined Block Start ===========
:: Determines the path of orbis-pub, nullable if it has been set in the path of windows
set orbisPubPath=f://ps4-pkg-dlc-region-main/orbis-pup-cmd.exe
:: Determines the path of sfo(hippie68), nullable if it has been set in the path of windows
set sfoPath=f://ps4-pkg-dlc-region-main/sfo.exe
:: Determine the path to the original pkg
set pkgPath=.\update
:: Determine the Region(length is 2) of the generated pkg
:: Empty value, indicating that the Region is unchanged
:: JP: Japanese, EP: European, UP: American, HP: Hong Kong, KP: Korean
set newRegion=EP
:: Determine the TitleID(length is 9) of the generated pkg
:: Empty value, indicating that the TitleID is unchanged
set newTitleID=CUSA00433

now I even get the message in the cmd
Code:
[error] the version of sc.exe is invalid or missing
 
@avan
no idea what sc.exe is. the message only came after I re-entered the things

I also use the ps4-fake-pkg-tools-3.87 v5 from cyb1k

May I ask if you have to have the base game? where does it have to be, in the root on f:, or in the ps4 folder, in the cusa00433 folder?

I have the us update of the game in the folder f://ps4-pkg-dlc-region-main/update
 
thanks @PSXHAX for informing sc.exe

@esme
because orbis-pub-cmd requires sc.exe and di.exe in the ext path to work properly you have to keep the PS4_Fake_PKG_Tools directory structure:
Code:
PS4_Fake_PKG_Tools_3.87_V5\orbis-pub-cmd.exe
PS4_Fake_PKG_Tools_3.87_V5\ext\sc.exe
PS4_Fake_PKG_Tools_3.87_V5\ext\di.exe
 
@avan
sorry, that doesn't work for me

PS4_Fake_PKG_Tools_3.87_V5orbis-pub-cmd.exe
PS4_Fake_PKG_Tools_3.87_V5extsc.exe
PS4_Fake_PKG_Tools_3.87_V5extdi.exe

I copied them in the root of f and in the folder ps4-pkg-dlc-region-main and always changed them appropriately in

set orbispubpath=

but I always got the error message that orbis-pub-cmd was not found or was misspelled.

it only worked when i copied the orbis-pub-cmd.exe and the ext folder with sc.exe and di.exe to the ps4-pkg-dlc-region-main folder

at step 1 the patch was extracted.
i now have the folder EP0002-CUSA00433_00-D3ULTIMATEEVIL00-A0142-V0101 in the folder ps4-pkg-dlc-region-mainupdate

but when it was finished and i entered the path of the base game, it told me that it doesn't exist and started with step 2 and extracted the base game in the folder mentioned above EP0002-CUSA00433_00-D3ULTIMATEEVIL00-A0100-V0101

when he was done with it, the program wanted me to press a button again, which i did. then he extracted the base game again.

In the meantime, a new folder was created in the ps4-pkg-dlc-region-mainupdate folder, where the EP0002-CUSA00433_00-D3ULTIMATEEVIL00-A0100-V0101.pkg file is now

Suddenly the cmd is closed when extracting the base game for the second time and nothing is bassing anymore

I once attached the cmd text up to the point where he wants to extract the second time

Spoiler: cmd txt

my question is where (in which folder and which structure) and how should the base game be available (as fpkg or as an extracted version)?
 
Status
Not open for further replies.
Back
Top