Alan Wake (cuando estaba en Steam) no incluía por default el idioma español de Latinoamérica, por lo que existía un paquete en Steam para descargar el idioma en español, cosa que no funcionaba, pero hoy por causalidad descubrí cómo registrar el idioma en tu cuenta, así como otros paquetes gratuitos de juegos.
en la página https://steamdb.info/freepackages/ nos aparece una opción para ejecutar un Script que nos permite añadir las licencias (entre ellas la de Alan Wake).
Estas són las instrucciones (tomadas directamente de steamdb)
How to use this?
- Copy this code
- Open your licenses and subscriptions page
- Open developer tools in your browser
- Run this code
- Wait for it to finish, it may take a while
- Enjoy
Para ejecutar el script, yo lo hice en Firefox 57
Primero abren el modo de desarrollador CTRL + SHIFT + K
Cambiamos la configuración para que nos muestre el Scratchpad
Nos aseguramos que está seleccionada la casilla y nos vamos al Scratchpad
Ya aquí lo que hay que hacer es lo siguiente:
Dentro de la página de licencias https://store.steampowered.com/account/licenses/ entrar al modo de desarrollador (CTRL + SHIFT + K)
Escribir (no Copiar) ‘allow pasting’ esto es con la finalidad de que uno pueda copiar y pegar el código sin problemas.
Pegar el código que se muestra en la página de SteamDB, que es este:
(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 =
[
13261, // RACE 07: Andy Priaulx Crowne Plaza Raceway
13685, // Alan Wake LatAmSpanish
20000, // The Binding of Isaac Trailer
20001, // Dead Island Launch Trailer (ESRB)
20002, // Astro Tripper Trailer
20003, // Dead Island Launch Trailer (PEGI)
20004, // Rugby Challenge Gameplay Trailer
20005, // Rugby Challenge Stadium Creation
20006, // Rugby Challenge Visual Presentation
20007, // Rugby Challenge Trailer Main
20008, // PT Boats South Gambit Trailer
20009, // PT Boats Knights of the Sea Trailer
20010, // Rugby Challenge Game play Trailer
20011, // Rugby Challenge Online Trailer
20012, // A Game of Thrones-Genesis Trailer
20013, // Hamilton's Great Adventure Release Trailer
20014, // Wasteland Angel Trailer 2
20015, // PT Boats: South Gambit Trailer
20016, // PT Boats: Knights of the Sea Trailer
20017, // The Haunted: Hells Reach Trailer
20018, // Dungeons: The Dark Lord PEGI Trailer
20019, // Dungeons: The Dark Lord ESRB Trailer
20020, // Nuclear Dawn Commander Tutorial
20021, // Hard Reset Launch Trailer
20022, // Xotic Trailer
20023, // Xotic Overview Trailer
20024, // Xotic Weapons Trailer
20025, // Xotic Points and Leadboards Trailer
20026, // Payday: The Heist Trailer
20027, // Iron Grip: Marauders Trailer
20028, // Fallout: New Vegas - Lonesome Road DLC
20029, // Rusty Hearts E3 Trailer
20030, // Worms Ultimate Mayhem Customization Trailer
20031, // The Witcher 2 Version 2.0 Trailer
20032, // Bunch of Heroes test
20033, // Rusty Hearts Launch Trailer
20034, // ROBT
20035, // A Game of Thrones-Genesis Official Trailer
20036, // The Witcher 2 Version 2.0 Trailer
20037, // Railwork 3 Trailer
20038, // Stronghold3 Gameplay
20039, // The Clockwork Man: The Hidden World Trailer
20040, // Hector Episode Two Trailer
20041, // Hector Episode Three Trailer
20042, // Rise of the Immortals Trailer
20043, // F1 2011 Dev Diary 3 PEGI
20044, // F1 2011 Dev Diary 3 ESRB
20045, // PAM DLC Fuzz Trailer
20046, // PAM DLC TOWer Trailer
20047, // PAM DLC Ice Scream Trailer
];
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 + '.' );
}
}
);
}
}());
Presionar RUN y esperar un momento en lo que se ejecuta el script
Verificar en la app de Steam que el contenido se haya agregado correctamente.
Aquí se puede ver que he activado el idioma LatAm con esto.
¡Buena suerte!
Advertisements
Share this:
Like this:Like Loading...