Forum Replies Created

Viewing 1 post (of 1 total)
  • Author
    Posts
  • in reply to: [How-To] Playing Customs on PS4 (BETA) #513003

    Hi not sure if this thread is dead but I have just got into this, has anyone got a batch file that will run and convert a folder full of .con files into individual pkg files.

    My programming skills are zero so I would be grateful to anyone who can help. Thanks.

     

    I used the following. It doesn’t work with the –scee option though. It looks like the –scee option doesn’t work without the –id and –desc parameters. You can’t leave them blank and have it auto-fill them either.

     

    If you wanted an EU version we’ll have to figure some way to auto generate the ID and Descriptions within the batch script.


    @echo off

    SETLOCAL ENABLEEXTENSIONS
    SET me=%~n0
    SET parent=%~dp0

    SET /p condir="Enter path containing CON files (With quotes): "
    SET /p pkgdir="Enter export path (With quotes): "

    FOR /R %condir% %%G IN (*) do (
    echo ForgeTool.exe con2pkg "%%~fG" %pkgdir%
    ForgeTool.exe con2pkg "%%~fG" %pkgdir%
    )

    Echo Done

    PAUSE
Viewing 1 post (of 1 total)
Back to top button