Вопрос насчет покупки FEAR 2

Всем привет! Вчера решил сделать небольшую закупку игр с обраткой. Давно хотел купить Max Payne 3 и FEAR 2. Макса нашел, а с FEAR какие-то проблемы, пишет что не доступно в моем регионе, хотя на рекламной обложке в Сторе он есть.

442442 открытия

В чем проблема?
Ставь Tapermonkey и прописывай туда скрипт

// ==UserScript==
// @name xbox 360 marketplace purchase fixer
// @namespace http://tampermonkey.net/
// @version 0.1
// @description allow xbox 360 free gold game to be redeemed through web site
// @author mcawesomept, robdangerous
// @match https://live.xbox.com/*
// @license MIT
// @grant none
////allows running user script sooner:
// @run-at document-start
// ==/UserScript==

/*
Notes:
due to a bug in the xbox 360 marketplace, countries that use a comma, ",", as decimal separator will fail to redeem free xbox 360 games with gold
this is a script to allow google chrome to redeem the free game without any manual requirements for the user
*/

console.log("xbox 360 marketplace purchase fixer has been loaded");
var searchPidl = true;
if(searchPidl === true)
{
var checkPrerequisites = window.setInterval(function()
{
var preReqElement = document.getElementById("pidlContainer");
if(preReqElement != null)
{
console.log("the script has been loaded. fixing amount...");
var preReqScript = preReqElement.nextSibling.nextElementSibling;
var preReqScriptHTML = preReqScript.innerHTML.replace(/amount: ([\d]*),([\d]*)/g, "amount: $1.$2");

//remove existing script and add new one
preReqScript.remove();

var liveFixedScript = document.createElement("script");
liveFixedScript.innerHTML = preReqScriptHTML;
document.head.appendChild(liveFixedScript);

console.log("amount fixed");
clearInterval(checkPrerequisites);
//debugger;
}
}, 1);
}

Ответить