44w ago - Shortly following his
last release, today PlayStation 3 developer
PsDev has now updated PS3Tools GUI Edition to version 3.0 which now adds PS3 SPU emulation, SELF decryption and Debug PKG decryption as detailed below.
Download:
PS3Tools GUI Edition v3.0
To quote: Hi everyone, here with a new update to my program. Added SPU Emulation, Self Decryption and debug pkg decryption. Along with more accurate loading bars and a interface change to pkg tool, spu emulation, self decryption, edat tool.
- SPU emulation added
- Debug PKG decryption added
- SELF decryption added
- Logging Errors/successes added to EDAT tool
- Logging Errors/succession added to PKG tool
- Loading bars code adjustment, more accurate now
Originally by KDSBest,
SPU emulation has been incorporated in my GUI. It was quite easy, we both coded our programs in C# (Sharp) so I didn't really have much trouble.
Self decryption is know possible. Just browse for your self/bin file and hit decrypt or, drag and drop. Yes I added it.
Now Debug PKG decryption is a option too, just name the file debugpkg.pkg put in root of program folder and run the tool and it decrypts.
Download: http://www.mediafire.com/?387jim751yf9map
From the included ReadMe file: Just place the .exe file in your flash drive where you have your folders and cfw setup run it and it will tell you if there is a typo, the foldername correct, the pup name correct and then if so it tell you your ready to go.
Took me 5 min.
Follow me on twitter at https://twitter.com/#!/RealPsDev
Source Code:
[code]
#include
#include
#include
#include
#include
#pragma comment(lib, "shlwapi.lib")
#include
using namespace std;
typedef unsigned int u32;
/*******************************************************************************
* Check if a file or a folder exists
******************************************************************************/
bool Exists(string Path)
{
return GetFileAttributes(Path.c_str()) != INVALID_FILE_ATTRIBUTES;
}
/*******************************************************************************
* Quit the application with a message
******************************************************************************/
void Quit(string Message)
{
cout