Free stuff

Game DLC ASF Command
SMITE® SMITE - Publisher's Weekend !addlicense ASF 72913,314321
Paladins® Paladins - Starter Pack !addlicense ASF 94404,314325
Realm Royale Realm Royale - Close Encounters Bundle !addlicense ASF 248847,314328

Browser only method based on SteamDb freepackages

How to use this?

(function()
{
    if( location.href.match( /^https:\/\/store\.steampowered\.com\/account\/licenses\/?$/ ) === null )
    {
        alert( 'Please run this on Steam\'s account page details: https://store.steampowered.com/account/licenses/' );

        window.location = 'https://store.steampowered.com/account/licenses/';

        return;
    }

    var freePackages =
    [
        72913, //  SMITE
        314321, //  SMITE DLC
        94404, //  Paladins
        314325, //  Paladins DLC
        248847, //  Realm Royale
        314328, //  Realm Royale DLC
    ];

    var ownedPackages = {};

    jQuery( '.account_table a' ).each( function( i, el )
    {
        var match = el.href.match( /javascript:RemoveFreeLicense\( ([0-9]+), '/ );

        if( match !== null )
        {
            ownedPackages[ +match[ 1 ] ] = true;
        }
    } );

    var i = 0,
        loaded = 0,
        package = 0,
        total = freePackages.length,
        modal = ShowBlockingWaitDialog( 'Executing…',
            'Please wait until all requests finish. Ignore all the errors, let it finish.' );

    for( ; i < total; i++ )
    {
        package = freePackages[ i ];

        if( ownedPackages[ package ] )
        {
            loaded++;
            continue;
        }

        jQuery.post(
            '//store.steampowered.com/checkout/addfreelicense',
            {
                action: 'add_to_cart',
                sessionid: g_sessionID,
                subid: package
            }
        ).always( function( )
            {
                loaded++;

                modal.Dismiss();

                if( loaded >= total )
                {
                    location.reload();
                }
                else
                {
                    modal = ShowBlockingWaitDialog( 'Executing…',
                        'Loaded <b>' + loaded + '</b>/' + total + '.' );
                }
            }
        );
    }
}());
5 years ago*

Comment has been collapsed.

Install...add DLC...play tutorial...uninstall

5 years ago
Permalink

Comment has been collapsed.

Deleted

This comment was deleted 4 months ago.

5 years ago
Permalink

Comment has been collapsed.

or use asf and skip the download part
and the tutorial part
and the uninstall part

5 years ago
Permalink

Comment has been collapsed.

what is asf

5 years ago
Permalink

Comment has been collapsed.

Archi Steam Farm

5 years ago
Permalink

Comment has been collapsed.

Deleted

This comment was deleted 5 years ago.

5 years ago
Permalink

Comment has been collapsed.

5 years ago
Permalink

Comment has been collapsed.

for some reason i can't add the smite DLC to my account(using the regular download method), the others worked fine.

5 years ago
Permalink

Comment has been collapsed.

use asf

5 years ago
Permalink

Comment has been collapsed.

lol, not much of a solution, i'll pass.

5 years ago
Permalink

Comment has been collapsed.

try this, it uses your browser only
here

5 years ago
Permalink

Comment has been collapsed.

added the new method to thread

5 years ago
Permalink

Comment has been collapsed.

ty

5 years ago
Permalink

Comment has been collapsed.

Closed 5 years ago by Sh4dowKill.