STEAM GROUP
Enhanced Ste@m Users esusers
STEAM GROUP
Enhanced Ste@m Users esusers
448
IN-GAME
2,720
ONLINE
Founded
March 13, 2013
Language
English
Location
United States 
Unpurchased DLC for Games Owned ?
I want to see only the unpurchased DLC for games that I already own. Is this possible with Enhanced Steam. I know it used to be (at least the web tells me it was), but I can't find the right filters in the Steam store when ES is running. Am I missing something, or was this removed for some reason?
< >
Showing 1-4 of 4 comments
Yeah, unfortunately this was removed at Valves request and due to limitations they built into their API. You used to be able to hide DLC for games you didn't own which, combined with other filters, would let you see only the unpurchased DLC for games you own.
thats a bit disappointing
Originally posted by Amber:
thats a bit disappointing
agreed
+function hide_unowned_game_dlc() { + storage.get(function(settings) { + if (settings.hide_dlcunownedgames === undefined) { settings.hide_dlcunownedgames = false; storage.set({'hide_dlcunownedgames': settings.hide_dlcunownedgames}); } + if (settings.hide_dlcunownedgames) { + $(".search_result_row").each(function(index) { + var node = $(this); + if ($(this).html().match(/ico_type_dlc/)) { + var appid = get_appid($(this).attr("href")); + + get_http('/store.steampowered.com/api/appdetails/?appids=' + appid, function (data) { + var storefront_data = JSON.parse(data); + $.each(storefront_data, function(application, app_data) { + if (app_data.success) { + get_http('/store.steampowered.com/api/appuserdetails/?appids=' + app_data.data.fullgame.appid, function (fullgamedata) { + var fullgame_data = JSON.parse(fullgamedata); + $.each(fullgame_data, function(fullappid, fullapp_data){ + if (fullapp_data.success) { + if (!(fullapp_data.data.is_owned === true)) { + hide_node(node[0]); + if ($(document).height() <= $(window).height()) { + load_search_results(); + } + } + } + }); + }); + } + }); + }); + } + }); + } + }); +} +
< >
Showing 1-4 of 4 comments
Per page: 1530 50