Skip to content

Commit

Permalink
Small fix creating zip in PKGLAUNCH
Browse files Browse the repository at this point in the history
- Rename zip extension ending with .967295
- Added display of zip file when zipping folder
- Updated EBOOT
- Updated comments about DEX version in webMAN MOD
- Added cheat for Naruto Shippuden Ultimate Ninja Storm 3 Full Burst
  • Loading branch information
aldostools committed Jun 30, 2024
1 parent 782721d commit 80dfdc1
Show file tree
Hide file tree
Showing 12 changed files with 33 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
1P Infinite Health,Cakra,Substitution
0
Jordy_Indo
0 0118AFC0 3F800155
0 0118AFC4 639C1988
0 0118AFC8 839C0000
0 0118AFCC 839C0010
0 0118AFD0 839C0000
0 0118AFD4 7C1CF840
0 0118AFD8 4082001C
0 0118AFDC C03F0014
0 0118AFE0 D03F0010
0 0118AFE4 C03F001C
0 0118AFE8 D03F0018
0 0118AFEC C03F002C
0 0118AFF0 D03F0028
0 0118AFF4 63EB0000
0 0118AFF8 4E800020
0 008CB7FC 488BF7C5
#
Max And Infinite Ryos
0
tekman
Expand Down
4 changes: 3 additions & 1 deletion _Projects_/pkglaunch/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,9 @@ int main(int argc, const char* argv[])
if(*param && isdir(path) && strcasestr(param, ".zip") != NULL)
{
sprintf(url, "Zipping %s", path);
DrawString(20, 216+24, url);
DrawString(20, 180+24, url);
sprintf(url, "To %s", param);
DrawString(20, 180+72, url);
SetFontAutoCenter(0);
tiny3d_Flip();

Expand Down
Binary file modified _Projects_/pkglaunch/pkg/PS3_GAME/USRDIR/EBOOT.BIN
Binary file not shown.
Binary file modified _Projects_/pkglaunch/pkg/USRDIR/EBOOT.BIN
Binary file not shown.
4 changes: 4 additions & 0 deletions _Projects_/pkglaunch/zip_util.h
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,10 @@ int zip_directory(char* basedir, char* inputdir, const char* output_filename)
walk_zip_directory(basedir, inputdir, archive);
ret = zip_close(archive);

char fullname[256];
snprintf(fullname, sizeof(fullname), "%s.967295", output_filename);
sysLv2FsRename(fullname, output_filename);

return (ret == ZIP_ER_OK);
}

Expand Down
Binary file not shown.
Binary file modified _Projects_/updater/pkgfiles/USRDIR/xmb/PKGLAUNCH/USRDIR/EBOOT.BIN
Binary file not shown.
Binary file not shown.
Binary file modified _Projects_/updater/update/dev_hdd0/game/PKGLAUNCH/USRDIR/EBOOT.BIN
Binary file not shown.
8 changes: 4 additions & 4 deletions common.h
Original file line number Diff line number Diff line change
Expand Up @@ -118,12 +118,12 @@
#define SYSCALL_TABLE_475D 0x800000000038A3E8ULL // 4.75 DEX - 4.78 DEX
#define SYSCALL_TABLE_475H 0x80000000003B28F8ULL // 4.75 DEH - 4.82 DEH
#define SYSCALL_TABLE_480 0x8000000000363BE0ULL // 4.80
#define SYSCALL_TABLE_480D 0x800000000038A4E8ULL // 4.80 DEX - 4.84 DEX
#define SYSCALL_TABLE_480D 0x800000000038A4E8ULL // 4.80 DEX - 4.84 DEX & 4.91 PEX/DPEX
#define SYSCALL_TABLE_480H 0x80000000003B28F8ULL // 4.80 DEH
#define SYSCALL_TABLE_481 0x8000000000363BE0ULL // 4.81
#define SYSCALL_TABLE_481D 0x800000000038A4E8ULL // 4.81 DEX
#define SYSCALL_TABLE_482 0x8000000000363BE0ULL // 4.82 - 4.88
#define SYSCALL_TABLE_482D 0x800000000038A4E8ULL // 4.82 DEX - 4.84 DEX
#define SYSCALL_TABLE_481D 0x800000000038A4E8ULL // 4.81 DEX - 4.84 DEX & 4.91 PEX/DPEX
#define SYSCALL_TABLE_482 0x8000000000363BE0ULL // 4.82 - 4.91
#define SYSCALL_TABLE_482D 0x800000000038A4E8ULL // 4.82 DEX - 4.84 DEX & 4.91 PEX/DPEX

#define SYSCALL_PTR(n) ( (SYSCALL_TABLE) + ( 8 * (n) ) )

Expand Down
2 changes: 1 addition & 1 deletion include/cmd/nobd.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

u8 noBD = 0;

// noBD LV1 4.75 - 4.88
// noBD LV1 4.75 - 4.91
if(ALLOW_NOBD)
{
if(!param[9])
Expand Down
2 changes: 1 addition & 1 deletion include/cpursx.h
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ static void get_cobra_version(char *cfw_info)
sprintf(cfw_info, " nonCobra");
#endif

// noBD LV1 4.75 - 4.88
// noBD LV1 4.75 - 4.91
if(isNOBD) // ori: 0x78630020409E0018ULL
strcat(cfw_info, " noBD");
#ifdef COBRA_ONLY
Expand Down

0 comments on commit 80dfdc1

Please sign in to comment.