https://steamdb.info/freepackages/
steamdb's free package script is awesome, it works it's way up through appid numbers, but it starts to fizzle out at around appid 73000-75000.
I am guessing this is caused by free dlc that i don't own the base game for in the less than appid 75000 range clogging things up, unfortunately i don't know how to ask the program in script to skip over appid's less than x, x being 75000 right now and something higher when it starts losing effect again.
thank you any helpful coders out there

6 years ago

Comment has been collapsed.

If all you want is to skip app ids less than x, after this line:

package = freePackages[ i ];

add


if (package < 75000) {
    loaded++;
    continue;
}
6 years ago
Permalink

Comment has been collapsed.

Thank you very much

6 years ago
Permalink

Comment has been collapsed.

You're welcome.

By the way, you need to click the 'Reply' button below someone's comment to reply to them, otherwise you're just replying to yourself. xD

6 years ago
Permalink

Comment has been collapsed.

Sign in through Steam to add a comment.