We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For some reason, I can't get these two values at once. And which one I get data from is depending on which one gets called first.
$trophy->earnedDateTime(); // Will get me the date $trophy->progress(); // Always null
Or
$trophy->progress(); // Will get me the progress $trophy->earnedDateTime(); // Always null
The text was updated successfully, but these errors were encountered:
I have found a work-around for the time being:
(clone $trophy)->earnedDateTime(); // Will get me the date $trophy->progress(); // Will also get me the progress
Sorry, something went wrong.
@Ragowit do you know how I get game progress, like this image:
@pradella No, I do not. You might try your luck by asking over at https://github.com/andshrew/PlayStation-Trophies
No branches or pull requests
For some reason, I can't get these two values at once. And which one I get data from is depending on which one gets called first.
Or
The text was updated successfully, but these errors were encountered: