| aldostools |
07-17-2012 12:18 PM |
How to create a PKG that install edats
UPDATED: Steps 1 & 2 are not necessary. :) You don't need to have an edat to create one.
The PKG with the edat can be created using only the parameter file: package.conf
In response to an unanswered old question:
Quote:
Originally Posted by Ron36
(Post 352693)
Is anyone familiar on how to make a pkg that will install an edat to dev_hdd0/home/00000xx/edata?
|
:
Here are the steps to create a PKG to install edats (I couldn't find a tutorial for it, so I made this):
0. Get the make_package_npdrm.exe available in the SDK (eg. SDK 3.41) and copy it to a folder. eg. C:\NPDRM
3. Create a new text file, paste the following text, and save it as make_edat_pkg.bat in the same folder where you copied the make_package_npdrm.exe
Code:
echo ContentID = XX0999-NPXX00999_00-PURCHASEDLICENSE>package.conf
echo Klicensee = 0x00000000000000000000000000000000>>package.conf
echo DRMType = Local>>package.conf
echo ContentType = License>>package.conf
echo PackageVersion = 01.00>>package.conf
make_package_npdrm.exe package.conf
pause
4. Before you save the file, make sure that the ContentID matches the with the Content ID of your game or DLC.
5. Run the batch file: make_edat_pkg.bat
|