Yep, the new version of Greasemoney doesn’t support this format of script or installing scripts from GitHub. I’d suggest moving to Tampermonkey for Firefox.
Comment has been collapsed.
I’m afraid I’ll need a bit more detail from you to help you with this issue. What extension are you using (I would usually assume Tampermonkey on Chrome)? What version of the script do you have installed? Are there any errors that appear in the JavaScript console (press control+shift+i to open it) when you load a user’s won games?
Comment has been collapsed.
Sorry for that. Yes I'm using Tampermonkey on Chrome.
The script version is 1.5.1
Whenever I click on update player's information, it keeps loading without returning anything. it doesn't give me any errors.
I deleted it and reinstalled it and it worked like magic :D Thank you for making this awesome script.♡
Comment has been collapsed.
The new feature with the HLTB stats is very cool! Two things:
1) It makes the script much slower. Would it be possible to make it optional? Maybe two buttons, one for "Fetch/update playing info with HLTB stats" and one just "Fetch/Update playing info".
2) Would it be possible to leave unplayed games out of the HLTB stats, or give them a separate column/note of number of unplayed games? Of course those games with 0 minutes playtime will be at less than the estimated playtime ;)
Comment has been collapsed.
The good news is that all results from HLTB are cached for 30 days - so subsequent checks for the same games will be quicker. But I do understand your concerns and the next release will have a check box to disable HLTB queries. I’ll take unplayed wins out from the HLTB stats too.
Are there any other HLTB enrichment features you’d like to see? I was considering some sort of metric that describes how close a users playtimes are to HLTB expectations - but making it comprehensible seemed quite hard! In statistics terms it would be a form of standard error measurement - but I felt the average distance from the min/max was easier to explain.
Comment has been collapsed.
Thanks, I saw that the new update fixed this, great!
The HLTB feature was pretty nifty, but not anything I would be using a lot. The most interesting thing with the script for me is the achievement stats, most of the time it says quite a lot about how users play their won games, but of course HLTB stats can be an interesting addition sometimes.
Would it be possible to show stats like games with ≥1 Achievement, Avg. Achievement Percentage and ≥25% complete on other places than the user profile for users who the script has been run with? I'm thinking like giveaway entry lists. Maybe some would find this a bit too intrusive? :)
Comment has been collapsed.
Fully agreed with both of the suggestions tso184 offered above. Unfortunately the script has become significantly slower with the new update and having both options to scan would be extremely helpful to mitigate that in my opinion.
Thanks a lot for your hard work Kelnage, it's a great script.
Comment has been collapsed.
Thank you for the script. I'm wondering if you would consider changing the "Games with any Playtime" column to only count games with at least 3 minutes of play time? I have quite a few games that has a 1 minute play time because I was accidentally looping through them on Idle Master.
Surely playing for less than 3 minutes shouldn't really count as "playing"... Right?
Thanks for considering :)
Comment has been collapsed.
Thanks for the feedback YukinNya - I can completely see where you're coming from. Where to set that cut-off is an interesting question though - why is someone who's "played" a game for 2 minutes less likely to have actually played it than say 3 or 4 minutes of playtime? I shall ponder this thought and perhaps make it an option rather than a default. Another possibility might be to make use of the HLTB estimate and use a percentage (say less than 1% of the HLTB estimate would be marked as unplayed - although obviously that only works for games that have HLTB estimates).
Comment has been collapsed.
All Steam-links were changed to https which broke the script. Changing following lines fixes it ^^
25
var userID64 = $('[data-tooltip="Visit Steam Profile"]').attr("href").match(/https:\/\/steamcommunity.com\/profiles\/([0-9]*)/)[1];
247
var id = $ga_icon.attr("href").match(/https:\/\/store.steampowered.com\/([^\/]*)\/([0-9]*)\//);
484
var type = $link.attr("href").match(/https:\/\/store.steampowered.com\/([^\/]*)\/[0-9]*\//);
502
id = url.match(/https:\/\/store.steampowered.com\/([^\/]*)\/([0-9]*)\//),
Comment has been collapsed.
Thanks for this great script. lately when I made a check it checked all the games but it stuck on 2 games left to check for some reason.
Comment has been collapsed.
That is correct - there's no way for this script (or even a manual check) to work around the privacy settings (else they'd be pretty poor privacy settings). I'll keep this script up-to-date for those who want to check their own playtime (which are checked as the currently logged in user, so should be accessible regardless of privacy settings) - but generally I think this script is going to be a lot less useful now.
Comment has been collapsed.
I would like to apply for the group but unfortunately I cannot get the jscript to load or work for me even after following all the directions
Comment has been collapsed.
tampermonkey and chrome I have everything installed it just says theres no script running
Comment has been collapsed.
Okay. If you go to your won games page is there a button below the user information table? If not, please open up the debug console (I believe the keyboard shortcut is Ctrl+Shift+i), reload the current page (Ctrl+r) and let me know if any errors appear? Any what other user scripts are you using?
Comment has been collapsed.
yep that fixed it... gonna revoke my applying my thing is too low for your requirements but thanks for the help
Comment has been collapsed.
I've been noticing that lately a lot of users are showing up as having 0 playtime even though they have multiple games with achievements.
What's going on? Something to do with the new Steam security settings?
Comment has been collapsed.
One of two options. They've either used the new security settings to hide their playtime, or they've used a tool like SAM to unlock the achievements (although my understanding of SAM is that the game needs to be running in order to get the achievements unlocked, so that may not be the case). If you could provide an example user, I'd be able to check.
Comment has been collapsed.
Yeah, this has bothered me for ages 😅
The workaround I ended up using was to disable endless scrolling on users' won pages (click the little cog icon next to endless scrolling and add ^/user/.*/giveaways/won
to the list of exclusions), not as convenient perhaps, but at least "Do You Even Play, Bro?" still works 😏
Comment has been collapsed.
Since the poster above me brought up ESGST, there's another bug that's bothered me for a while, ESGST adds extra info to the giveaways on a user's won page including a link the the giveaway's winners page along with the number of winners.
When your script has been run on that user's page however, something 'confuses' ESGST and it incorrectly shows some giveaways as having multiple winners even though they only had one copy (the number of points seems to be read as number of copies). I don't know if this is due to an error in ESGST or your script or just an unfortunate conflict. I'll now go and make a similar post on the ESGST thread 😉
Comment has been collapsed.
It's likely a conflict between my script and ESGST - it's probably parsing the fields I've added to the page as if they are normal SG data, hence its trying to parse the points as the number of copies, since it sees the data my script adds and assumes it is the points values.
Strictly speaking I would say it was a bug in ESGST - but parsing SG HTML is a hard enough job when you're the only script running on the page, so it wouldn't surprise me that they don't play well together.
I know ESGST is a popular extension, so if I do find some free time I may be able to look at making the two more compatible - but it would be quite a bit of work, without any certainty that ESGST wouldn't change in the future and make my work redundant...
Comment has been collapsed.
I'm constantly getting stuck at the "Retrieving ____'s logged playing times" message. It doesn't seem to have any consistency to when it will get past this message and when it wont.
Comment has been collapsed.
32 Comments - Last post 3 minutes ago by Gamy7
250 Comments - Last post 26 minutes ago by Zero224
795 Comments - Last post 2 hours ago by FranckCastle
364 Comments - Last post 2 hours ago by Zepy
44 Comments - Last post 3 hours ago by IronKnightAquila
107 Comments - Last post 4 hours ago by LosingMyEdge
94 Comments - Last post 5 hours ago by BarbaricGenie
188 Comments - Last post 30 seconds ago by wigglenose
132 Comments - Last post 4 minutes ago by f300
56 Comments - Last post 7 minutes ago by m0r1arty
9 Comments - Last post 7 minutes ago by Sh4dowKill
28 Comments - Last post 33 minutes ago by orono
531 Comments - Last post 37 minutes ago by Momo1991
598 Comments - Last post 43 minutes ago by Maskitopeludito
With the creation of Actually Playing Games, we've been finding it rather useful to be able to check for a given SteamGifts user how much they actually play the games they win here. Obviously most SG users don't have a BLAEO account - and just viewing a users profile in Steam takes a while and is difficult to filter down to just SG wins. So I've written a userscript for Tampermonkey for Firefox or Chrome that, when viewing the wins page for a user, allows you to quickly fetch some statistics about how much (i.e. playtime) and how well (i.e. achievements achieved) that user does for their wins.
Download the userscript from Github
IMPORTANT: this extension requires a Steam API key to function. You need to go to this page and register for one if you do not already have one (the domain name can be one you make up - its not important).
To use it, once you've installed the userscript in GM/TM, just go to any user's gifts won page and click on the button labelled "Provide API key", paste your API key into the prompt (this is cached hereafter), and then click on the new button labelled "Fetch Playing Info". You'll see the additional rows of the table slowly fill up as the information comes back from the Steam API, as well as individual games having their info updated in the rows below. The extension caches all the results it can and tells you when the cache was last updated.
Caveats: there are some considerable omissions that this script cannot deal with or be worked around:
Warning: if you use this extension too many times in a day, there is a possibility Steam will block your API key for a period of time and the results that come back will be incorrect or none at all.
Changelogs
2018-01-23: New feature! Do You Even Play, Bro? now queries How Long to Beat (HLTB) for each game, and enriches both the list of games and adds some summary statistics to the table. This makes it easier to compare a users playtime to the consensus about how long a game should take, especially useful for games without any achievements.
2017-12-15: The latest version of Greasemonkey for Firefox 57 has broken a number of things (internal API changes, as well as installing userscripts from GitHub). Rather than waiting for them to fix all these issues, I instead suggest Firefox 57 users move to Tampermonkey since it has neither of these issues.
2017-07-07: Added a new feature of charting a user's cumulative achievement percentage (put your cursor over the graph for more details). Users can switch between the two styles by clicking on the link next to "Games with Achievements".
2017-05-20: With many thanks to BarefootMonkey for spotting it, my script no longer includes DLC in the counts - so hopefully those of you who have won individual DLC or collections that included DLC should see your stats have improved.
2017-05-16: Just pushed out version 1.3.5 of this script. It's made some slight changes to how the "win counts" (now "games with...") section of the table, moving the absolute counts to title attributes (i.e. hover over the percentage to see the ratio) and adding a new count of games with ≥25% of achievements available obtained.
2016-11-08: I've released version 1.2.0 of the script that introduces the ability to fetch the list of games within a sub, which should reduce the inaccuracy of some users statistics.
Comment has been collapsed.