Link: https://apps.apple.com/us/app/assassins-creed-mirage/id6472704261
var objAppUserData = null;
function getAppUserData(intAppId)
{
if (objAppUserData) return objAppUserData;
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function()
{
if (this.readyState == 4 && this.status == 200)
{
objAppUserData = JSON.parse(this.responseText);
populateAppUserData();
}
}
xhttp.open(“GET”, “https://toucharcade.com/games/AppUserDataAjax.php/?appid=” + intAppId, true);
xhttp.send();
}
getAppUserData(6472704261);
function populateAppUserData()
{
var elemButtonWatch = document.getElementById(“elemAppUserData_watch”);
if (objAppUserData.userid)
{
if (objAppUserData.appuserwatch) elemButtonWatch.style.backgroundColor=”#ffff00″;
elemButtonWatch.style.display = ‘block’;
}
var elemYourRating = document.getElementById(“elemAppUserData_rating”);
if (objAppUserData.appuserrating) elemYourRating.innerHTML = objAppUserData.appuserratingstars;
}
function appUserWatch(intAppId, boolWatch)
{
var strData=”appid=” + intAppId + ‘&watch=” + boolWatch + “&token=’ + objAppUserData.appusercsrftoken;
var xhr = new XMLHttpRequest();
xhr.open (‘POST’, ‘https://toucharcade.com/games/AppWatchAjax.php’, true);
xhr.setRequestHeader(‘Content-type’, ‘application/x-www-form-urlencoded’);
xhr.send (strData);
var elemAppUserWatch = document.getElementById(“elemAppUserData_watch”);
var strColor = (boolWatch) ? ‘#ffff00’ : null;
elemAppUserWatch.style.backgroundColor = strColor;
}
Assassin’s Creed Mirage
Details
In Assassin’s Creed® Mirage, you are Basim, a cunning street thief with nightmarish visions, seeking answers and justice. After an act of deadly retribution, Basim flees Baghdad and joins an ancient organization – The Hidden Ones. As he learns their mysterious rituals and powerful tenets, he will hone his unique abilities, discover his true nature, and come to understand a new Creed – one that will change his fate in ways he never could have imagined.
Post a Comment