PS3 Trophy unlocking homebrew?

@bucanero
I see, and also noticed there is no np lib or header included in psl1ght and I have no clue how to port the official lib. probably reversing the stuff. I guess there is no way to unpack a lib?

some time ago I was looking around, and found a branch/fork by an0nym0u5, where some NP library support was added to PSL1GHT:

https://github.com/an0nym0u5/PSL1GHT/commit/1313821b7dd90b19cbe02607da0699bb77d6df4e

I tried that code and I was able to build it, but couldn't make it work. I had no example code so I was kinda blind, and trying to guess how to use it properly.
Based on that forked code I think it's doable. Of course it needs someone with patience and time to solve any bugs and then try to port a valid example like the one you mentioned.
 
well, I can give you a sce code, which is working and was used in the trophy unlocker prx from SC58. though, this prx must be running as game thread and it will unlock every trophy at once. back then this was even working to synch them

the other (official) trophy app depends on npcommID to make it work and unlock individually/single trophies. if you are interested, I can send it to you by pm, cause this is official code and I better not share it publically. or is this obsolete by now, what do you think?

Code:
int GetTrophyCount()
{
SceNpTrophyGameDetails game_details;
sceNpTrophyGetGameInfo(1, 1, &game_details, NULL);
return game_details.numTrophies;
}

void UnlockAllTrophys()
{
for (int trophyId = 0; trophyId < GetTrophyCount(); trophyId++)
sceNpTrophyUnlockTrophy(1, 1, trophyId, NULL);
}

edit
nvm, I will try to port the app to psl1ght myself
 
Last edited:
well, I can give you a sce code, which is working and was used in the trophy unlocker prx from SC58. though, this prx must be running as game thread and it will unlock every trophy at once. back then this was even working to synch them

the other (official) trophy app depends on npcommID to make it work and unlock individually/single trophies. if you are interested, I can send it to you by pm, cause this is official code and I better not share it publically. or is this obsolete by now, what do you think?

edit
nvm, I will try to port the app to psl1ght myself

thanks a lot for sharing! yes, all the trophy code that you have and you can share would be great for research and see if we can port something nice and useful to a psl1ght homebrew

if you want to poke around, I can try to clean up that code branch from an0nym0u5, and share it, so you can build the psl1ght lib and try things on your side too
 
I personally, prefers Apollo, because it's simplicity to user... But I already start to help darkautism to improve and add some fixes to TrophyIsGood, so... "I'm in". About "bulk unlock", TrophyIsGood has a good feature to copy trophies from another profile, but I don't know if it works or how it works (I still didn't have enough time to read that part of code or even try it), probably it should help the OP...

Opa, tudo bom Jhonathan? Tentei te mandar uma mensagem privada, mas não achei a opção aqui. Queria tirar algumas dúvidas sobre timestamps com você. Tem alguma forma de conversar com você sem ser por aqui?
 
Back
Top