您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Adds some usable fields for MMO game World of Tanks user's page
当前为
// ==UserScript== // @author Elf__X // @name WoTExtendedStat // @namespace http://forum.worldoftanks.ru/index.php?/topic/717208- // @version 0.9.15.4 // @description Adds some usable fields for MMO game World of Tanks user's page // @match http://worldoftanks.ru/*/accounts/* // @match http://worldoftanks.eu/*/accounts/* // @match http://worldoftanks.com/*/accounts/* // @match http://worldoftanks.asia/*/accounts/* // @match http://worldoftanks.kr/*/accounts/* // @include http://worldoftanks.ru/*/accounts/* // @include http://worldoftanks.eu/*/accounts/* // @include http://worldoftanks.com/*/accounts/* // @include http://worldoftanks.asia/*/accounts/* // @include http://worldoftanks.kr/*/accounts/* // @connect wnefficiency.net // @connect armor.kiev.ua // @connect noobmeter.com // @connect wot-noobs.ru // @connect elf.on.ufanet.ru // @connect worldoftanks.ru // @connect worldoftanks.eu // @connect worldoftanks.com // @connect worldoftanks.asia // @connect worldoftanks.kr // @grant GM_xmlhttpRequest // ==/UserScript== var lang, scriptVersion = '0.9.15.4', tanksarr = [], gServ, api_key; if (document.location.host.indexOf(".ru") !== -1) { api_key = "895d3dafdd87af03e1e515befcd83882"; gServ = "ru"; } else if (document.location.host.indexOf(".eu") !== -1) { api_key = "d0a293dc77667c9328783d489c8cef73"; gServ = "eu"; } else if (document.location.host.indexOf(".com") !== -1) { api_key = "16924c431c705523aae25b6f638c54dd"; gServ = "com"; } var rangD = ['Виртуоз (>99%)', 'Мастер-танкист (>95%)', 'Танкист 1-го класса (>80%)', 'Танкист 2-го класса (>60%)', 'Танкист 3-го класса (>45%)', 'Оленевод 3-го класса (>30%)', 'Оленевод 2-го класса (>20%)', 'Оленевод 1-го класса (>10%)', 'Мастер-оленевод (>10%)'], rangDE = ['>99%', '>95%', '>80%', '>60%', '>45%', '>30%', '>20%', '>10%', '>10%'], rangA = ['cv', 'cm', 'c1', 'c2', 'c3', 'd3', 'd2', 'd1', 'dm']; /* Requires _opera-xdr-engine.js to handle script-based requests in Opera*/ var xdr = { reqId: 0, req: {}, prepareUrl: function (url) { return url; }, xget: function (url, onDone) { url = this.prepareUrl(url); if (window.opera && window.opera.defineMagicVariable) { this.scriptTransport(url, onDone); } else if (/Chrome/.test(navigator.userAgent) && chrome && chrome.extension) { this.xhrTransport(url, onDone); } else if (GM_xmlhttpRequest) { this.GMTransport(url, onDone); } else { var currentReqId = this.reqId++; this.req[currentReqId].handleJSONP = onDone; this.JSONPTransport(url, "xdr.req[" + currentReqId + "].handleJSONP"); } }, scriptTransport: function (url, onDone) { var t = document.createElement("script"); t.src = url; t._callback = onDone; document.body.appendChild(t); }, xhrTransport: function (url, onDone) { var req = new XMLHttpRequest(); req.open("GET", url, true); req.onreadystatechange = function () { if (req.readyState == 4) { if (req.status == 200) { onDone(req.responseText); } } }; req.send(); }, GMTransport: function (url, onDone) { setTimeout(function () { GM_xmlhttpRequest({ method: "GET", url: url, onload: function (x) { var o = x.responseText; if (onDone) { onDone(o); } } }); }, 0); }, JSONPTransport: function (url, callbackName) { if (callbackName && typeof callbackName === "string") { url += "&callback=" + callbackName; } var t = document.createElement("script"); t.src = url; document.body.appendChild(t); } }; if (document.title.indexOf("Профиль игрока") > -1) lang = "ru"; if (window.location.host.indexOf("worldoftanks") > -1 && window.location.href.indexOf("accounts") > -1) { var scr = localStorage.getItem("flot"); if (scr) { addScript(scr); } else { xdr.xget("http://www.flotcharts.org/flot/jquery.flot.js", addScript); } } function addScript(response) { var script = document.createElement("script"); script.type = "text/javascript"; script.textContent = response; document.body.appendChild(script); if (!localStorage.getItem("flot")) localStorage.setItem("flot", response); var scr = localStorage.getItem("flot_time"); if (scr) { addScript2(scr); } else { xdr.xget("http://www.flotcharts.org/flot/jquery.flot.time.js", addScript2); } } function addScript2(response) { var script = document.createElement("script"); script.type = "text/javascript"; script.textContent = response; document.body.appendChild(script); if (!localStorage.getItem("flot_time")) localStorage.setItem("flot_time", response); main(); } function main() { var UserId = window.location.href.match(/\/(\d+)/)[1]; var uskeys = []; for (var key in localStorage) { if (key.indexOf('daystat') !== -1) { var uskey = key.split('_')[1]; if (uskeys.indexOf(uskey) === -1) uskeys.push(uskey); } } var d1 = document.createElement("div"); d1.setAttribute('id', "dialog-overlay"); document.body.appendChild(d1); var d2 = document.createElement("div"); d2.setAttribute('id', "dialog-box"); d2.setAttribute('style', "position: fixed; top: 40%; left: 40%; z-index: 100000;"); d2.innerHTML = '<div class="dialog-content"><div id="dialog-message"></div><a href="#" class="button">Close</a></div>'; document.body.appendChild(d2); var dtext = '<style>' + ' #dialog-overlay { /* set it to fill the whil screen */ width:100%; height:100%; /* transparency for different browsers */ filter:alpha(opacity=50); -moz-opacity:0.5; -khtml-opacity: 0.5; opacity: 0.5; background:#000; /* make sure it appear behind the dialog box but above everything else */ position:absolute; top:0; left:0; z-index:3000; /* hide it by default */ display:none;}' + ' #dialog-box { /* css3 drop shadow */ -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5); -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5); /* css3 border radius */ -moz-border-radius: 5px; -webkit-border-radius: 5px; background:#eee; /* styling of the dialog box, i have a fixed dimension for this demo */ width:328px; /* make sure it has the highest z-index */ position:absolute; z-index:5000; /* hide it by default */ display:none;}' + ' #dialog-box .dialog-content { /* style the content */ text-align:left; padding:10px; margin:13px; color:#666; font-family:arial; font-size:11px; }' + ' a.button { /* styles for button */ margin:10px auto 0 auto; text-align:center; background-color: #e33100; display: block; width:50px; padding: 5px 10px 6px; color: #fff; text-decoration: none; font-weight: bold; line-height: 1; /* css3 implementation :) */ -moz-border-radius: 5px; -webkit-border-radius: 5px; -moz-box-shadow: 0 1px 3px rgba(0,0,0,0.5); -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.5); text-shadow: 0 -1px 1px rgba(0,0,0,0.25); border-bottom: 1px solid rgba(0,0,0,0.25); position: relative; cursor: pointer; }' + ' a.button:hover { background-color: #c33100; }' + '/* extra styling */' + '#dialog-box .dialog-content p { font-weight:700; margin:0;}' + '#dialog-box .dialog-content ul { margin:10px 0 10px 20px; padding:0; height:50px;}' + '#us-set-table td{border: 1px dashed; text-align: center; padding: 3px;}' + '#us-set-table {width: 100%;}' + '#us-set-table th {color: white;}' + '</style>' + '<div id="us-settings-block" class="ui-dialog ui-draggable no-jquery-buttons" tabindex="-1" style="display:none; z-index: 1004; top: 10%; left: 30%; position: absolute;">' + '<div class="ui-dialog-titlebar ui-widget-header ui-corner-all" tabindex="-1"><span class="ui-dialog-title">' + (lang === "ru" ? "Настройки скрипта расширенной статистики" : "Extended statistic script settings ") + '</span>' + '<a href="#" class="ui-dialog-titlebar-close ui-corner-all us-close-settings" tabindex="-1"><span class="ui-icon ui-icon-closethick">close</span></a></div>' + '<div class="ui-dialog-content ui-widget-content" style="display: block; width: auto; height: auto;"><div class="js-dialog-content b-dialog-content"><div class="h-popup-content" style="background: rgb(31, 31, 31);">' + '<div style="border: 1px solid; border-radius: 10px; -webkit-border-radius: 10px; padding: 5px;"><h5 style="text-align: center; margin: 0; color: #f25322;">' + (lang === "ru" ? "Настройки блоков" : "Block settings") + '</h5><br><table id="us-set-table"><thead><tr><th width="60%">' + (lang === "ru" ? 'Блок' : 'Block') + '</th><th width="20%">' + (lang === "ru" ? 'Свернуть' : 'Collapse') + '</th><th width="20%">' + (lang === "ru" ? 'Удалить' : 'Remove') + '</th></tr></thead><tbody>' + '<tr class="us-set-block" btype="newBat" cur-pos="0"><td>' + (lang === "ru" ? 'Новые бои' : 'New battles') + '<div style="width: 30px; height: 12px; overflow:hidden; top: 4px; margin: auto; position: relative; float: right;"><a class="b-vertical-arrow settings-row b-vertical-arrow__open" style="visibility:hidden;" href="#"><span class="b-fake-link"> </span></a><a class="b-vertical-arrow settings-row" href="#"> </a></div></td><td><input type="checkbox"></td><td><input type="checkbox"></td></tr>' + '<tr class="us-set-block" btype="efRat" cur-pos="1"><td>' + (lang === "ru" ? 'Рейтинги эффективности' : 'Eff. ratings') + '<div style="width: 30px; height: 12px; overflow:hidden; top: 4px; margin: auto; position: relative; float: right;"><a class="b-vertical-arrow settings-row b-vertical-arrow__open" href="#"><span class="b-fake-link"> </span></a><a class="b-vertical-arrow settings-row" href="#"> </a></div></td><td><input type="checkbox"></td><td><input type="checkbox"></td></tr>' + '<tr class="us-set-block" btype="plComp" cur-pos="2"><td>' + (lang === "ru" ? 'Сравнение игроков' : 'Players compare') + '<div style="width: 30px; height: 12px; overflow:hidden; top: 4px; margin: auto; position: relative; float: right;"><a class="b-vertical-arrow settings-row b-vertical-arrow__open" href="#"><span class="b-fake-link"> </span></a><a class="b-vertical-arrow settings-row" href="#"> </a></div></td><td><input type="checkbox"></td><td><input type="checkbox"></td></tr>' + '<tr class="us-set-block" btype="pers" cur-pos="3"><td>' + (lang === "ru" ? 'Личные данные' : 'Personal') + '<div style="width: 30px; height: 12px; overflow:hidden; top: 4px; margin: auto; position: relative; float: right;"><a class="b-vertical-arrow settings-row b-vertical-arrow__open" href="#"><span class="b-fake-link"> </span></a><a class="b-vertical-arrow settings-row" href="#"> </a></div></td><td><input type="checkbox"></td><td><input type="checkbox"></td></tr>' + '<tr class="us-set-block" btype="speed" cur-pos="4"><td>' + (lang === "ru" ? 'Спидометры' : 'speedometers') + '<div style="width: 30px; height: 12px; overflow:hidden; top: 4px; margin: auto; position: relative; float: right;"><a class="b-vertical-arrow settings-row b-vertical-arrow__open" href="#"><span class="b-fake-link"> </span></a><a class="b-vertical-arrow settings-row" href="#"> </a></div></td><td><input type="checkbox"></td><td><input type="checkbox"></td></tr>' + '<tr class="us-set-block" btype="fame" cur-pos="5"><td>' + (lang === "ru" ? 'Аллея славы' : 'Hall of fame') + '<div style="width: 30px; height: 12px; overflow:hidden; top: 4px; margin: auto; position: relative; float: right;"><a class="b-vertical-arrow settings-row b-vertical-arrow__open" href="#"><span class="b-fake-link"> </span></a><a class="b-vertical-arrow settings-row" href="#"> </a></div></td><td><input type="checkbox"></td><td><input type="checkbox"></td></tr>' + '<tr class="us-set-block" btype="achiev" cur-pos="6"><td>' + (lang === "ru" ? 'Достижения' : 'Achievements') + '<div style="width: 30px; height: 12px; overflow:hidden; top: 4px; margin: auto; position: relative; float: right;"><a class="b-vertical-arrow settings-row b-vertical-arrow__open" href="#"><span class="b-fake-link"> </span></a><a class="b-vertical-arrow settings-row" href="#"> </a></div></td><td><input type="checkbox"></td><td><input type="checkbox"></td></tr>' + '<tr class="us-set-block" btype="common" cur-pos="7"><td>' + (lang === "ru" ? 'Общее' : 'Common') + '<div style="width: 30px; height: 12px; overflow:hidden; top: 4px; margin: auto; position: relative; float: right;"><a class="b-vertical-arrow settings-row b-vertical-arrow__open" href="#"><span class="b-fake-link"> </span></a><a class="b-vertical-arrow settings-row" href="#"> </a></div></td><td><input type="checkbox"></td><td><input type="checkbox"></td></tr>' + '<tr class="us-set-block" btype="diagr" cur-pos="8"><td>' + (lang === "ru" ? 'Диаграммы' : 'diargams') + '<div style="width: 30px; height: 12px; overflow:hidden; top: 4px; margin: auto; position: relative; float: right;"><a class="b-vertical-arrow settings-row b-vertical-arrow__open" href="#"><span class="b-fake-link"> </span></a><a class="b-vertical-arrow settings-row" href="#"> </a></div></td><td><input type="checkbox"></td><td><input type="checkbox"></td></tr>' + '<tr class="us-set-block" btype="rat" cur-pos="9"><td>' + (lang === "ru" ? 'Рейтинги' : 'Ratings') + '<div style="width: 30px; height: 12px; overflow:hidden; top: 4px; margin: auto; position: relative; float: right;"><a class="b-vertical-arrow settings-row b-vertical-arrow__open" href="#"><span class="b-fake-link"> </span></a><a class="b-vertical-arrow settings-row" href="#"> </a></div></td><td><input type="checkbox"></td><td><input type="checkbox"></td></tr>' + '<tr class="us-set-block" btype="veh" cur-pos="10"><td>' + (lang === "ru" ? 'Техника' : 'Vehicles') + '<div style="width: 30px; height: 12px; overflow:hidden; top: 4px; margin: auto; position: relative; float: right;"><a class="b-vertical-arrow settings-row b-vertical-arrow__open" href="#"><span class="b-fake-link"> </span></a><a class="b-vertical-arrow settings-row" style="visibility:hidden;" href="#"> </a></div></td><td><input type="checkbox"></td><td><input type="checkbox"></td></tr>' + '</tbody></table></div>' + '<div style="border: 1px solid; border-radius: 10px; -webkit-border-radius: 10px; padding: 5px; margin-top: 5px;">' + '<h5 style="text-align: center; margin: 0; color: #f25322;">' + (lang === "ru" ? 'Графики' : 'Graphs') + '</h5><br>' + '<label for="all" style="padding-left: 20px;">' + (lang === "ru" ? 'Все' : 'All') + '</label><input type="radio" name="gtype" id="all" value="all" checked/>' + '<label for="date" style="padding-left: 20px;">' + (lang === "ru" ? 'Дата' : 'Date') + '</label><input type="radio" name="gtype" id="date" value="date" />' + '<label for="bat" style="padding-left: 20px;">' + (lang === "ru" ? 'Бои' : 'Battles') + '</label><input type="radio" name="gtype" id="bat" value="bat" />' + '<label for="no" style="padding-left: 20px;">' + (lang === "ru" ? 'Не отображать' : 'Dont show') + '</label><input type="radio" name="gtype" id="no" value="no" />' + '</div>' + '<div style="border: 1px solid; border-radius: 10px; -webkit-border-radius: 10px; padding: 5px; margin-top: 5px;overflow-y: auto;width: 98%;"><h5 style="text-align: center; margin: 0; color: #f25322;">' + 'Названия ссылок' + '</h5><br><table>'; for (var i = 0; i < uskeys.length; i++) { dtext += '<tr id="ustr' + uskeys[i] + '"><td><label for="us' + uskeys[i] + '" style="padding-left: 20px;"><a href="http://worldoftanks.ru/community/accounts/' + uskeys[i] + '/">Игрок ' + uskeys[i] + '</a></label></td><td><input style="margin-left: 45px;margin-bottom: 5px;width: 135%;" type="text" id="us' + uskeys[i] + '" uid="' + uskeys[i] + '" name="us' + uskeys[i] + '" class="us_st_name" value="Игрок ' + uskeys[i] + '" /></td></tr>'; } dtext += '</table></div>' + '<div style="border: 1px solid; border-radius: 10px; -webkit-border-radius: 10px; padding: 5px; margin-top: 5px;"><h5 style="text-align: center; margin: 0; color: #f25322;">' + (lang === "ru" ? 'Сравнение игроков' : 'Players compare') + '</h5><br><input type="checkbox" id="us-settings-compare">' + (lang === "ru" ? 'Сравнивать других игроков с "моими" данными' : 'Compare any players with "my" stat.') + '<br><br><div id="us-my-compare-block" style="display: none;">' + (lang === "ru" ? 'Адрес моей страницы' : 'Address of my page') + ': ' + '<input type="text" style="width: 100%;" id="us-settings-compare-page"><br><input type="checkbox" id="us-settings-current-page">' + (lang === "ru" ? 'Текущая страница' : 'Current page') + '</div></div>' + '</div><fieldset class="g-nopadding"><div class="b-popupbotton"><span class="b-button b-button__colored"><span class="b-button_right b-button-wrap"><input type="button" value="' + (lang === "ru" ? 'Сохранить' : 'Save') + '" tabindex="1003" id="us-settings-save">' + '</span></span><div class="b-cancel"><a href="#" class="us-close-settings" tabindex="1004">' + (lang === "ru" ? 'Отмена' : 'Cancel') + '</a></div></div></fieldset></div></div></div><div id="us-settings-overlay" class="ui-widget-overlay" style="display:none; width: 5000px; height: 20000px; min-height: 2000px; z-index: 1003;"></div>'; fake_div = document.createElement("div"); fake_div.innerHTML = dtext; document.getElementsByClassName("page-wrapper")[0].appendChild(fake_div); var avtemp = CalcAvgLev(tanksarr), AllAvgLev = avtemp[0], tnaSum = avtemp[1], expDmg = avtemp[2], expSpot = avtemp[3], expFrag = avtemp[4], expDef = avtemp[5], expWinRate = avtemp[6], expB = avtemp[7] wn8 = 0, own8 = 0, nwn8 = 0, WGRating = GetBattleStat(1), OldWGRating = WGRating, AllWins = GetBattleStat(4), AllDamag = GetBattleStat(7), AllFrags = GetBattleStat(9), AllSpotted = GetBattleStat(10), AllCaps = GetBattleStat(6), AllDefs = GetBattleStat(8), AllXp = GetBattleStat(11), AllBattles = GetBattleStat(5), AllGold = document.getElementsByClassName("currency-gold")[0], AllCredit = document.getElementsByClassName("currency-credit")[0], AllExp = document.getElementsByClassName("currency-experience")[0], playerNick = document.getElementById("js-profile-name").innerHTML, daypassed = (new Date() - new Date(document.getElementsByClassName("js-date-format")[0].getAttribute("data-timestamp") * 1000)) / 1000 / 60 / 60 / 24, timeDiv = document.getElementsByClassName("b-profile-name")[0], dayArray = [], comparedayArray = [], blockArray = [], statTooltip = '', clanDiv = document.getElementsByClassName("b-profile-clan")[0], oxeff = 0, oxwn = 0; var rDAMAGE = AllDamag / AllBattles * expB/ expDmg, rSPOT = AllSpotted / AllBattles * expB/ expSpot, rFRAG = AllFrags / AllBattles * expB/ expFrag, rDEF = AllDefs / AllBattles * expB/ expDef, rWIN = AllWins / AllBattles * expB / expWinRate, rWINc = Math.max(0, (rWIN - 0.71) / (1 - 0.71)), rDAMAGEc = Math.max(0, (rDAMAGE - 0.22) / (1 - 0.22)), rFRAGc = Math.max(0, Math.min(rDAMAGEc + 0.2, (rFRAG - 0.12) / (1 - 0.12))), rSPOTc = Math.max(0, Math.min(rDAMAGEc + 0.1, (rSPOT - 0.38) / (1 - 0.38))), rDEFc = Math.max(0, Math.min(rDAMAGEc + 0.1, (rDEF - 0.10) / (1 - 0.10))); wn8 = 980 * rDAMAGEc + 210 * rDAMAGEc * rFRAGc + 155 * rFRAGc * rSPOTc + 75 * rDEFc * rFRAGc + 145 * Math.min(1.8, rWINc); setup_script(toFl); setup_script(WriteStat); setup_script(setCookie); setup_script(getCookie); setup_script(SetLSData); setup_script(GetLSData); setup_script(GetBattleStat); setup_script(WriteCompareStat); setup_script(CalcEffColor); setup_script(FormatUsSetTable); if (window.location.href.indexOf('#USCompareStat') !== -1) SaveCompareStatData(); var updateVer = GetLSData('UsUpdateVer1'); if (!updateVer) { localStorage.removeItem('WN8Data'); SetLSData('UsUpdateVer1', 1, '01-Jan-2031 00:00:00 GMT'); window.location.reload(); } var alltanks = GetLSData("AllTanksArr"); if (alltanks) { xdr.xget("http://api." + document.location.host + "/wot/account/tanks/?application_id=" + api_key + "&account_id=" + UserId, fixStatData); } else { xdr.xget("http://api." + document.location.host + "/wot/encyclopedia/tanks/?application_id=" + api_key, saveTanksArr); } document.getElementById("js-profile-name").setAttribute('style', "max-width: 100%;"); var stats = document.getElementsByClassName("b-statistic_item"); for (i = 0; i < stats.length; i++) stats[i].setAttribute('style', "max-width: 100%;"); document.getElementsByClassName("b-userblock-wrpr")[0].style.margin = '0'; if (!clanDiv) { clanDiv = document.getElementsByClassName("b-profile-noclan")[0]; } else { document.getElementsByClassName("b-statistic_item")[0].setAttribute('style', "max-width: 100%;"); } if (!clanDiv) clanDiv = timeDiv; clanDiv.setAttribute('style', "width: 50%; max-width: 100%;"); timeDiv.setAttribute('style', "width: 30%; max-width: 100%;"); fake_div = document.createElement("div"); fake_div.innerHTML = "<p>" + (lang === "ru" ? "Версия <a href='http://forum.worldoftanks.ru/index.php?/topic/717208-'>скрипта</a> " : " <a href='http://forum.worldoftanks.ru/index.php?/topic/717208-'>Script</a> version ") + scriptVersion + " <br>" + "</p>" + "<p><a href='#' id='us-settings-a'>" + (lang === "ru" ? "Настройки скрипта" : "Script settings") + "</a></p>" + "<style>" + ".spoiler span.close," + ".spoiler span.open{" + " padding-left:22px;" + " color: #F25322 !important;" + " border-bottom: 1px dashed #F25322;" + "}" + ".spoiler blockquote," + ".spoiler{" + " padding:0.5em;" + " border-radius:15px;" + " -webkit-border-radius:15px;" + " -khtml-border-radius:15px;" + " -moz-border-radius:15px;" + " -o-border-radius:15px;" + " -ms-border-radius:15px;" + "}" + ".spoiler {" + " overflow-x:hidden;" + " overflow-y:hidden;" + " box-shadow: 0px 1px 8px #F2534A;" + " border:#f25322 solid 1px;" + " -webkit-box-shadow:0px 1px 8px #F2534A;" + " -khtml-box-shadow:0px 3px 8px #F2534A;" + " -moz-box-shadow:0px 1px 8px #F2534A;" + " -ms-box-shadow:0px 1px 8px #F2534A;" + "}" + ".spoiler blockquote {" + " margin-top:12px;" + " min-height: 23px;" + " border:#CDCDCD 2px dashed;" + "}" + " </style>" + '<div class="spoiler" style="border: #f25322 dashed 1px; margin-bottom: 10px;">' + ' <div class="box" style="text-align: center;">' + ' <a href="#" id="autor-pay" class="b-vertical-arrow">' + ' <span class="b-fake-link">' + (lang === "ru" ? 'Поддержать автора скрипта' : 'Please, give some money to support the author') + '</span>' + ' </a>' + ' <blockquote class="Untext" style="display:none">' + ' <span style="color: green;">WebMoney:</span>' + ' <br>WMR: R135164502303' + ' <br>WMZ: Z127526962810' + ' <br>WME: E419926987074<br><br>' + ' <span style="color: green;">Yandex:</span>' + ' <br>41001870448136<br>' + ' </blockquote>' + (lang === "ru" ? '<blockquote class="Untext" style="display:none">' + ' <span style="color: green;">Рассказать друзьям:</span><br><br>' + ' <a onclick="window.open(\'http://vkontakte.ru/share.php?url=http://userscripts.org/scripts/show/169225&title=Расширенная статистика на сайте http://worldoftanks.ru&description=Скрипт добавляет расширенную статистику(рейтинги, статистика по сохраненным данным и т.д.) на сайт worldoftanks&image=http://wiki.worldoftanks.ru/uploads/thumb/3/30/Wot_logo_metal.png/223px-Wot_logo_metal.png\', \'vkontakte\', \'width=626, height=436\'); return false;" rel="nofollow" href="http://vkontakte.ru/share.php?url=http://userscripts.org/scripts/show/169225">' + ' <img src="http://vk.com/images/vk32.png" width="32" height="32" title="Поделиться с друзьями ВКонтакте">' + ' </a>' + ' </blockquote>' : '') + "</div></div>"; timeDiv.appendChild(fake_div); // TODO Придумать новый способ проверки обновления //var sVersion = getCookie("usScriptVer"); //if (!sVersion) xdr.xget("http://userscripts.org/scripts/show/169225", getNewScriptVersion); else if (sVersion !== scriptVersion) //{ // var fake_div2 = document.createElement("div"); // fake_div2.setAttribute('style', "color: red;font-size: 7pt;padding: 5px;border-radius: 15px;border: 2px solid yellow;"); // fake_div2.innerHTML = "<strong>Вышла новая версия скрипта " + sVersion + ".<br>Пожалуйста, обновите скрипт.</strong>"; // timeDiv.appendChild(fake_div2); //} var server = document.location.host.match(/\.([^\.]+)$/)[1].toUpperCase(); server = server === "COM" ? "NAm" : server; var fake_div = document.createElement("div"); if (lang === "ru") { fake_div.innerHTML = "<p><a class='b-orange-arrow' href='http://worldofclans.ru/player/index.html?id=" + UserId + "'>История кланов</a></p>"; } else { fake_div.innerHTML = "<p><a class='b-orange-arrow' href='http://td82.ru/wotka?nickname=" + playerNick + "&server=" + server + "'>" + ((lang === "ru") ? "История кланов" : "Clan history") + "</a></p>"; } clanDiv.appendChild(fake_div); var effres = CalcEff(0, AllAvgLev, AllBattles, AllWins, AllDamag, AllFrags, AllSpotted, AllCaps, AllDefs, AllXp); var UsSettings = GetLSData("usSettings"), settings = new Object(); if (!UsSettings) { UsSettings = getCookie("usSettings"); if (UsSettings) { SetLSData('usSettings', UsSettings, '01-Jan-2031 00:00:00 GMT'); } } if (UsSettings) { var setArr = UsSettings.split("|"), blSetArr = setArr[0].split("/"); for (var i = 0; i < blSetArr.length; i++) { var bsVals = blSetArr[i].split(';'); if (toFl(bsVals[1]) === 1) document.querySelector('[btype="' + bsVals[0] + '"]').cells[1].getElementsByTagName('input')[0].checked = true; if (toFl(bsVals[2]) === 1) document.querySelector('[btype="' + bsVals[0] + '"]').cells[2].getElementsByTagName('input')[0].checked = true; if (toFl(bsVals[3]) === 0) document.querySelector('[btype="' + bsVals[0] + '"]').cells[0].getElementsByTagName('div')[0].getElementsByTagName('a')[0].setAttribute('style', 'visibility:hidden;'); if (toFl(bsVals[3]) === 10) document.querySelector('[btype="' + bsVals[0] + '"]').cells[0].getElementsByTagName('div')[0].getElementsByTagName('a')[1].setAttribute('style', 'visibility:hidden;'); if (bsVals[3]) document.querySelector('[btype="' + bsVals[0] + '"]').setAttribute('cur-pos', bsVals[3]); settings[bsVals[0]] = [bsVals[1], bsVals[2], bsVals[3]]; } FormatUsSetTable(); bsVals = setArr[1].split(';'); settings.compare = toFl(bsVals[0]); if (settings.compare === 1) { document.getElementById('us-settings-compare').checked = true; document.getElementById('us-my-compare-block').style.display = "block"; } settings.compareAdr = bsVals[1]; document.getElementById('us-settings-compare-page').value = settings.compareAdr; var suid = settings.compareAdr.match(/\/(\d+)/); settings.UserID = settings.compare && suid ? suid[1] : false; //if (settings.UserID && document.getElementById("ustr" + settings.UserID)) // document.getElementById("ustr" + settings.UserID).style.display = "none"; if (setArr.length > 2) { settings.gtype = setArr[2]; } else { settings.gtype = "all"; } if (setArr.length > 3) { var us_strs = setArr[3].split("/"); for (i = 0; i < us_strs.length; i++) { var us_vals = us_strs[i].split(";"); if (us_vals.length > 1 && document.getElementById('us' + us_vals[0])) { settings[us_vals[0]] = us_vals[1]; document.getElementById('us' + us_vals[0]).value = us_vals[1]; } } } document.getElementById(settings.gtype).click(); } daystat = GetStat(); if (daystat) { var dsArr = daystat.split("|"), strArray = dsArr[0].split("/"), str = strArray[0].split(";"), oldMedals = [], timeStat = new Date(str[0]), olddaypassed = (timeStat - new Date(document.getElementsByClassName("js-date-format")[0].getAttribute("data-timestamp") * 1000)) / 1000 / 60 / 60 / 24; if (timeStat.toLocaleFormat) var oldTime = timeStat.toLocaleFormat("%d.%m.%Y %H:%M"); else oldTime = timeStat.toLocaleString().substr(0, timeStat.toLocaleString().lastIndexOf(":")); var statText = '<span style="font-weight: bold; color: white;">' + (lang === "ru" ? 'Статистика c ' + oldTime : 'Stat. from ' + oldTime) + '</span><br>'; if (dsArr.length > 3) { OldWGRating = toFl(dsArr[3]); } if (dsArr.length > 1) { var MedArr = dsArr[1].split("/"); for (var i = 0; i < MedArr.length; i++) { var MedStr = MedArr[i].split(";"); oldMedals[MedStr[0]] = toFl(MedStr[1]); } } if (str.length > 3) { var OldBattles = toFl(str[12]), NewBattles = AllBattles - OldBattles, OldWins = toFl(str[10]), NewWins = AllWins - OldWins, OldXp = toFl(str[24]), NewXp = AllXp - OldXp, OldDamag = toFl(str[16]), NewDamag = AllDamag - OldDamag, OldFrags = toFl(str[20]), NewFrags = AllFrags - OldFrags, OldSpotted = toFl(str[22]), NewSpotted = AllSpotted - OldSpotted, OldCaps = toFl(str[14]), NewCaps = AllCaps - OldCaps, OldDefs = toFl(str[18]), NewDefs = AllDefs - OldDefs, OldGold = toFl(str[1]), OldCredit = toFl(str[2]), OldExp = toFl(str[3]); } if (AllGold) { var NewGold = toFl(AllGold.innerHTML) - OldGold; if (NewGold) { AllGold.innerHTML = AllGold.innerHTML + " (" + (NewGold > 0 ? "+" + NewGold : NewGold) + ")"; statTooltip += "<div style='float:left'>" + (lang === "ru" ? 'Золото: ' : 'Gold: ') + '</div><span class="currency-gold" style="float:right">' + (NewGold > 0 ? "+" + NewGold : NewGold) + "</span><br>"; } } if (AllCredit) { var NewCredit = toFl(AllCredit.innerHTML) - OldCredit; if (NewCredit) { AllCredit.innerHTML = AllCredit.innerHTML + " (" + (NewCredit > 0 ? "+" + NewCredit : NewCredit) + ")"; statTooltip += "<div style='float:left'>" + (lang === "ru" ? 'Кредиты: ' : 'Credits: ') + '</div><span class="currency-credit" style="float:right">' + (NewCredit > 0 ? "+" + NewCredit : NewCredit) + "</span><br>"; } } if (AllExp) { var NewExp = toFl(AllExp.innerHTML) - OldExp; if (NewExp) { AllExp.innerHTML = AllExp.innerHTML + " (" + (NewExp > 0 ? "+" + NewExp : NewExp) + ")"; statTooltip += "<div style='float:left'>" + (lang === "ru" ? 'Свободный опыт: ' : 'Free experience: ') + '</div><span class="currency-experience" style="float:right">' + (NewExp > 0 ? "+" + NewExp : NewExp) + "</span><br>"; } } for (var i = 1; i < strArray.length; i++) { str = strArray[i].split(";"); var tName = str[0].toLowerCase(); dayArray[tName] = new Object(); dayArray[tName].b = toFl(str[1]); dayArray[tName].w = str.length > 3 ? str[3] : -1; } var cav = CalcOldAvgLev(dayArray, tanksarr), OldAvgLev = cav[0], NewAvgLev = cav[1], OldtnaSum = cav[2], expDmg = cav[3], expSpot = cav[4], expFrag = cav[5], expDef = cav[6], expWinRate = cav[7], expB = cav[8], neffs = CalcEff(1, NewAvgLev, NewBattles, NewWins, NewDamag, NewFrags, NewSpotted, NewCaps, NewDefs, NewXp), oeffs = CalcEff(0, OldAvgLev, OldBattles, OldWins, OldDamag, OldFrags, OldSpotted, OldCaps, OldDefs, OldXp); var rDAMAGE = OldDamag / expDmg, rSPOT = OldSpotted / expSpot, rFRAG = OldFrags / expFrag, rDEF = OldDefs / expDef, rWIN = OldWins / expWinRate, rWINc = Math.max(0, (rWIN - 0.71) / (1 - 0.71)), rDAMAGEc = Math.max(0, (rDAMAGE - 0.22) / (1 - 0.22)), rFRAGc = Math.max(0, Math.min(rDAMAGEc + 0.2, (rFRAG - 0.12) / (1 - 0.12))), rSPOTc = Math.max(0, Math.min(rDAMAGEc + 0.1, (rSPOT - 0.38) / (1 - 0.38))), rDEFc = Math.max(0, Math.min(rDAMAGEc + 0.1, (rDEF - 0.10) / (1 - 0.10))); own8 = 980 * rDAMAGEc + 210 * rDAMAGEc * rFRAGc + 155 * rFRAGc * rSPOTc + 75 * rDEFc * rFRAGc + 145 * Math.min(1.8, rWINc); var expDmg = (avtemp[2] - cav[3]), expSpot = (avtemp[3] - cav[4]), expFrag = (avtemp[4] - cav[5]), expDef = (avtemp[5] - cav[6]), expWinRate = (avtemp[6] - cav[7]); var rDAMAGE = NewDamag / OldBattles * expB / expDmg, rSPOT = NewSpotted / OldBattles * expB / expSpot, rFRAG = NewFrags / OldBattles * expB / expFrag, rDEF = NewDefs / OldBattles * expB / expDef, rWIN = NewWins / OldBattles * expB / expWinRate, rWINc = Math.max(0, (rWIN - 0.71) / (1 - 0.71)), rDAMAGEc = Math.max(0, (rDAMAGE - 0.22) / (1 - 0.22)), rFRAGc = Math.max(0, Math.min(rDAMAGEc + 0.2, (rFRAG - 0.12) / (1 - 0.12))), rSPOTc = Math.max(0, Math.min(rDAMAGEc + 0.1, (rSPOT - 0.38) / (1 - 0.38))), rDEFc = Math.max(0, Math.min(rDAMAGEc + 0.1, (rDEF - 0.10) / (1 - 0.10))); nwn8 = 980 * rDAMAGEc + 210 * rDAMAGEc * rFRAGc + 155 * rFRAGc * rSPOTc + 75 * rDEFc * rFRAGc + 145 * Math.min(1.8, rWINc); var oPR = (500 * (OldWins / OldBattles) / 0.4856) + (1000 * OldDamag / (OldtnaSum * 0.975)); var clearedFromPenalties1 = 1500, expectedMinBattles1 = 500, expectedMinAvgTier1 = 6, clearedFromPenalties2 = 1900, expectedMinBattles2 = 2000, expectedMinAvgTier2 = 7; if (oPR > clearedFromPenalties1) oPR = oPR - (oPR - clearedFromPenalties1) * Math.pow(Math.max(0, 1 - (OldAvgLev / expectedMinAvgTier1), 1 - (OldBattles / expectedMinBattles1)), 0.5); if (oPR > clearedFromPenalties2) oPR = oPR - (oPR - clearedFromPenalties2) * Math.pow(Math.max(0, 1 - (OldAvgLev / expectedMinAvgTier2), 1 - (OldBattles / expectedMinBattles2)), 0.5); var oXPR = GetXRating(oPR, "pr"), oxeff = GetXRating(effres[0], "effres"), oxwn = GetXRating(effres[2], "wn6"), xown8 = GetXRating(own8, "wn8"); } xdr.xget("http://api." + document.location.host + "/2.0/account/info/?application_id=" + api_key + "&account_id=" + UserId, batCompanyClan); //<-Блок Новые бои if (NewBattles) { var NBtresulttable = document.getElementsByClassName("b-user-block")[0], NBmainDiv = document.createElement('div'), NBsDiv = document.createElement('div'), NBsDivH3 = document.createElement('h3'), NBMedalsA = document.createElement('div'), NBMedalsDiv = document.createElement("div"), NBMedalsDivUl = document.createElement("ul"), NBthDiv = document.createElement('div'), NBretbodytrtd1table = document.createElement('table'), NBretbodytrtd2table = document.createElement('table'), NBretbodytrtd3table = document.createElement('table'), NBretbodytrtd1tabletbody = document.createElement('tbody'), NBretbodytrtd2tabletbody = document.createElement('tbody'), NBretbodytrtd3tabletbody = document.createElement('tbody'), NBh31 = document.createElement('h3'), NBh32 = document.createElement('h3'), NBh33 = document.createElement('h3'), NBdiv1 = document.createElement('div'), NBdiv2 = document.createElement('div'), NBdiv3 = document.createElement('div'), spDiv1 = document.createElement('div'), spA1 = document.createElement('a'), spSp1 = document.createElement('span'); document.getElementsByClassName("b-userblock-wrpr")[0].insertBefore(NBmainDiv, NBtresulttable); NBmainDiv.className = "b-user-block b-user-block-new-battles"; NBsDiv.className = "b-head-block"; NBsDivH3.innerHTML = lang === "ru" ? "Новые бои" : "New battles"; NBthDiv.setAttribute('class', "b-user-info clearfix"); NBh31.innerHTML = lang === "ru" ? "Новые" : "New"; NBh32.innerHTML = lang === "ru" ? "Сохр. данные" : "Saved"; NBh32.setAttribute('style', 'float: right;'); NBh33.innerHTML = lang === "ru" ? "Тек. данные" : "Current"; NBh33.setAttribute('style', 'float: right;'); NBretbodytrtd1table.setAttribute('class', 't-dotted'); NBretbodytrtd1table.appendChild(NBretbodytrtd1tabletbody); NBretbodytrtd2table.setAttribute('class', 't-dotted'); NBretbodytrtd2table.appendChild(NBretbodytrtd2tabletbody); NBretbodytrtd3table.setAttribute('class', 't-dotted'); NBretbodytrtd3table.appendChild(NBretbodytrtd3tabletbody); NBdiv1.setAttribute('style', 'float: left; width: 45%; margin-left: 25px;'); NBdiv2.setAttribute('style', 'float: left; width: 24%;'); NBdiv3.setAttribute('style', 'float: left; width: 24%;'); NBMedalsA.setAttribute('style', 'padding-left: 27px; padding-top: 10px;'); NBMedalsDiv.setAttribute('style', 'padding-left: 20px; display: none;'); NBMedalsA.innerHTML = '<a class="b-vertical-arrow us-show-medals" href="#"><span class="b-fake-link">' + (lang === "ru" ? "Медали" : "Medals") + '</span></a>'; NBdiv1.appendChild(NBh31); NBdiv1.appendChild(NBretbodytrtd1table); NBdiv2.appendChild(NBh32); NBdiv2.appendChild(NBretbodytrtd2table); NBdiv3.appendChild(NBh33); NBdiv3.appendChild(NBretbodytrtd3table); NBsDiv.appendChild(NBsDivH3); NBmainDiv.appendChild(NBsDiv); NBMedalsDiv.appendChild(NBMedalsDivUl); NBmainDiv.appendChild(NBMedalsA); NBmainDiv.appendChild(NBMedalsDiv); NBthDiv.appendChild(NBdiv1); NBthDiv.appendChild(NBdiv2); NBthDiv.appendChild(NBdiv3); NBmainDiv.appendChild(NBthDiv); var hrIn = statTooltip.length === 0; var medals = document.querySelector('[data-bind="visible: isAllAchievementsVisible()"]').getElementsByClassName("b-achivements_item"); for (i = 0; i < medals.length; i++) { if ((" " + medals[i].className + " ").replace(/[\n\t]/g, " ").indexOf(" b-achivements_item__empty ") === -1) { var count = medals[i].getElementsByTagName('div')[0]; if (count) { count = count.getElementsByTagName('span')[0]; if (count) { count = count.getElementsByTagName('span')[0]; if (count) count = toFl(count.innerHTML); else count = 1; } else { count = 1; } } else { count = 1; } var oldMCount = oldMedals[medals[i].id.split("-")[2]]; if (!oldMCount) oldMCount = 0; if (count !== oldMCount) { var node = medals[i].cloneNode(true), node2 = document.getElementById("js-achivement-" + medals[i].id.split("-")[2] + "_tooltip").cloneNode(true); node.className = "js-tooltip"; node.id = "nb-achivement-" + medals[i].id.split("-")[2]; node2.id = "nb-achivement-" + medals[i].id.split("-")[2] + "_tooltip"; node.setAttribute("style", "float: left; margin: 27px 10px 0 0; position: relative;"); if (count !== 1) node.getElementsByTagName('div')[0].getElementsByTagName('span')[0].getElementsByTagName('span')[0].innerHTML = (count - oldMCount); NBMedalsDivUl.appendChild(node); NBMedalsDivUl.appendChild(node2); if (!hrIn && statTooltip.length !== 0) { statTooltip += '<hr>'; hrIn = true; } statTooltip += "<div style='float:left'>" + node2.getElementsByTagName('p')[0].innerHTML + ':</div><span style="float:right">+' + (count - oldMCount) + "</span><br>"; } } } hrIn = statTooltip.length === 0; insertNewTr(NBretbodytrtd1tabletbody, (lang === "ru") ? "Боев|Побед (%Побед)" : "Battles|Wins (%Wins):", (NewBattles) + "|" + (NewWins) + " (" + col(NewWins / NewBattles * 100, 2) + ")", "", "Nbw1"); statText += "<br><div style='float:left;'>" + (lang === "ru" ? "Боев: " : "Battles: ") + NewBattles + "</div><div style='float:right;'>" + (lang === "ru" ? "Побед: " : "Wins: ") + NewWins + " (" + col(NewWins / NewBattles * 100, 2) + ")</div>"; if ((AllWins / AllBattles * 100 - OldWins / OldBattles * 100).toFixed(2) * 1 !== 0) { if (!hrIn && statTooltip.length !== 0) { statTooltip += '<hr>'; hrIn = true; } statTooltip += "<div style='float:left'>" + (lang === "ru" ? '% побед: ' : 'Win %: ') + "</div><div style='float:right'>" + (AllWins / AllBattles * 100 - OldWins / OldBattles * 100 > 0 ? "<font color='green'>+" + (AllWins / AllBattles * 100 - OldWins / OldBattles * 100).toFixed(2) : "<font color='red'>" + (AllWins / AllBattles * 100 - OldWins / OldBattles * 100).toFixed(2)) + "</font></div><br>"; } var deltaWin = (NewWins / NewBattles * 100 - OldWins / OldBattles * 100).toFixed(2); insertNewTr(NBretbodytrtd2tabletbody, "", col(OldWins / OldBattles * 100, 2) + (deltaWin * 1 !== 0 ? (deltaWin > 0) ? "<font color='green'> (+" + deltaWin + "%)</font>" : "<font color='red'> (" + deltaWin + "%)</font>" : ""), "", "Nbw2"); deltaWin = (AllWins / AllBattles * 100 - OldWins / OldBattles * 100).toFixed(2); insertNewTr(NBretbodytrtd3tabletbody, "", col(AllWins / AllBattles * 100, 2) + (deltaWin * 1 !== 0 ? (deltaWin > 0) ? "<font color='green'> (+" + deltaWin + "%)</font>" : "<font color='red'> (" + deltaWin + "%)</font>" : ""), "", "Nbw3"); insertNewTr(NBretbodytrtd1tabletbody, (lang === "ru") ? "Опыт за бой" : "Exp per battle", (NewXp / NewBattles).toFixed(2), "", "Nbe1"); if ((AllXp / AllBattles - OldXp / OldBattles).toFixed(2) * 1 !== 0) { if (!hrIn && statTooltip.length !== 0) { statTooltip += '<hr>'; hrIn = true; } statTooltip += "<div style='float:left'>" + (lang === "ru" ? 'Опыт за бой: ' : 'Exp per battle: ') + "</div><div style='float:right'>" + (AllXp / AllBattles - OldXp / OldBattles > 0 ? "<font color='green'>+" + (AllXp / AllBattles - OldXp / OldBattles).toFixed(2) : "<font color='red'>" + (AllXp / AllBattles - OldXp / OldBattles).toFixed(2)) + "</font></div><br>"; } var deltaExp = ((NewXp / NewBattles).toFixed(2) - (OldXp / OldBattles).toFixed(2)).toFixed(2); insertNewTr(NBretbodytrtd2tabletbody, "", (OldXp / OldBattles).toFixed(2) + (deltaExp * 1 !== 0 ? (deltaExp > 0) ? "<font color='green'> (+" + deltaExp + ")</font>" : "<font color='red'> (" + deltaExp + ")</font>" : ""), "", "Nbe2"); deltaExp = ((AllXp / AllBattles).toFixed(2) - (OldXp / OldBattles).toFixed(2)).toFixed(2); insertNewTr(NBretbodytrtd3tabletbody, "", (AllXp / AllBattles).toFixed(2) + (deltaExp * 1 !== 0 ? (deltaExp > 0) ? "<font color='green'> (+" + deltaExp + ")</font>" : "<font color='red'> (" + deltaExp + ")</font>" : ""), "", "Nbe3"); insertNewTr(NBretbodytrtd1tabletbody, (lang === "ru") ? "Средний уровень танков" : "Average level of tanks", NewAvgLev.toFixed(2), "", "Nbav1"); if ((AllAvgLev.toFixed(2) - OldAvgLev.toFixed(2)).toFixed(2) * 1 !== 0) { if (!hrIn && statTooltip.length !== 0) { statTooltip += '<hr>'; hrIn = true; } statTooltip += "<div style='float:left'>" + (lang === "ru" ? 'Средний уровень танков: ' : 'Average level of tanks: ') + "</div><div style='float:right'>" + (AllAvgLev.toFixed(2) - OldAvgLev.toFixed(2) > 0 ? "<font color='green'>+" + (AllAvgLev.toFixed(2) - OldAvgLev.toFixed(2)).toFixed(2) : "<font color='red'>" + (AllAvgLev.toFixed(2) - OldAvgLev.toFixed(2)).toFixed(2)) + "</font></div><br>"; } var deltaAvg = (NewAvgLev.toFixed(2) - OldAvgLev.toFixed(2)).toFixed(2); insertNewTr(NBretbodytrtd2tabletbody, "", OldAvgLev.toFixed(2) + (deltaAvg * 1 !== 0 ? (deltaAvg > 0) ? "<font color='green'> (+" + deltaAvg + ")</font>" : "<font color='red'> (" + deltaAvg + ")</font>" : ""), "", "Nbav2"); deltaAvg = (AllAvgLev.toFixed(2) - OldAvgLev.toFixed(2)).toFixed(2); insertNewTr(NBretbodytrtd3tabletbody, "", AllAvgLev.toFixed(2) + (deltaAvg * 1 !== 0 ? (deltaAvg > 0) ? "<font color='green'> (+" + deltaAvg + ")</font>" : "<font color='red'> (" + deltaAvg + ")</font>" : ""), "", "Nbav3"); insertNewTr(NBretbodytrtd1tabletbody, (lang === "ru") ? "Повреждений за бой" : "Damage per battle", (NewDamag / NewBattles).toFixed(2), EffTooltip("damage", NewDamag, neffs, NewBattles, NewAvgLev, lang), "Nbd1"); if (((AllDamag / AllBattles).toFixed(2) - (OldDamag / OldBattles).toFixed(2)).toFixed(2) * 1 !== 0) { if (!hrIn && statTooltip.length !== 0) { statTooltip += '<hr>'; hrIn = true; } statTooltip += "<div style='float:left'>" + (lang === "ru" ? 'Повреждений за бой: ' : 'Damage per battle: ') + "</div><div style='float:right'>" + ((AllDamag / AllBattles).toFixed(2) - (OldDamag / OldBattles).toFixed(2) > 0 ? "<font color='green'>+" + ((AllDamag / AllBattles).toFixed(2) - (OldDamag / OldBattles).toFixed(2)).toFixed(2) : "<font color='red'>" + ((AllDamag / AllBattles).toFixed(2) - (OldDamag / OldBattles).toFixed(2)).toFixed(2)) + "</font></div><br>"; } var deltaDmg = ((NewDamag / NewBattles).toFixed(2) - (OldDamag / OldBattles).toFixed(2)).toFixed(2); insertNewTr(NBretbodytrtd2tabletbody, "", (OldDamag / OldBattles).toFixed(2) + (deltaDmg * 1 !== 0 ? (deltaDmg > 0) ? "<font color='green'> (+" + deltaDmg + ")</font>" : "<font color='red'> (" + deltaDmg + ")</font>" : ""), EffTooltip("damage", OldDamag, oeffs, OldBattles, OldAvgLev, lang), "Nbd2"); deltaDmg = ((AllDamag / AllBattles).toFixed(2) - (OldDamag / OldBattles).toFixed(2)).toFixed(2); insertNewTr(NBretbodytrtd3tabletbody, "", (AllDamag / AllBattles).toFixed(2) + (deltaDmg * 1 !== 0 ? (deltaDmg > 0) ? "<font color='green'> (+" + deltaDmg + ")</font>" : "<font color='red'> (" + deltaDmg + ")</font>" : ""), EffTooltip("damage", AllDamag, effres, AllBattles, AllAvgLev, lang), "Nbd3"); insertNewTr(NBretbodytrtd1tabletbody, (lang === "ru") ? "Фрагов за бой" : "Frags per battle", (NewFrags / NewBattles).toFixed(2), EffTooltip("frags", NewFrags, neffs, NewBattles, NewAvgLev, lang), "Nbf1"); if (((AllFrags / AllBattles).toFixed(2) - (OldFrags / OldBattles).toFixed(2)).toFixed(2) * 1 !== 0) { if (!hrIn && statTooltip.length !== 0) { statTooltip += '<hr>'; hrIn = true; } statTooltip += "<div style='float:left'>" + (lang === "ru" ? 'Фрагов за бой: ' : 'Frags per battle: ') + "</div><div style='float:right'>" + ((AllFrags / AllBattles).toFixed(2) - (OldFrags / OldBattles).toFixed(2) > 0 ? "<font color='green'>+" + ((AllFrags / AllBattles).toFixed(2) - (OldFrags / OldBattles).toFixed(2)).toFixed(2) : "<font color='red'>" + ((AllFrags / AllBattles).toFixed(2) - (OldFrags / OldBattles).toFixed(2)).toFixed(2)) + "</font></div><br>"; } var deltaFr = ((NewFrags / NewBattles).toFixed(2) - (OldFrags / OldBattles).toFixed(2)).toFixed(2); insertNewTr(NBretbodytrtd2tabletbody, "", (OldFrags / OldBattles).toFixed(2) + (deltaFr * 1 !== 0 ? (deltaFr > 0) ? "<font color='green'> (+" + deltaFr + ")</font>" : "<font color='red'> (" + deltaFr + ")</font>" : ""), EffTooltip("frags", OldFrags, oeffs, OldBattles, OldAvgLev, lang), "Nbf2"); deltaFr = ((AllFrags / AllBattles).toFixed(2) - (OldFrags / OldBattles).toFixed(2)).toFixed(2); insertNewTr(NBretbodytrtd3tabletbody, "", (AllFrags / AllBattles).toFixed(2) + (deltaFr * 1 !== 0 ? (deltaFr > 0) ? "<font color='green'> (+" + deltaFr + ")</font>" : "<font color='red'> (" + deltaFr + ")</font>" : ""), EffTooltip("frags", AllFrags, effres, AllBattles, AllAvgLev, lang), "Nbf3"); insertNewTr(NBretbodytrtd1tabletbody, (lang === "ru") ? "Обнаружено за бой" : "Spotted per battle", (NewSpotted / NewBattles).toFixed(2), EffTooltip("spotted", NewSpotted, neffs, NewBattles, NewAvgLev, lang), "Nbs1"); if (((AllSpotted / AllBattles).toFixed(2) - (OldSpotted / OldBattles).toFixed(2)).toFixed(2) * 1 !== 0) { if (!hrIn && statTooltip.length !== 0) { statTooltip += '<hr>'; hrIn = true; } statTooltip += "<div style='float:left'>" + (lang === "ru" ? 'Обнаружено за бой: ' : 'Spotted per battle: ') + "</div><div style='float:right'>" + ((AllSpotted / AllBattles).toFixed(2) - (OldSpotted / OldBattles).toFixed(2) > 0 ? "<font color='green'>+" + ((AllSpotted / AllBattles).toFixed(2) - (OldSpotted / OldBattles).toFixed(2)).toFixed(2) : "<font color='red'>" + ((AllSpotted / AllBattles).toFixed(2) - (OldSpotted / OldBattles).toFixed(2)).toFixed(2)) + "</font></div><br>"; } var deltaSp = ((NewSpotted / NewBattles).toFixed(2) - (OldSpotted / OldBattles).toFixed(2)).toFixed(2); insertNewTr(NBretbodytrtd2tabletbody, "", (OldSpotted / OldBattles).toFixed(2) + (deltaSp * 1 !== 0 ? (deltaSp > 0) ? "<font color='green'> (+" + deltaSp + ")</font>" : "<font color='red'> (" + deltaSp + ")</font>" : ""), EffTooltip("spotted", OldSpotted, oeffs, OldBattles, OldAvgLev, lang), "Nbs2"); deltaSp = ((AllSpotted / AllBattles).toFixed(2) - (OldSpotted / OldBattles).toFixed(2)).toFixed(2); insertNewTr(NBretbodytrtd3tabletbody, "", (AllSpotted / AllBattles).toFixed(2) + (deltaSp * 1 !== 0 ? (deltaSp > 0) ? "<font color='green'> (+" + deltaSp + ")</font>" : "<font color='red'> (" + deltaSp + ")</font>" : ""), EffTooltip("spotted", AllSpotted, effres, AllBattles, AllAvgLev, lang), "Nbs3"); insertNewTr(NBretbodytrtd1tabletbody, (lang === "ru") ? "Очков захвата за бой" : "Caps per battle", (NewCaps / NewBattles).toFixed(2), EffTooltip("caps", NewCaps, neffs, NewBattles, NewAvgLev, lang), "Nbc1"); if (((AllCaps / AllBattles).toFixed(2) - (OldCaps / OldBattles).toFixed(2)).toFixed(2) * 1 !== 0) { if (!hrIn && statTooltip.length !== 0) { statTooltip += '<hr>'; hrIn = true; } statTooltip += "<div style='float:left'>" + (lang === "ru" ? 'Очков захвата за бой: ' : 'Caps per battle: ') + "</div><div style='float:right'>" + ((AllCaps / AllBattles).toFixed(2) - (OldCaps / OldBattles).toFixed(2) > 0 ? "<font color='green'>+" + ((AllCaps / AllBattles).toFixed(2) - (OldCaps / OldBattles).toFixed(2)).toFixed(2) : "<font color='red'>" + ((AllCaps / AllBattles).toFixed(2) - (OldCaps / OldBattles).toFixed(2)).toFixed(2)) + "</font></div><br>"; } deltaCap = ((NewCaps / NewBattles).toFixed(2) - (OldCaps / OldBattles).toFixed(2)).toFixed(2); insertNewTr(NBretbodytrtd2tabletbody, "", (OldCaps / OldBattles).toFixed(2) + (deltaCap * 1 !== 0 ? (deltaCap > 0) ? "<font color='green'> (+" + deltaCap + ")</font>" : "<font color='red'> (" + deltaCap + ")</font>" : ""), EffTooltip("caps", OldCaps, oeffs, OldBattles, OldAvgLev, lang), "Nbc2"); deltaCap = (AllCaps / AllBattles - OldCaps / OldBattles).toFixed(2); insertNewTr(NBretbodytrtd3tabletbody, "", (AllCaps / AllBattles).toFixed(2) + (deltaCap * 1 !== 0 ? (deltaCap > 0) ? "<font color='green'> (+" + deltaCap + ")</font>" : "<font color='red'> (" + deltaCap + ")</font>" : ""), EffTooltip("caps", AllCaps, effres, AllBattles, AllAvgLev, lang), "Nbc3"); insertNewTr(NBretbodytrtd1tabletbody, (lang === "ru") ? "Очков защиты за бой" : "Defs per battle", (NewDefs / NewBattles).toFixed(2), EffTooltip("defs", NewDefs, neffs, NewBattles, NewAvgLev, lang), "Nbde1"); if (((AllDefs / AllBattles).toFixed(2) - (OldDefs / OldBattles).toFixed(2)).toFixed(2) * 1 !== 0) { if (!hrIn && statTooltip.length !== 0) { statTooltip += '<hr>'; hrIn = true; } statTooltip += "<div style='float:left'>" + (lang === "ru" ? 'Очков защиты за бой: ' : 'Defs per battle: ') + "</div><div style='float:right'>" + ((AllDefs / AllBattles).toFixed(2) - (OldDefs / OldBattles).toFixed(2) > 0 ? "<font color='green'>+" + ((AllDefs / AllBattles).toFixed(2) - (OldDefs / OldBattles).toFixed(2)).toFixed(2) : "<font color='red'>" + ((AllDefs / AllBattles).toFixed(2) - (OldDefs / OldBattles).toFixed(2)).toFixed(2)) + "</font></div><br>"; } deltaDef = ((NewDefs / NewBattles).toFixed(2) - (OldDefs / OldBattles).toFixed(2)).toFixed(2); insertNewTr(NBretbodytrtd2tabletbody, "", (OldDefs / OldBattles).toFixed(2) + (deltaDef * 1 !== 0 ? (deltaDef > 0) ? "<font color='green'> (+" + deltaDef + ")</font>" : "<font color='red'> (" + deltaDef + ")</font>" : ""), EffTooltip("defs", OldDefs, oeffs, OldBattles, OldAvgLev, lang), "Nbde2"); deltaDef = ((AllDefs / AllBattles).toFixed(2) - (OldDefs / OldBattles).toFixed(2)).toFixed(2); insertNewTr(NBretbodytrtd3tabletbody, "", (AllDefs / AllBattles).toFixed(2) + (deltaDef * 1 !== 0 ? (deltaDef > 0) ? "<font color='green'> (+" + deltaDef + ")</font>" : "<font color='red'> (" + deltaDef + ")</font>" : ""), EffTooltip("defs", AllDefs, effres, AllBattles, AllAvgLev, lang), "Nbde3"); insertNewTr(NBretbodytrtd1tabletbody, (lang === "ru") ? " Эффективность" : "Eff. rating", "<font color='" + CalcEffColor(Number(neffs[0]), "eff")[0] + "'>" + neffs[0] + "</font>", CalcEffColor(Number(neffs[0]), "eff")[1], "Nbef1"); delta = neffs[0] - oeffs[0]; insertNewTr(NBretbodytrtd2tabletbody, "", "<font color='" + CalcEffColor(Number(oeffs[0]), "eff")[0] + "'>" + oeffs[0] + (delta * 1 !== 0 ? (delta > 0) ? "<font color='green'> (+" + delta.toFixed(2) + ")</font>" : "<font color='red'> (" + delta.toFixed(2) + ")</font>" : "") + "</font>", CalcEffColor(Number(oeffs[0]), "eff")[1], "Nbef2"); delta = effres[0] - oeffs[0]; insertNewTr(NBretbodytrtd3tabletbody, "", "<font color='" + CalcEffColor(Number(effres[0]), "eff")[0] + "'>" + effres[0] + (delta * 1 !== 0 ? (delta > 0) ? "<font color='green'> (+" + delta.toFixed(2) + ")</font>" : "<font color='red'> (" + delta.toFixed(2) + ")</font>" : "") + "</font>", CalcEffColor(Number(effres[0]), "eff")[1], "Nbef3"); insertNewTr(NBretbodytrtd1tabletbody, (lang === "ru") ? " WN6 Рейтинг" : "WN6 Rating", "<font color='" + CalcEffColor(Number(neffs[2]), "wn6")[0] + "'>" + neffs[2] + "</font>", CalcEffColor(Number(neffs[2]), "wn6")[1], "Nbwn1"); delta = neffs[2] - oeffs[2]; insertNewTr(NBretbodytrtd2tabletbody, "", "<font color='" + CalcEffColor(Number(oeffs[2]), "wn6")[0] + "'>" + oeffs[2] + (delta * 1 !== 0 ? (delta > 0) ? "<font color='green'> (+" + delta.toFixed(2) + ")</font>" : "<font color='red'> (" + delta.toFixed(2) + ")</font>" : "") + "</font>", CalcEffColor(Number(oeffs[2]), "wn6")[1], "Nbwn2"); delta = effres[2] - oeffs[2]; insertNewTr(NBretbodytrtd3tabletbody, "", "<font color='" + CalcEffColor(Number(effres[2]), "wn6")[0] + "'>" + effres[2] + (delta * 1 !== 0 ? (delta > 0) ? "<font color='green'> (+" + delta.toFixed(2) + ")</font>" : "<font color='red'> (" + delta.toFixed(2) + ")</font>" : "") + "</font>", CalcEffColor(Number(effres[2]), "wn6")[1], "Nbwn3"); insertNewTr(NBretbodytrtd1tabletbody, (lang === "ru") ? " WN8 Рейтинг" : "WN8 Rating", "<font color='" + CalcEffColor(Number(nwn8), "wn8")[0] + "'>" + nwn8.toFixed(2) + "</font>", CalcEffColor(Number(nwn8), "wn8")[1], "Nbwn81"); delta = nwn8 - own8; insertNewTr(NBretbodytrtd2tabletbody, "", "<font color='" + CalcEffColor(Number(own8), "wn8")[0] + "'>" + own8.toFixed(2) + (delta * 1 !== 0 ? (delta > 0) ? "<font color='green'> (+" + delta.toFixed(2) + ")</font>" : "<font color='red'> (" + delta.toFixed(2) + ")</font>" : "") + "</font>", CalcEffColor(Number(own8), "wn8")[1], "Nbwn82"); delta = wn8 - own8; insertNewTr(NBretbodytrtd3tabletbody, "", "<font color='" + CalcEffColor(Number(wn8), "wn8")[0] + "'>" + wn8.toFixed(2) + (delta * 1 !== 0 ? (delta > 0) ? "<font color='green'> (+" + delta.toFixed(2) + ")</font>" : "<font color='red'> (" + delta.toFixed(2) + ")</font>" : "") + "</font>", CalcEffColor(Number(wn8), "wn8")[1], "Nbwn83"); blBool = settings.newBat && (toFl(settings.newBat[1]) !== 0 || toFl(settings.newBat[0]) !== 0); spSp1.className = "b-fake-link"; spSp1.innerHTML = blBool ? (lang === "ru" ? 'Развернуть блок "Новые бои"' : 'Expand "New battles"') : (lang === "ru" ? 'Свернуть блок "Новые бои"' : 'Collapse "New battles"'); spA1.appendChild(spSp1); spA1.className = "b-vertical-arrow sh-speedometr" + (blBool ? "" : " b-vertical-arrow__open"); spA1.setAttribute('curSt', blBool ? 1 : 0); spA1.setAttribute('curStText', (lang === "ru" ? '"Новые бои"' : '"New battles"')); spA1.href = "#"; spDiv1.setAttribute('style', 'text-align: right; margin-right: 15px;' + (blBool ? "padding-top: 10px; padding-bottom: 10px;" : "")); spDiv1.appendChild(spA1); } //->Блок Новые бои //<-Блок сравнение игроков var comparestat = GetLSData("compareStat"); if (comparestat && settings.compare === 1 && AllBattles && window.location.href.indexOf(settings.UserID) === -1) { var mArr = comparestat.split("|"), strArray = mArr[0].split("/"), str = strArray[0].split(";"), timeStat = new Date(str[0]), compareWGRating = 0, compareMedals = []; ; if (mArr.length > 3) compareWGRating = toFl(mArr[3]); if (timeStat) { if (timeStat.toLocaleFormat) var compareTime = timeStat.toLocaleFormat("%d.%m.%Y %H:%M"); else compareTime = timeStat.toLocaleString().substr(0, timeStat.toLocaleString().lastIndexOf(":")); if (mArr.length > 2) { var MedArr = mArr[2].split("/"); for (var i = 0; i < MedArr.length; i++) { var MedStr = MedArr[i].split(";"); compareMedals[MedStr[0]] = toFl(MedStr[1]); } } if (str.length > 3) { var compareBattles = toFl(str[12]), compareWins = toFl(str[10]), compareXp = toFl(str[24]), compareDamag = toFl(str[16]), compareFrags = toFl(str[20]), compareSpotted = toFl(str[22]), compareCaps = toFl(str[14]), compareDefs = toFl(str[18]), compareAvgLev = parseFloat(mArr[1]); } for (var i = 1; i < strArray.length; i++) { str = strArray[i].split(";"); var tName = str[0].toLowerCase(); comparedayArray[tName] = new Object(); comparedayArray[tName].b = toFl(str[1]); comparedayArray[tName].w = toFl(str[2]); comparedayArray[tName].id = parseInt(str[3]); } var ccal = CalcCompareAvgLev(comparedayArray), cexpDmg = ccal[0], cexpSpot = ccal[1], cexpFrag = ccal[2], cexpDef = ccal[3], cexpWinRate = ccal[4], cexpB = ccal[5], rDAMAGE = compareDamag / compareBattles * cexpB / cexpDmg, rSPOT = compareSpotted / compareBattles * cexpB / cexpSpot, rFRAG = compareFrags / compareBattles * cexpB / cexpFrag, rDEF = compareDefs / compareBattles * cexpB / cexpDef, rWIN = compareWins / compareBattles * cexpB / cexpWinRate, rWINc = Math.max(0, (rWIN - 0.71) / (1 - 0.71)), rDAMAGEc = Math.max(0, (rDAMAGE - 0.22) / (1 - 0.22)), rFRAGc = Math.max(0, Math.min(rDAMAGEc + 0.2, (rFRAG - 0.12) / (1 - 0.12))), rSPOTc = Math.max(0, Math.min(rDAMAGEc + 0.1, (rSPOT - 0.38) / (1 - 0.38))), rDEFc = Math.max(0, Math.min(rDAMAGEc + 0.1, (rDEF - 0.10) / (1 - 0.10))), cwn8 = 980 * rDAMAGEc + 210 * rDAMAGEc * rFRAGc + 155 * rFRAGc * rSPOTc + 75 * rDEFc * rFRAGc + 145 * Math.min(1.8, rWINc); var Cmptresulttable = document.getElementsByClassName("b-user-block")[0], CmpmainDiv = document.createElement('div'), CmpsDiv = document.createElement('div'), CmpsDivH3 = document.createElement('h3'), CmpthDiv = document.createElement('div'), CmpMedalsA = document.createElement("div"), CmpMedalsDiv = document.createElement("div"), CmpMedalsDivUl = document.createElement("ul"), Cmpretbodytrtd1table = document.createElement('table'), Cmpretbodytrtd2table = document.createElement('table'), Cmpretbodytrtd3table = document.createElement('table'), Cmpretbodytrtd1tabletbody = document.createElement('tbody'), Cmpretbodytrtd2tabletbody = document.createElement('tbody'), Cmpretbodytrtd3tabletbody = document.createElement('tbody'), Cmph31 = document.createElement('h5'), Cmph32 = document.createElement('h5'), Cmph33 = document.createElement('h5'), Cmpdiv1 = document.createElement('div'), Cmpdiv2 = document.createElement('div'), Cmpdiv3 = document.createElement('div'), CmpspDiv1 = document.createElement('div'), CmpspA1 = document.createElement('a'), CmpspSp1 = document.createElement('span'); document.getElementsByClassName("b-userblock-wrpr")[0].insertBefore(CmpmainDiv, Cmptresulttable); CmpmainDiv.className = "b-user-block b-user-block-compare-stat"; CmpsDiv.className = "b-head-block"; CmpsDivH3.innerHTML = lang === "ru" ? "Сравнение игрока со мной" : "Compare player with me"; CmpthDiv.setAttribute('class', "b-user-info clearfix"); Cmph31.innerHTML = lang === "ru" ? "Мои данные от <span style='color:green;'>" + compareTime + '</span>' : "My stat. from <span style='color:green;'>" + compareTime + '</span>'; Cmph32.innerHTML = lang === "ru" ? "Данные игрока" : "Player stat."; Cmph32.setAttribute('style', 'float: right;'); Cmph33.innerHTML = lang === "ru" ? "Дельта" : "Delta"; Cmph33.setAttribute('style', 'float: right;'); Cmpretbodytrtd1table.setAttribute('class', 't-dotted'); Cmpretbodytrtd1table.appendChild(Cmpretbodytrtd1tabletbody); Cmpretbodytrtd2table.setAttribute('class', 't-dotted'); Cmpretbodytrtd2table.appendChild(Cmpretbodytrtd2tabletbody); Cmpretbodytrtd3table.setAttribute('class', 't-dotted'); Cmpretbodytrtd3table.appendChild(Cmpretbodytrtd3tabletbody); Cmpdiv1.setAttribute('style', 'float: left; width: 45%; margin-left: 25px;'); Cmpdiv2.setAttribute('style', 'float: left; width: 24%;'); Cmpdiv3.setAttribute('style', 'float: left; width: 24%;'); CmpMedalsA.setAttribute('style', 'padding-left: 27px; padding-top: 10px;'); CmpMedalsDiv.setAttribute('style', 'padding-left: 20px; display: none;'); CmpMedalsA.innerHTML = '<a class="b-vertical-arrow us-show-medals" href="#"><span class="b-fake-link">' + (lang === "ru" ? "Медали" : "Medals") + '</span></a>'; Cmpdiv1.appendChild(Cmph31); Cmpdiv1.appendChild(Cmpretbodytrtd1table); Cmpdiv2.appendChild(Cmph32); Cmpdiv2.appendChild(Cmpretbodytrtd2table); Cmpdiv3.appendChild(Cmph33); Cmpdiv3.appendChild(Cmpretbodytrtd3table); CmpsDiv.appendChild(CmpsDivH3); CmpmainDiv.appendChild(CmpsDiv); CmpMedalsDiv.appendChild(CmpMedalsDivUl); CmpmainDiv.appendChild(CmpMedalsA); CmpmainDiv.appendChild(CmpMedalsDiv); CmpthDiv.appendChild(Cmpdiv1); CmpthDiv.appendChild(Cmpdiv2); CmpthDiv.appendChild(Cmpdiv3); CmpmainDiv.appendChild(CmpthDiv); medals = document.getElementsByClassName("js-all-achievements")[0].getElementsByClassName("b-achivements_item"); for (i = 0; i < medals.length; i++) { if ((" " + medals[i].className + " ").replace(/[\n\t]/g, " ").indexOf(" b-achivements_item__empty ") === -1) { var count = medals[i].getElementsByTagName('div')[0]; if (count) { count = count.getElementsByTagName('span')[0]; if (count) { count = count.getElementsByTagName('span')[0]; if (count) count = toFl(count.innerHTML); else count = 1; } else { count = 1; } } else { count = 1; } } else count = 0; var CmpMCount = compareMedals[medals[i].id.split("-")[2]]; if (!CmpMCount) CmpMCount = 0; if (count !== CmpMCount) { var node = medals[i].cloneNode(true), node2 = document.getElementById("js-achivement-" + medals[i].id.split("-")[2] + "_tooltip").cloneNode(true); node.className = "js-tooltip"; node.id = "cmp-achivement-" + medals[i].id.split("-")[2]; node2.id = "cmp-achivement-" + medals[i].id.split("-")[2] + "_tooltip"; node.setAttribute("style", "float: left; margin: 27px 10px 0 0; position: relative;"); var mC = node.getElementsByTagName('div')[0]; if (mC) { var McS = mC.getElementsByTagName('span')[0]; } else { node.innerHTML += '<div class="b-achivements_wrpr"><span class="b-achivements_num"><span>' + (CmpMCount - count) + '</span></span></div>'; } if (McS) { var McS2 = McS.getElementsByTagName('span')[0]; } else { mC.innerHTML += '<span class="b-achivements_num"><span>' + (CmpMCount - count) + '</span></span>'; } if (McS2) { McS2.innerHTML = CmpMCount - count; } else { McS.innerHTML += '<span>' + (CmpMCount - count) + '</span>'; } ; CmpMedalsDivUl.appendChild(node); CmpMedalsDivUl.appendChild(node2); } } var compareeffs = CalcEff(0, compareAvgLev, compareBattles, compareWins, compareDamag, compareFrags, compareSpotted, compareCaps, compareDefs, compareXp); insertNewTr(Cmpretbodytrtd1tabletbody, (lang === "ru") ? "Боев|Побед (%Побед)" : "Battles|Wins (%Wins):", (compareBattles) + "|" + (compareWins) + " (" + col(compareWins / compareBattles * 100, 2) + ")", "", "comparew1"); insertNewTr(Cmpretbodytrtd2tabletbody, "", (AllBattles) + "|" + (AllWins) + " (" + col(AllWins / AllBattles * 100, 2) + ")", "", "comparew2"); var deltaWin = ((compareWins / compareBattles * 100) - (AllWins / AllBattles * 100)).toFixed(2), deltaBattles = compareBattles - AllBattles, deltaWins = compareWins - AllWins, dstr = ''; if (deltaBattles > 0) { dstr += "<font color='green'>+" + deltaBattles + "</font>|"; } else { dstr += "<font color='red'>" + deltaBattles + "</font>|"; } if (deltaWins > 0) { dstr += "<font color='green'>+" + deltaWins + "</font>("; } else { dstr += "<font color='red'>" + deltaWins + "</font> ("; } if (deltaWin > 0) { dstr += "<font color='green'>+" + deltaWin + "%</font>)"; } else { dstr += "<font color='red'>" + deltaWin + "%</font>)"; } insertNewTr(Cmpretbodytrtd3tabletbody, "", dstr, "", "comparew3"); insertNewTr(Cmpretbodytrtd1tabletbody, (lang === "ru") ? "Средний уровень танков" : "Average level of tanks", compareAvgLev.toFixed(2), "", "compareav1"); insertNewTr(Cmpretbodytrtd2tabletbody, "", AllAvgLev.toFixed(2), "", "compareav2"); var deltaAvg = (compareAvgLev - AllAvgLev).toFixed(2); insertNewTr(Cmpretbodytrtd3tabletbody, "", (deltaAvg > 0) ? "<font color='green'>+" + deltaAvg + "</font>" : "<font color='red'>" + deltaAvg + "</font>", "", "compareav3"); insertNewTr(Cmpretbodytrtd1tabletbody, (lang === "ru") ? "Опыт за бой" : "Exp per battle", (compareXp / compareBattles).toFixed(2), "", "comparee1"); insertNewTr(Cmpretbodytrtd2tabletbody, "", (AllXp / AllBattles).toFixed(2), "", "comparee2"); var deltaExp = (compareXp / compareBattles - AllXp / AllBattles).toFixed(2); insertNewTr(Cmpretbodytrtd3tabletbody, "", (deltaExp > 0) ? "<font color='green'>+" + deltaExp + "</font>" : "<font color='red'>" + deltaExp + "</font>", "", "comparee3"); insertNewTr(Cmpretbodytrtd1tabletbody, (lang === "ru") ? "Повреждений за бой" : "Damage per battle", (compareDamag / compareBattles).toFixed(2), EffTooltip("damage", compareDamag, compareeffs, compareBattles, compareAvgLev, lang), "compared1"); insertNewTr(Cmpretbodytrtd2tabletbody, "", (AllDamag / AllBattles).toFixed(2), EffTooltip("damage", AllDamag, effres, AllBattles, AllAvgLev, lang), "compared2"); var deltaDmg = (compareDamag / compareBattles - AllDamag / AllBattles).toFixed(2); insertNewTr(Cmpretbodytrtd3tabletbody, "", (deltaDmg > 0) ? "<font color='green'>+" + deltaDmg + "</font>" : "<font color='red'>" + deltaDmg + "</font>", "", "compared3"); insertNewTr(Cmpretbodytrtd1tabletbody, (lang === "ru") ? "Фрагов за бой" : "Frags per battle", (compareFrags / compareBattles).toFixed(2), EffTooltip("frags", compareFrags, compareeffs, compareBattles, compareAvgLev, lang), "comparef1"); insertNewTr(Cmpretbodytrtd2tabletbody, "", (AllFrags / AllBattles).toFixed(2), EffTooltip("frags", AllFrags, effres, AllBattles, AllAvgLev, lang), "comparef2"); var deltaFr = (compareFrags / compareBattles - AllFrags / AllBattles).toFixed(2); insertNewTr(Cmpretbodytrtd3tabletbody, "", (deltaFr > 0) ? "<font color='green'>+" + deltaFr + "</font>" : "<font color='red'>" + deltaFr + "</font>", "", "comparef3"); insertNewTr(Cmpretbodytrtd1tabletbody, (lang === "ru") ? "Обнаружено за бой" : "Spotted per battle", (compareSpotted / compareBattles).toFixed(2), EffTooltip("spotted", compareSpotted, compareeffs, compareBattles, compareAvgLev, lang), "compares1"); insertNewTr(Cmpretbodytrtd2tabletbody, "", (AllSpotted / AllBattles).toFixed(2), EffTooltip("spotted", AllSpotted, effres, AllBattles, AllAvgLev, lang), "compares2"); var deltaSp = (compareSpotted / compareBattles - AllSpotted / AllBattles).toFixed(2); insertNewTr(Cmpretbodytrtd3tabletbody, "", (deltaSp > 0) ? "<font color='green'>+" + deltaSp + "</font>" : "<font color='red'>" + deltaSp + "</font>", "", "compares3"); insertNewTr(Cmpretbodytrtd1tabletbody, (lang === "ru") ? "Очков захвата за бой" : "Caps per battle", (compareCaps / compareBattles).toFixed(2), EffTooltip("caps", compareCaps, compareeffs, compareBattles, compareAvgLev, lang), "comparec1"); insertNewTr(Cmpretbodytrtd2tabletbody, "", (AllCaps / AllBattles).toFixed(2), EffTooltip("caps", AllCaps, effres, AllBattles, AllAvgLev, lang), "comparec2"); var deltaCap = (compareCaps / compareBattles - AllCaps / AllBattles).toFixed(2); insertNewTr(Cmpretbodytrtd3tabletbody, "", (deltaCap > 0) ? "<font color='green'>+" + deltaCap + "</font>" : "<font color='red'>" + deltaCap + "</font>", "", "comparec3"); insertNewTr(Cmpretbodytrtd1tabletbody, (lang === "ru") ? "Очков защиты за бой" : "Defs per battle", (compareDefs / compareBattles).toFixed(2), EffTooltip("defs", compareDefs, compareeffs, compareBattles, compareAvgLev, lang), "comparede1"); insertNewTr(Cmpretbodytrtd2tabletbody, "", (AllDefs / AllBattles).toFixed(2), EffTooltip("defs", AllDefs, effres, AllBattles, AllAvgLev, lang), "comparede2"); var deltaDef = (compareDefs / compareBattles - AllDefs / AllBattles).toFixed(2); insertNewTr(Cmpretbodytrtd3tabletbody, "", (deltaDef > 0) ? "<font color='green'>+" + deltaDef + "</font>" : "<font color='red'>" + deltaDef + "</font>", "", "comparede3"); insertNewTr(Cmpretbodytrtd1tabletbody, (lang === "ru") ? " Эффективность" : "Eff. rating", "<font color='" + CalcEffColor(Number(compareeffs[0]), "eff")[0] + "'>" + compareeffs[0] + "</font>", CalcEffColor(Number(compareeffs[0]), "eff")[1], "compareef1"); insertNewTr(Cmpretbodytrtd2tabletbody, "", "<font color='" + CalcEffColor(Number(effres[0]), "eff")[0] + "'>" + effres[0] + "</font>", CalcEffColor(Number(effres[0]), "eff")[1], "compareef2"); var delta = compareeffs[0] - effres[0]; insertNewTr(Cmpretbodytrtd3tabletbody, "", (delta > 0) ? "<font color='green'>+" + delta.toFixed(2) + "</font>" : "<font color='red'>" + delta.toFixed(2) + "</font>", "", "compareef3"); insertNewTr(Cmpretbodytrtd1tabletbody, (lang === "ru") ? " WN6 Рейтинг" : "WN6 Rating", "<font color='" + CalcEffColor(Number(compareeffs[2]), "wn6")[0] + "'>" + compareeffs[2] + "</font>", CalcEffColor(Number(compareeffs[2]), "wn6")[1], "comparewn1"); insertNewTr(Cmpretbodytrtd2tabletbody, "", "<font color='" + CalcEffColor(Number(effres[2]), "wn6")[0] + "'>" + effres[2] + "</font>", CalcEffColor(Number(effres[2]), "wn6")[1], "comparewn2"); var delta = compareeffs[2] - effres[2]; insertNewTr(Cmpretbodytrtd3tabletbody, "", (delta > 0) ? "<font color='green'>+" + delta.toFixed(2) + "</font>" : "<font color='red'>" + delta.toFixed(2) + "</font>", "", "comparewn3"); insertNewTr(Cmpretbodytrtd1tabletbody, (lang === "ru") ? " WN8 Рейтинг" : "WN8 Rating", "<font color='" + CalcEffColor(Number(cwn8), "wn8")[0] + "'>" + cwn8.toFixed(2) + "</font>", CalcEffColor(Number(cwn8), "wn8")[1], "comparewn81"); insertNewTr(Cmpretbodytrtd2tabletbody, "", "<font color='" + CalcEffColor(Number(wn8), "wn8")[0] + "'>" + wn8.toFixed(2) + "</font>", CalcEffColor(Number(wn8), "wn8")[1], "comparewn82"); var delta = cwn8 - wn8; insertNewTr(Cmpretbodytrtd3tabletbody, "", (delta > 0) ? "<font color='green'>+" + delta.toFixed(2) + "</font>" : "<font color='red'>" + delta.toFixed(2) + "</font>", "", "comparewn83"); insertNewTr(Cmpretbodytrtd1tabletbody, (lang === "ru") ? 'Эффективность БС' : 'Eff. rating of BS', compareeffs[3], ""); insertNewTr(Cmpretbodytrtd2tabletbody, "", effres[3], ""); var delta = compareeffs[3] - effres[3]; insertNewTr(Cmpretbodytrtd3tabletbody, "", (delta > 0) ? "<font color='green'>+" + delta.toFixed(2) + "</font>" : "<font color='red'>" + delta.toFixed(2) + "</font>", ""); insertNewTr(Cmpretbodytrtd1tabletbody, (lang === "ru") ? 'Личный рейтинг' : 'Personal Rating', compareWGRating, ""); insertNewTr(Cmpretbodytrtd2tabletbody, "", WGRating, ""); var delta = compareWGRating - WGRating; insertNewTr(Cmpretbodytrtd3tabletbody, "", (delta > 0) ? "<font color='green'>+" + delta.toFixed(2) + "</font>" : "<font color='red'>" + delta.toFixed(2) + "</font>", ""); var blBool = settings.plComp && (toFl(settings.plComp[1]) !== 0 || toFl(settings.plComp[0]) !== 0); CmpspSp1.className = "b-fake-link"; CmpspSp1.innerHTML = blBool ? (lang === "ru" ? 'Развернуть блок "Сравнение игроков"' : 'Expand "Players compare"') : (lang === "ru" ? 'Свернуть блок "Сравнение игроков"' : 'Collapse "Players compare"'); CmpspA1.appendChild(CmpspSp1); CmpspA1.className = "b-vertical-arrow sh-speedometr" + (blBool ? "" : " b-vertical-arrow__open"); CmpspA1.setAttribute('curSt', blBool ? 1 : 0); CmpspA1.setAttribute('curStText', (lang === "ru" ? '"Сравнение игроков"' : '"Players compare"')); CmpspA1.href = "#"; CmpspDiv1.setAttribute('style', 'text-align: right; margin-right: 15px;' + (blBool ? "padding-top: 10px; padding-bottom: 10px;" : "")); CmpspDiv1.appendChild(CmpspA1); } } //->Блок сравнение игроков //<-Блок рейтинга эффективности var tresulttable = document.getElementsByClassName("b-user-block")[0], mainDiv = document.createElement('div'), sDiv = document.createElement('div'), sDivH3 = document.createElement('h3'), sDiva = document.createElement('a'), thDiv = document.createElement('div'), lDiv = document.createElement('div'), lhr = document.createElement('hr'), rhr = document.createElement('hr'), companyTable = document.createElement('table'), companyH4 = document.createElement('h4'), clanTable = document.createElement('table'), clanH4 = document.createElement('h4'), clanTabletbody = document.createElement('tbody'), companyTabletbody = document.createElement('tbody'), rDiv = document.createElement('div'), NB7div = document.createElement('div'), NB7div2 = document.createElement('div'), NB7Tdiv = document.createElement('div'), NB7Tdiv2 = document.createElement('div'), retbodytrtd1table = document.createElement('table'), retbodytrtd2table = document.createElement('table'), retbodytrtd1tabletbody = document.createElement('tbody'), retbodytrtd2tabletbody = document.createElement('tbody'), spDiv = document.createElement('div'), spA = document.createElement('a'), spSp = document.createElement('span'); if (NBmainDiv) tresulttable = document.getElementsByClassName("b-user-block")[1]; document.getElementsByClassName("b-userblock-wrpr")[0].insertBefore(mainDiv, tresulttable); clanTable.setAttribute('style', 'display: none;'); companyTable.setAttribute('style', 'display: none;'); mainDiv.className = "b-user-block b-user-block-eff-ratings"; sDiv.className = "b-head-block"; sDivH3.innerHTML = lang === "ru" ? "Эффективность" : "Efficiency"; sDiva.innerHTML = 'Смотреть видеообзоры рейтингов'; sDiva.setAttribute('href', 'http://www.youtube.com/playlist?list=PLBy529l9aTSiq1ORoe0R2FS43y4oax5jg'); sDiva.setAttribute('target', '__blank'); sDiva.setAttribute('style', 'float: right; font-size: 11pt; padding-top: 10px; padding-right: 10px;'); sDiv.appendChild(sDiva); companyH4.innerHTML = '<a class="b-vertical-arrow us-show-medals" href="#"><span class="b-fake-link">' + (lang === "ru" ? "Ротные бои" : "Company battles") + '</span></a>'; companyTabletbody.setAttribute('id', 'company-battles'); companyTable.setAttribute('class', 't-dotted'); clanTabletbody.setAttribute('id', 'clan-battles'); clanTable.setAttribute('class', 't-dotted'); clanH4.innerHTML = '<a class="b-vertical-arrow us-show-medals" href="#"><span class="b-fake-link">' + (lang === "ru" ? "Глобальная карта" : "Clan battles") + '</span></a>'; thDiv.setAttribute('class', "b-user-info clearfix"); lDiv.className = "b-user-block_left-column"; lDiv.setAttribute('style', 'margin-left:25px;'); rDiv.className = "b-user-block_right-column"; rDiv.setAttribute('style', 'margin-right:25px;'); NB7div.setAttribute('style', 'padding-left: 27px; padding-top: 5px; padding-bottom: 5px;'); NB7Tdiv.setAttribute('style', 'padding-left: 27px; padding-top: 5px; padding-bottom: 5px;'); NB7div2.setAttribute('style', 'padding-left: 5px; padding-right: 5px; display: none; padding-bottom: 5px;'); NB7Tdiv2.setAttribute('style', 'padding-left: 5px; padding-right: 5px; display: none; padding-bottom: 5px;'); NB7div2.innerHTML = '<h3 style="text-align: center;">' + (lang === "ru" ? "Тип графика" : "Graph type") + '</h3>' + '<span id="hoverdata"></span><div style="text-align: center;"><label for="gall" style="padding-left: 50px;">' + (lang === "ru" ? 'Все' : 'All') + '</label><input type="radio" name="ggtype" id="gall" value="all" checked/>' + '<label for="gdate" style="padding-left: 50px;">' + (lang === "ru" ? 'Дата' : 'Date') + '</label><input type="radio" name="ggtype" id="gdate" value="date" />' + '<label for="gbat" style="padding-left: 50px;">' + (lang === "ru" ? 'Бои' : 'Battles') + '</label><input type="radio" name="ggtype" id="gbat" value="bat" /></div>' + '<hr><h4 style="text-align: center;">' + (lang === "ru" ? "% побед" : "Win %") + '</h4><div id="percStr" style="width:600px;height:100px;" gtype="date"></div><br><div id="percStrB" style="width:600px;height:100px;" gtype="bat"></div><br>' + '<h4 style="text-align: center;">' + (lang === "ru" ? "Опыт за бой" : "Exp per battle") + '</h4><div id="exp7" style="width:600px;height:100px;" gtype="date"></div><br><div id="xpStrB" style="width:600px;height:100px;" gtype="bat"></div><br>' + '<h4 style="text-align: center;">' + (lang === "ru" ? "Повреждений за бой" : "Damage per battle") + '</h4><div id="damagStr" style="width:600px;height:100px;" gtype="date"></div><br><div id="damagStrB" style="width:600px;height:100px;" gtype="bat"></div><br>' + '<h4 style="text-align: center;">' + (lang === "ru" ? "Фрагов за бой" : "Frags per battle") + '</h4><div id="FragsStr" style="width:600px;height:100px;" gtype="date"></div><br><div id="FragsStrB" style="width:600px;height:100px;" gtype="bat"></div><br>' + '<h4 style="text-align: center;">' + (lang === "ru" ? "Обнаружено за бой" : "Spotted per battle") + '</h4><div id="SpottedStr" style="width:600px;height:100px;" gtype="date"></div><br><div id="SpottedStrB" style="width:600px;height:100px;" gtype="bat"></div><br>' + '<h4 style="text-align: center;">' + (lang === "ru" ? "Очков захвата за бой" : "Caps per battle") + '</h4><div id="CapsStr" style="width:600px;height:100px;" gtype="date"></div><br><div id="CapsStrB" style="width:600px;height:100px;" gtype="bat"></div><br>' + '<h4 style="text-align: center;">' + (lang === "ru" ? "Очков защиты за бой" : "Defs per battle") + '</h4><div id="DefsStr" style="width:600px;height:100px;" gtype="date"></div><br><div id="DefsStrB" style="width:600px;height:100px;" gtype="bat"></div><br>' + '<h4 style="text-align: center;">' + (lang === "ru" ? "Эффективность" : "Eff. rating") + '</h4><div id="EffStr" style="width:600px;height:100px;" gtype="date"></div><br><div id="EffStrB" style="width:600px;height:100px;" gtype="bat"></div><br>' + '<h4 style="text-align: center;">' + (lang === "ru" ? "WN6 Рейтинг" : "WN6 Rating") + '</h4><div id="WN6Str" style="width:600px;height:100px;" gtype="date"></div><br><div id="WN6StrB" style="width:600px;height:100px;" gtype="bat"></div><br><hr>'; NB7div.innerHTML = '<a class="b-vertical-arrow us-show-medals" href="#"><span class="b-fake-link">' + (lang === "ru" ? "Последние 7 сохранений (графики)" : "Last 7 savepoints (graphs)") + '</span></a>'; NB7Tdiv.innerHTML = '<a class="b-vertical-arrow us-show-medals" href="#"><span class="b-fake-link">' + (lang === "ru" ? "Последние 7 сохранений танки (графики)" : "Last 7 savepoints tanks (graphs)") + '</span></a>'; retbodytrtd1table.setAttribute('class', 't-dotted'); retbodytrtd1table.appendChild(retbodytrtd1tabletbody); retbodytrtd2table.setAttribute('class', 't-dotted'); retbodytrtd2table.appendChild(retbodytrtd2tabletbody); companyTable.appendChild(companyTabletbody); clanTable.appendChild(clanTabletbody); lDiv.appendChild(companyH4); lDiv.appendChild(companyTable); lDiv.appendChild(lhr); rDiv.appendChild(clanH4); rDiv.appendChild(clanTable); rDiv.appendChild(rhr); lDiv.appendChild(retbodytrtd1table); rDiv.appendChild(retbodytrtd2table); sDiv.appendChild(sDivH3); mainDiv.appendChild(sDiv); if (daystat && settings.gtype !== "no") { mainDiv.appendChild(NB7div); mainDiv.appendChild(NB7div2); } thDiv.appendChild(rDiv); thDiv.appendChild(lDiv); mainDiv.appendChild(thDiv); if (daystat && settings.gtype !== "no") { mainDiv.appendChild(NB7Tdiv); mainDiv.appendChild(NB7Tdiv2); } blBool = settings.efRat && (toFl(settings.efRat[1]) !== 0 || toFl(settings.efRat[0]) !== 0); spSp.className = "b-fake-link"; spSp.innerHTML = blBool ? (lang === "ru" ? 'Развернуть блок "Рейтинги эффективности"' : 'Expand "Eff. ratings"') : (lang === "ru" ? 'Свернуть блок "Рейтинги эффективности"' : 'Collapse "Eff. ratings"'); spA.appendChild(spSp); spA.className = "b-vertical-arrow sh-speedometr" + (blBool ? "" : " b-vertical-arrow__open"); spA.setAttribute('curSt', blBool ? 1 : 0); spA.setAttribute('curStText', (lang === "ru" ? '"Рейтинги эффективности"' : '"Eff. ratings"')); spA.href = "#"; spDiv.appendChild(spA); spDiv.setAttribute('style', 'text-align: right; margin-right: 15px;' + (blBool ? "padding-top: 10px; padding-bottom: 10px;" : "")); mainDiv.parentNode.insertBefore(spDiv, mainDiv); if (blBool) spDiv.nextElementSibling.setAttribute('style', 'display:none;'); if (settings.efRat && toFl(settings.efRat[1]) === 1) spDiv.setAttribute('style', 'display:none;'); if (CmpmainDiv && settings.compare && window.location.href.indexOf(settings.UserID) === -1) { blBool = settings.plComp && (toFl(settings.plComp[1]) !== 0 || toFl(settings.plComp[0]) !== 0); CmpmainDiv.parentNode.insertBefore(CmpspDiv1, CmpmainDiv); if (settings.plComp && toFl(settings.plComp[1]) === 1) CmpspDiv1.setAttribute('style', 'display:none;'); if (blBool) CmpspDiv1.nextElementSibling.setAttribute('style', 'display:none;'); } if (NBmainDiv) { blBool = settings.newBat && (toFl(settings.newBat[1]) !== 0 || toFl(settings.newBat[0]) !== 0); NBmainDiv.parentNode.insertBefore(spDiv1, NBmainDiv); if (settings.newBat && toFl(settings.newBat[1]) === 1) spDiv1.setAttribute('style', 'display:none;'); if (blBool) spDiv1.nextElementSibling.setAttribute('style', 'display:none;'); } // Эффективность var xeff = GetXRating(effres[0], "effres"); insertNewTr(retbodytrtd1tabletbody, (lang === "ru") ? " <a href='http://wot-news.com/index.php/stat/calc/ru/ru/" + playerNick + "' target='_blank'>Эффективность</a>" : "<a href='http://wot-news.com/index.php' target='_blank'>Eff. rating</a>", "<font color='" + CalcEffColor(Number(effres[0]), "eff")[0] + "'>" + effres[0] + "</font>" + (NewBattles && (effres[0] - oeffs[0]).toFixed(2) * 1 !== 0 ? (effres[0] - oeffs[0] > 0 ? "<font color='green'> (+" + (effres[0] - oeffs[0]).toFixed(2) : "<font color='red'> (" + (effres[0] - oeffs[0]).toFixed(2)) + ")</font>" : ""), CalcEffColor(Number(effres[0]), "eff")[1], "eff-rating"); hrIn = statTooltip.length === 0; if (NewBattles && (effres[0] - oeffs[0]).toFixed(2) * 1 !== 0) { if (!hrIn && statTooltip.length !== 0) { statTooltip += '<hr>'; hrIn = true; } statTooltip += "<div style='float:left'>" + (lang === "ru" ? 'Эффективность: ' : 'Eff. rating: ') + "</div><div style='float:right'>" + (effres[0] - oeffs[0] > 0 ? "<font color='green'>+" + (effres[0] - oeffs[0]).toFixed(2) : "<font color='red'>" + (effres[0] - oeffs[0]).toFixed(2)) + "</font></div><br>"; } insertNewTr(retbodytrtd2tabletbody, (lang === "ru") ? "<a href='http://wot-news.com/index.php/stat/calc/ru/ru/" + playerNick + "' target='_blank'>Эффективность xvm</a>" : "<a href='http://wot-news.com/index.php' target='_blank'>Eff. rating xwm</a>", "<font color='" + CalcEffColor(Number(effres[0]), "eff")[0] + "'>" + xeff + "</font>" + (NewBattles && oxeff !== 0 && (xeff - oxeff).toFixed(2) * 1 !== 0 ? (xeff - oxeff > 0 ? "<font color='green'> (+" + (xeff - oxeff).toFixed(2) : "<font color='red'> (" + (xeff - oxeff).toFixed(2)) + ")</font>" : ""), "", "xeff-rating"); if (NewBattles && oxeff !== 0 && (xeff - oxeff).toFixed(2) * 1 !== 0) { if (!hrIn && statTooltip.length !== 0) { statTooltip += '<hr>'; hrIn = true; } statTooltip += "<div style='float:left'>" + (lang === "ru" ? 'Эффективность xvm: ' : 'Eff. rating xwm: ') + "</div><div style='float:right'>" + (xeff - oxeff > 0 ? "<font color='green'>+" + (xeff - oxeff).toFixed(2) : "<font color='red'>" + (xeff - oxeff).toFixed(2)) + "</font></div><br>"; } // WN6 var xwn = GetXRating(effres[2], "wn6") insertNewTr(retbodytrtd1tabletbody, (lang === "ru") ? " <a href='http://wot-news.com/index.php/stat/calc/ru/ru/" + playerNick + "' target='_blank'>WN6 Рейтинг</a>" : "<a href='http://wot-news.com/index.php' target='_blank'>WN6 Rating</a>", "<font color='" + CalcEffColor(Number(effres[2]), "wn6")[0] + "'>" + effres[2] + "</font>" + (NewBattles && (effres[2] - oeffs[2]).toFixed(2) * 1 !== 0 ? (effres[2] - oeffs[2] > 0 ? "<font color='green'> (+" + (effres[2] - oeffs[2]).toFixed(2) : "<font color='red'> (" + (effres[2] - oeffs[2]).toFixed(2)) + ")</font>" : ""), CalcEffColor(Number(effres[2]), "wn6")[1], "wn6-rating"); if (NewBattles && (effres[2] - oeffs[2]).toFixed(2) * 1 !== 0) { if (!hrIn && statTooltip.length !== 0) { statTooltip += '<hr>'; hrIn = true; } statTooltip += "<div style='float:left'>" + (lang === "ru" ? 'WN6 Рейтинг: ' : 'WN6 Rating: ') + "</div><div style='float:right'>" + (effres[2] - oeffs[2] > 0 ? "<font color='green'>+" + (effres[2] - oeffs[2]).toFixed(2) : "<font color='red'>" + (effres[2] - oeffs[2]).toFixed(2)) + "</font></div><br>"; } insertNewTr(retbodytrtd2tabletbody, (lang === "ru") ? "<a href='http://wot-news.com/index.php/stat/calc/ru/ru/" + playerNick + "' target='_blank'>WN6 Рейтинг xvm</a>" : "<a href='http://wot-news.com/index.php' target='_blank'>WN6 Rating xwm</a>", "<font color='" + CalcEffColor(Number(effres[2]), "wn6")[0] + "'>" + xwn + "</font>" + (NewBattles && oxwn !== 0 && (xwn - oxwn).toFixed(2) * 1 !== 0 ? (xwn - oxwn > 0 ? "<font color='green'> (+" + (xwn - oxwn).toFixed(2) : "<font color='red'> (" + (xwn - oxwn).toFixed(2)) + ")</font>" : ""), "", "xwn-rating"); if (NewBattles && oxwn !== 0 && (xwn - oxwn).toFixed(2) * 1 !== 0) { if (!hrIn && statTooltip.length !== 0) { statTooltip += '<hr>'; hrIn = true; } statTooltip += "<div style='float:left'>" + (lang === "ru" ? 'WN6 Рейтинг xvm: ' : 'WN6 Rating xwm: ') + "</div><div style='float:right'>" + (xwn - oxwn > 0 ? "<font color='green'>+" + (xwn - oxwn).toFixed(2) : "<font color='red'>" + (xwn - oxwn).toFixed(2)) + "</font></div><br>"; } // WN8 var xwn8 = GetXRating(wn8, "wn8"); insertNewTr(retbodytrtd1tabletbody, (lang === "ru") ? "<a href='http://www.noobmeter.com/player/ru/" + playerNick + "/" + UserId + "/' target='_blank'>WN8 Рейтинг</a>" : "<a href='http://www.noobmeter.com/player/ru/" + playerNick + "/" + UserId + "/' target='_blank'>WN8 Rating</a>", "<font color='" + CalcEffColor(Number(wn8), "wn8")[0] + "'>" + wn8.toFixed(2) + "</font>" + (NewBattles && (wn8 - own8).toFixed(2) * 1 !== 0 ? (wn8 - own8 > 0 ? "<font color='green'> (+" + (wn8 - own8).toFixed(2) : "<font color='red'> (" + (wn8 - own8).toFixed(2)) + ")</font>" : ""), CalcEffColor(Number(wn8), "wn8")[1], "wn8-rating"); insertNewTr(retbodytrtd2tabletbody, (lang === "ru") ? "<a href='http://www.noobmeter.com/player/ru/" + playerNick + "/" + UserId + "/' target='_blank'>WN8 Рейтинг xwm</a>" : "<a href='http://www.noobmeter.com/player/ru/" + playerNick + "/" + UserId + "/' target='_blank'>WN8 Rating xwm</a>", "<font color='" + CalcEffColor(Number(wn8), "wn8")[0] + "'>" + xwn8 + "</font>" + (NewBattles && (xwn8 - xown8) * 1 !== 0 ? (xwn8 - xown8 > 0 ? "<font color='green'> (+" + (xwn8 - xown8).toFixed(2) : "<font color='red'> (" + (xwn8 - xown8).toFixed(2)) + ")</font>" : ""), "", "xwn8-rating"); // Личный рейтинг var wgr = GetXRating(WGRating, "wgr"), owgr = GetXRating(OldWGRating, "wgr"); insertNewTr(retbodytrtd1tabletbody, (lang === "ru") ? " <a href='http://forum.worldoftanks.ru/index.php?/topic/995453-/page__pid__24377030#entry24377030' target='_blank'>Личный рейтинг</a>" : "<a href='http://forum.worldoftanks.ru/index.php?/topic/995453-/page__pid__24377030#entry24377030' target='_blank'>Personal Rating</a>", "<font color='" + CalcEffColor(WGRating, "WGRating")[0] + "'>" + WGRating + "</font>" + (((WGRating - OldWGRating).toFixed(0) != 0.0) ? ( "<font color='" + ((WGRating - OldWGRating > 0) ? "green'> (+" + (WGRating - OldWGRating).toFixed(0) : "red'> (" + (WGRating - OldWGRating).toFixed(0)) + ")</font>") : ""), CalcEffColor(WGRating, "WGRating")[1], "us-WGRating"); insertNewTr(retbodytrtd2tabletbody, "<a href='http://www.noobmeter.com/player/ru/" + playerNick + "/" + UserId + "/' target='_blank'>Личный рейтинг xvm</a>", "<font color='" + CalcEffColor(WGRating, "WGRating")[0] + "'>" + wgr + "</font>" + ((owgr && (wgr - owgr).toFixed(2) != 0.0) ? ( "<font color='" + ((wgr - owgr > 0) ? "green'> (+" + (wgr - owgr).toFixed(2) : "red'> (" + (wgr - owgr).toFixed(2)) + ")</font>") : ""), "", "wgrating-xvm"); //Рейтинг нагиба var PR = (500 * (AllWins / AllBattles) / 0.4856) + (1000 * AllDamag / (tnaSum * 0.975)); var clearedFromPenalties1 = 1500, expectedMinBattles1 = 500, expectedMinAvgTier1 = 6, clearedFromPenalties2 = 1900, expectedMinBattles2 = 2000, expectedMinAvgTier2 = 7; if (PR > clearedFromPenalties1) PR = PR - (PR - clearedFromPenalties1) * Math.pow(Math.max(0, 1 - (AllAvgLev / expectedMinAvgTier1), 1 - (AllBattles / expectedMinBattles1)), 0.5); if (PR > clearedFromPenalties2) PR = PR - (PR - clearedFromPenalties2) * Math.pow(Math.max(0, 1 - (AllAvgLev / expectedMinAvgTier2), 1 - (AllBattles / expectedMinBattles2)), 0.5); var XPR = GetXRating(PR, "pr"); insertNewTr(retbodytrtd1tabletbody, "<a href='http://www.noobmeter.com/player/ru/" + playerNick + "/" + UserId + "/' target='_blank'>Рейтинг нагиба</a>", "<font color='" + CalcEffColor(PR, "pr")[0] + "'>" + PR.toFixed(2) + "</font>" + ((oPR && (PR - oPR).toFixed(2) != 0.0) ? ( "<font color='" + ((PR - oPR > 0) ? "green'> (+" + (PR - oPR).toFixed(2) : "red'> (" + (PR - oPR).toFixed(2)) + ")</font>") : ""), CalcEffColor(PR, "pr")[1], "noobmeter-rating"); insertNewTr(retbodytrtd2tabletbody, "<a href='http://www.noobmeter.com/player/ru/" + playerNick + "/" + UserId + "/' target='_blank'>Рейтинг нагиба xvm</a>", "<font color='" + CalcEffColor(PR, "pr")[0] + "'>" + XPR + "</font>" + ((oXPR && (XPR - oXPR).toFixed(2) != 0.0) ? ( "<font color='" + ((XPR - oXPR > 0) ? "green'> (+" + (XPR - oXPR).toFixed(2) : "red'> (" + (XPR - oXPR).toFixed(2)) + ")</font>") : ""), "", "noobmeter-rating-xvm"); // Эффективность БС insertNewTr(retbodytrtd1tabletbody, (lang === "ru") ? "<a href='http://armor.kiev.ua/wot/gamerstat/" + playerNick + "' target='_blank'>Эффективность БС</a>" : "<a href='http://armor.kiev.ua/wot/' target='_blank'>Eff. rating of BS</a>", "x", "x", "bs-rating"); insertNewTr(retbodytrtd2tabletbody, (lang === "ru") ? "<a href='http://armor.kiev.ua/wot/gamerstat/" + playerNick + "' target='_blank'>Эффективность БС xvm</a>" : "<a href='http://armor.kiev.ua/wot/' target='_blank'>Eff. rating of BS xvm</a>", "x", "x", "bs-rating-xvm"); insertNewTr(retbodytrtd1tabletbody, (lang === "ru") ? " <a href='http://wot-noobs.ru/nubomer/?nick=" + playerNick + "' target='_blank'>Нубо-Рейтинг</a>" : "<a href='http://wot-noobs.ru/nubomer/?nick=" + playerNick + "' target='_blank'>Wot-noobs rating</a>", "", "x", "us-NoobStat"); insertNewTr(retbodytrtd2tabletbody, (lang === "ru") ? " <a href='http://wot-noobs.ru/nubomer/?nick=" + playerNick + "' target='_blank'>Нубо-Рейтинг xvm</a>" : "<a href='http://wot-noobs.ru/nubomer/?nick=" + playerNick + "' target='_blank'>Wot-noobs rating xvm</a>", "", "x", "us-NoobStat-xvm"); insertNewTr(retbodytrtd2tabletbody, (lang === "ru") ? " Боев" : "Battles", (AllBattles).toFixed(0) + (NewBattles && ((AllBattles).toFixed(0) - (OldBattles).toFixed(0)).toFixed(0) * 1 !== 0.0 ? (((AllBattles).toFixed(0) - (OldBattles).toFixed(0)).toFixed(0) > 0 ? "<font color='green'> (+" + ((AllBattles).toFixed(0) - (OldBattles).toFixed(0)).toFixed(0) : "<font color='red'> (" + ((AllBattles).toFixed(0) - (OldBattles).toFixed(0)).toFixed(0)) + ")</font>" : ""), "", "us-battles"); insertNewTr(retbodytrtd2tabletbody, (lang === "ru") ? "Опыт за бой" : "Exp per battle", (AllXp / AllBattles).toFixed(2) + (NewBattles && ((AllXp / AllBattles).toFixed(2) - (OldXp / OldBattles).toFixed(2)).toFixed(2) * 1 !== 0 ? (((AllXp / AllBattles).toFixed(2) - (OldXp / OldBattles).toFixed(2)).toFixed(2) > 0 ? "<font color='green'> (+" + ((AllXp / AllBattles).toFixed(2) - (OldXp / OldBattles).toFixed(2)).toFixed(2) : "<font color='red'> (" + ((AllXp / AllBattles).toFixed(2) - (OldXp / OldBattles).toFixed(2)).toFixed(2)) + ")<font>" : ""), AllXp + " <font color='red'>/</font> <font color='green'>" + AllBattles + "</font>", "us-xp"); insertNewTr(retbodytrtd2tabletbody, (lang === "ru") ? "Повреждений за бой" : "Damage per battle", (AllDamag / AllBattles).toFixed(2) + (NewBattles && ((AllDamag / AllBattles).toFixed(2) - (OldDamag / OldBattles).toFixed(2)).toFixed(2) * 1 !== 0.0 ? (((AllDamag / AllBattles).toFixed(2) - (OldDamag / OldBattles).toFixed(2)).toFixed(2) > 0 ? "<font color='green'> (+" + ((AllDamag / AllBattles).toFixed(2) - (OldDamag / OldBattles).toFixed(2)).toFixed(2) : "<font color='red'> (" + ((AllDamag / AllBattles).toFixed(2) - (OldDamag / OldBattles).toFixed(2)).toFixed(2)) + ")<font>" : ""), EffTooltip("damage", AllDamag, effres, AllBattles, AllAvgLev, lang), "us-damag"); insertNewTr(retbodytrtd2tabletbody, (lang === "ru") ? "Фрагов за бой" : "Frags per battle", (AllFrags / AllBattles).toFixed(2) + (NewBattles && ((AllFrags / AllBattles).toFixed(2) - (OldFrags / OldBattles).toFixed(2)).toFixed(2) * 1 !== 0.0 ? (((AllFrags / AllBattles).toFixed(2) - (OldFrags / OldBattles).toFixed(2)).toFixed(2) > 0 ? "<font color='green'> (+" + ((AllFrags / AllBattles).toFixed(2) - (OldFrags / OldBattles).toFixed(2)).toFixed(2) : "<font color='red'> (" + ((AllFrags / AllBattles).toFixed(2) - (OldFrags / OldBattles).toFixed(2)).toFixed(2)) + ")<font>" : ""), EffTooltip("frags", AllFrags, effres, AllBattles, AllAvgLev, lang), "us-frags"); insertNewTr(retbodytrtd2tabletbody, (lang === "ru") ? "Обнаружено за бой" : "Spotted per battle", (AllSpotted / AllBattles).toFixed(2) + (NewBattles && ((AllSpotted / AllBattles).toFixed(2) - (OldSpotted / OldBattles).toFixed(2)).toFixed(2) * 1 !== 0.0 ? (((AllSpotted / AllBattles).toFixed(2) - (OldSpotted / OldBattles).toFixed(2)).toFixed(2) > 0 ? "<font color='green'> (+" + ((AllSpotted / AllBattles).toFixed(2) - (OldSpotted / OldBattles).toFixed(2)).toFixed(2) : "<font color='red'> (" + ((AllSpotted / AllBattles).toFixed(2) - (OldSpotted / OldBattles).toFixed(2)).toFixed(2)) + ")<font>" : ""), EffTooltip("spotted", AllSpotted, effres, AllBattles, AllAvgLev, lang), "us-spotted"); insertNewTr(retbodytrtd2tabletbody, (lang === "ru") ? "Очков захвата за бой" : "Caps per battle", (AllCaps / AllBattles).toFixed(2) + (NewBattles && ((AllCaps / AllBattles).toFixed(2) - (OldCaps / OldBattles).toFixed(2)).toFixed(2) * 1 !== 0.0 ? (((AllCaps / AllBattles).toFixed(2) - (OldCaps / OldBattles).toFixed(2)).toFixed(2) > 0 ? "<font color='green'> (+" + ((AllCaps / AllBattles).toFixed(2) - (OldCaps / OldBattles).toFixed(2)).toFixed(2) : "<font color='red'> (" + ((AllCaps / AllBattles).toFixed(2) - (OldCaps / OldBattles).toFixed(2)).toFixed(2)) + ")<font>" : ""), EffTooltip("caps", AllCaps, effres, AllBattles, AllAvgLev, lang), "us-caps"); insertNewTr(retbodytrtd2tabletbody, (lang === "ru") ? "Очков защиты за бой" : "Defs per battle", (AllDefs / AllBattles).toFixed(2) + (NewBattles && ((AllDefs / AllBattles).toFixed(2) - (OldDefs / OldBattles).toFixed(2)).toFixed(2) * 1 !== 0.0 ? (((AllDefs / AllBattles).toFixed(2) - (OldDefs / OldBattles).toFixed(2)).toFixed(2) > 0 ? "<font color='green'> (+" + ((AllDefs / AllBattles).toFixed(2) - (OldDefs / OldBattles).toFixed(2)).toFixed(2) : "<font color='red'> (" + ((AllDefs / AllBattles).toFixed(2) - (OldDefs / OldBattles).toFixed(2)).toFixed(2)) + ")<font>" : ""), EffTooltip("defs", AllDefs, effres, AllBattles, AllAvgLev, lang), "us-defs"); if (daypassed !== 0) insertNewTr(retbodytrtd1tabletbody, (lang === "ru") ? " Боев в день" : "Battles per day", (AllBattles / daypassed).toFixed(2) + (NewBattles && ((AllBattles / daypassed).toFixed(2) - (OldBattles / olddaypassed).toFixed(2)).toFixed(2) * 1 !== 0.0 ? (((AllBattles / daypassed).toFixed(2) - (OldBattles / olddaypassed).toFixed(2)).toFixed(2) > 0 ? "<font color='green'> (+" + ((AllBattles / daypassed).toFixed(2) - (OldBattles / olddaypassed).toFixed(2)).toFixed(2) : "<font color='red'> (" + ((AllBattles / daypassed).toFixed(2) - (OldBattles / olddaypassed).toFixed(2)).toFixed(2)) + ")</font>" : ""), ((lang === "ru") ? "дней" : "days") + ": " + daypassed.toFixed(), "us-daypassed"); insertNewTr(retbodytrtd1tabletbody, (lang === "ru") ? "Средний уровень танков" : "Average level of tanks", AllAvgLev.toFixed(2) + (NewBattles && (AllAvgLev.toFixed(2) - OldAvgLev.toFixed(2)).toFixed(2) * 1 !== 0.0 ? ((AllAvgLev.toFixed(2) - OldAvgLev.toFixed(2)).toFixed(2) > 0 ? "<font color='green'> (+" + (AllAvgLev.toFixed(2) - OldAvgLev.toFixed(2)).toFixed(2) : "<font color='red'> (" + (AllAvgLev.toFixed(2) - OldAvgLev.toFixed(2)).toFixed(2)) + ")<font>" : ""), "", ""); insertNewTr(retbodytrtd1tabletbody, (lang === "ru") ? "% побед" : "Win %", col(AllWins / AllBattles * 100, 2) + (NewBattles && ((AllWins / AllBattles * 100).toFixed(2) - (OldWins / OldBattles * 100).toFixed(2)).toFixed(2) * 1 !== 0.0 ? (((AllWins / AllBattles * 100).toFixed(2) - (OldWins / OldBattles * 100).toFixed(2)).toFixed(2) > 0 ? "<font color='green'> (+" + ((AllWins / AllBattles * 100).toFixed(2) - (OldWins / OldBattles * 100).toFixed(2)).toFixed(2) : "<font color='red'> (" + ((AllWins / AllBattles * 100).toFixed(2) - (OldWins / OldBattles * 100).toFixed(2)).toFixed(2)) + ")</font>" : ""), FoundProc(AllWins, AllBattles), "us-winperc"); var AllDefeat = toFl(document.getElementsByClassName("b-result")[0].getElementsByClassName("t-dotted")[0].rows[2].cells[1].innerHTML.split("(")[0]); insertNewTr(retbodytrtd1tabletbody, (lang === "ru") ? "% поражений" : "Defeat %", col(AllDefeat / AllBattles * 100, 2, true), FoundProc(AllDefeat, AllBattles), "us-defeat"); var AllSurvived = toFl(document.getElementsByClassName("b-result")[0].getElementsByClassName("t-dotted")[0].rows[3].cells[1].innerHTML.split("(")[0]); insertNewTr(retbodytrtd1tabletbody, (lang === "ru") ? "% выживания" : "Survived %", (AllSurvived / AllBattles * 100).toFixed(2) + "%", FoundProc(AllSurvived, AllBattles), "us-surv"); var AllHR = toFl(document.getElementsByClassName("b-result")[1].getElementsByClassName("t-dotted")[0].rows[2].cells[1].innerHTML); insertNewTr(retbodytrtd1tabletbody, (lang === "ru") ? "% попадания" : "Hit Ratio", col(AllHR), "x", "hit-ratio"); if (daystat && settings.gtype !== "no") { var plotScript = document.createElement("script"), xpStr = '[{ color: 0, data: [', xpStrB = '[{ color: 0, data: [', percStrB = '[{ color: 1, data: [', percStr = '[{ color: 1, data: [', damagStr = '[{ color: 2, data: [', FragsStr = '[{ color: 3, data: [', SpottedStr = '[{ color: 4, data: [', CapsStr = '[{ color: 5, data: [', DefsStr = '[{ color: 6, data: [', EffStr = '[{ color: 7, data: [', WN6Str = '[{ color: 8, data: [', damagStrB = '[{ color: 2, data: [', FragsStrB = '[{ color: 3, data: [', SpottedStrB = '[{ color: 4, data: [', CapsStrB = '[{ color: 5, data: [', DefsStrB = '[{ color: 6, data: [', EffStrB = '[{ color: 7, data: [', WN6StrB = '[{ color: 8, data: [', firstSt = true; plotScript.type = "text/javascript"; var grTanks = [], grtindex = []; for (var k = 0; k < 7; k++) { var statData = GetLSData("daystat_" + UserId + "_" + k); if (statData) { var dsArr = statData.split("|"), strArray = dsArr[0].split("/"), str = strArray[0].split(";"), timeStat = (new Date(str[0])).getTime(), gOldBattles = toFl(str[12]), gOldWins = toFl(str[10]), gOldXp = toFl(str[24]), gOldDamag = toFl(str[16]), gOldFrags = toFl(str[20]), gOldSpotted = toFl(str[22]), gOldCaps = toFl(str[14]), gOldDefs = toFl(str[18]); if (firstSt) { firstSt = false; } else if (timeStat) { xpStr += ', '; xpStrB += ', '; percStr += ', '; percStrB += ', '; damagStr += ', '; FragsStr += ', '; SpottedStr += ', '; CapsStr += ', '; DefsStr += ', '; EffStr += ', '; WN6Str += ', '; damagStrB += ', '; FragsStrB += ', '; SpottedStrB += ', '; CapsStrB += ', '; DefsStrB += ', '; EffStrB += ', '; WN6StrB += ', '; } if (timeStat) { xpStr += '[' + timeStat + ', ' + (gOldXp / gOldBattles).toFixed(2) + ']'; xpStrB += '[' + gOldBattles + ', ' + (gOldXp / gOldBattles).toFixed(2) + ']'; percStr += '[' + timeStat + ', ' + (gOldWins / gOldBattles * 100).toFixed(2) + ']'; percStrB += '[' + gOldBattles + ', ' + (gOldWins / gOldBattles * 100).toFixed(2) + ']'; damagStr += '[' + timeStat + ', ' + (gOldDamag / gOldBattles).toFixed(2) + ']'; FragsStr += '[' + timeStat + ', ' + (gOldFrags / gOldBattles).toFixed(2) + ']'; SpottedStr += '[' + timeStat + ', ' + (gOldSpotted / gOldBattles).toFixed(2) + ']'; CapsStr += '[' + timeStat + ', ' + (gOldCaps / gOldBattles).toFixed(2) + ']'; DefsStr += '[' + timeStat + ', ' + (gOldDefs / gOldBattles).toFixed(2) + ']'; damagStrB += '[' + gOldBattles + ', ' + (gOldDamag / gOldBattles).toFixed(2) + ']'; FragsStrB += '[' + gOldBattles + ', ' + (gOldFrags / gOldBattles).toFixed(2) + ']'; SpottedStrB += '[' + gOldBattles + ', ' + (gOldSpotted / gOldBattles).toFixed(2) + ']'; CapsStrB += '[' + gOldBattles + ', ' + (gOldCaps / gOldBattles).toFixed(2) + ']'; DefsStrB += '[' + gOldBattles + ', ' + (gOldDefs / gOldBattles).toFixed(2) + ']'; var odayArray = []; for (var p = 1; p < strArray.length; p++) { str = strArray[p].split(";"); var tName = str[0].toLowerCase(); odayArray[tName] = new Object(); odayArray[tName].b = toFl(str[1]); odayArray[tName].w = str.length > 3 ? toFl(str[3]) : -1; if (tanksarr[tName] && tanksarr[tName].bcount !== odayArray[tName].b) { if (!grTanks[tName]) { grTanks[tName] = []; grtindex[tName] = []; } if (grtindex[tName].indexOf(odayArray[tName].b) === -1) { grTanks[tName].push({'bcount': odayArray[tName].b, 'wcount': odayArray[tName].w}); grtindex[tName].push(odayArray[tName].b); } } } var cav = CalcgOldAvgLev(odayArray), gAvgLev = cav[0], ogeff = CalcEff(0, gAvgLev, gOldBattles, gOldWins, gOldDamag, gOldFrags, gOldSpotted, gOldCaps, gOldDefs, gOldXp); EffStr += '[' + timeStat + ', ' + ogeff[0] + ']'; WN6Str += '[' + timeStat + ', ' + ogeff[2] + ']'; EffStrB += '[' + gOldBattles + ', ' + ogeff[0] + ']'; WN6StrB += '[' + gOldBattles + ', ' + ogeff[2] + ']'; } } ; } plotScript.textContent = ' var plot_conf = { series: {lines: {show: true, lineWidth: 2 }, points: {show: true}}, grid: {hoverable: true}, xaxis: { mode: "time", timeformat: "%d.%m.%y"}}; ' + ' var plot_confB = { series: {lines: {show: true, lineWidth: 2 }, points: {show: true}}, grid: {hoverable: true}}; ' + ' function showTooltip(x, y, contents) {$("<div id=\'tooltip\'>" + contents + "</div>").css({position: "absolute",display: "none",top: y + 5,left: x + 5,border: "1px solid #fdd",padding: "2px","background-color": "white"}).appendTo("body").fadeIn(200);}var previousPoint = null;'; for (var gtank in grTanks) { if (grTanks[gtank].length > 1) { NB7Tdiv2.innerHTML += '<div style="margin-top: 15px;' + (tanksarr[gtank]['prem'] ? ' color: #ffc363 !important;"' : '"') + '><img src="' + tanksarr[gtank]['img'] + '"> ' + tanksarr[gtank]['name'] + ' <strong>' + tanksarr[gtank]['ttype'] + tanksarr[gtank]['tlev'] + '</strong></div><br><div style="width:600px;height:100px;" id="tgr' + gtank + '">'; plotScript.textContent += 'var tgrdata' + gtank.split('-').join('_') + ' = [{ color: 0, data: ['; var fst = true; for (var grc in grTanks[gtank]) { if (fst) { fst = false; } else { plotScript.textContent += ', '; } plotScript.textContent += '[' + grTanks[gtank][grc]['bcount'] + ', ' + (grTanks[gtank][grc]['wcount'] / grTanks[gtank][grc]['bcount'] * 100).toFixed(2) + ']'; } plotScript.textContent += ']}]; ' + ' $.plot($("#tgr' + gtank + '"), tgrdata' + gtank.split('-').join('_') + ', plot_confB); '; plotScript.textContent += ' $("#tgr' + gtank + '").bind("plothover", function (event, pos, item) {if (item) {if (previousPoint != item.dataIndex) {previousPoint = item.dataIndex;$("#tooltip").remove();var x = item.datapoint[0].toFixed(0),y = item.datapoint[1].toFixed(2);showTooltip(item.pageX, item.pageY, "Боев: " + x + "; " + y + "% побед.");}} else {$("#tooltip").remove();previousPoint = null; }});' } } xpStr += ']}]'; xpStrB += ']}]'; percStr += ']}]'; percStrB += ']}]'; damagStr += ']}]'; FragsStr += ']}]'; SpottedStr += ']}]'; CapsStr += ']}]'; DefsStr += ']}]'; EffStr += ']}]'; WN6Str += ']}]'; damagStrB += ']}]'; FragsStrB += ']}]'; SpottedStrB += ']}]'; CapsStrB += ']}]'; DefsStrB += ']}]'; EffStrB += ']}]'; WN6StrB += ']}]'; plotScript.textContent += " var xp_data = " + xpStr + "," + " xpStrB_data = " + xpStrB + "," + " damagStr_data = " + damagStr + "," + " FragsStr_data = " + FragsStr + "," + " SpottedStr_data = " + SpottedStr + "," + " CapsStr_data = " + CapsStr + "," + " DefsStr_data = " + DefsStr + "," + " EffStr_data = " + EffStr + "," + " WN6Str_data = " + WN6Str + "," + " damagStrB_data = " + damagStrB + "," + " FragsStrB_data = " + FragsStrB + "," + " SpottedStrB_data = " + SpottedStrB + "," + " CapsStrB_data = " + CapsStrB + "," + " DefsStrB_data = " + DefsStrB + "," + " EffStrB_data = " + EffStrB + "," + " WN6StrB_data = " + WN6StrB + "," + " percStr_data = " + percStr + ";" + " percStrB_data = " + percStrB + ";" + ' $.plot($("#percStr"), percStr_data, plot_conf);' + ' $("#percStr").bind("plothover", function (event, pos, item) {if (item) {if (previousPoint != item.dataIndex) {previousPoint = item.dataIndex;$("#tooltip").remove();var x = new Date(item.datapoint[0]),y = item.datapoint[1].toFixed(2); if (x.toLocaleFormat) x = x.toLocaleFormat("%d.%m.%Y %H:%M"); else x = x.toLocaleString().substr(0, x.toLocaleString().lastIndexOf(":")); showTooltip(item.pageX, item.pageY, y + "% побед на " + x);}} else {$("#tooltip").remove();previousPoint = null; }});' + ' $.plot($("#percStrB"), percStrB_data, plot_confB);' + ' $("#percStrB").bind("plothover", function (event, pos, item) {if (item) {if (previousPoint != item.dataIndex) {previousPoint = item.dataIndex;$("#tooltip").remove();var x = item.datapoint[0].toFixed(0),y = item.datapoint[1].toFixed(2);showTooltip(item.pageX, item.pageY, "Боев: " + x + "; " + y + "% побед.");}} else {$("#tooltip").remove();previousPoint = null; }});' + ' $.plot($("#exp7"), xp_data, plot_conf);' + ' $("#exp7").bind("plothover", function (event, pos, item) {if (item) {if (previousPoint != item.dataIndex) {previousPoint = item.dataIndex;$("#tooltip").remove();var x = new Date(item.datapoint[0]),y = item.datapoint[1].toFixed(2); if (x.toLocaleFormat) x = x.toLocaleFormat("%d.%m.%Y %H:%M"); else x = x.toLocaleString().substr(0, x.toLocaleString().lastIndexOf(":")); showTooltip(item.pageX, item.pageY, y + " опыта за бой на " + x);}} else {$("#tooltip").remove();previousPoint = null; }});' + ' $.plot($("#xpStrB"), xpStrB_data, plot_confB);' + ' $("#xpStrB").bind("plothover", function (event, pos, item) {if (item) {if (previousPoint != item.dataIndex) {previousPoint = item.dataIndex;$("#tooltip").remove();var x = item.datapoint[0].toFixed(0),y = item.datapoint[1].toFixed(2);showTooltip(item.pageX, item.pageY, "Боев: " + x + "; " + y + " опыта за бой.");}} else {$("#tooltip").remove();previousPoint = null; }});' + ' $.plot($("#damagStr"), damagStr_data, plot_conf);' + ' $("#damagStr").bind("plothover", function (event, pos, item) {if (item) {if (previousPoint != item.dataIndex) {previousPoint = item.dataIndex;$("#tooltip").remove();var x = new Date(item.datapoint[0]),y = item.datapoint[1].toFixed(2); if (x.toLocaleFormat) x = x.toLocaleFormat("%d.%m.%Y %H:%M"); else x = x.toLocaleString().substr(0, x.toLocaleString().lastIndexOf(":")); showTooltip(item.pageX, item.pageY, y + " повреждений за бой на " + x);}} else {$("#tooltip").remove();previousPoint = null; }});' + ' $.plot($("#damagStrB"), damagStrB_data, plot_confB);' + ' $("#damagStrB").bind("plothover", function (event, pos, item) {if (item) {if (previousPoint != item.dataIndex) {previousPoint = item.dataIndex;$("#tooltip").remove();var x = item.datapoint[0].toFixed(0),y = item.datapoint[1].toFixed(2);showTooltip(item.pageX, item.pageY, "Боев: " + x + "; " + y + " повреждений за бой.");}} else {$("#tooltip").remove();previousPoint = null; }});' + ' $.plot($("#FragsStr"), FragsStr_data, plot_conf);' + ' $("#FragsStr").bind("plothover", function (event, pos, item) {if (item) {if (previousPoint != item.dataIndex) {previousPoint = item.dataIndex;$("#tooltip").remove();var x = new Date(item.datapoint[0]),y = item.datapoint[1].toFixed(2); if (x.toLocaleFormat) x = x.toLocaleFormat("%d.%m.%Y %H:%M"); else x = x.toLocaleString().substr(0, x.toLocaleString().lastIndexOf(":")); showTooltip(item.pageX, item.pageY, y + " фрагов за бой на " + x);}} else {$("#tooltip").remove();previousPoint = null; }});' + ' $.plot($("#FragsStrB"), FragsStrB_data, plot_confB);' + ' $("#FragsStrB").bind("plothover", function (event, pos, item) {if (item) {if (previousPoint != item.dataIndex) {previousPoint = item.dataIndex;$("#tooltip").remove();var x = item.datapoint[0].toFixed(0),y = item.datapoint[1].toFixed(2);showTooltip(item.pageX, item.pageY, "Боев: " + x + "; " + y + " фрагов за бой.");}} else {$("#tooltip").remove();previousPoint = null; }});' + ' $.plot($("#SpottedStr"), SpottedStr_data, plot_conf);' + ' $("#SpottedStr").bind("plothover", function (event, pos, item) {if (item) {if (previousPoint != item.dataIndex) {previousPoint = item.dataIndex;$("#tooltip").remove();var x = new Date(item.datapoint[0]),y = item.datapoint[1].toFixed(2); if (x.toLocaleFormat) x = x.toLocaleFormat("%d.%m.%Y %H:%M"); else x = x.toLocaleString().substr(0, x.toLocaleString().lastIndexOf(":")); showTooltip(item.pageX, item.pageY, y + " обнаружено за бой на " + x);}} else {$("#tooltip").remove();previousPoint = null; }});' + ' $.plot($("#SpottedStrB"), SpottedStrB_data, plot_confB);' + ' $("#SpottedStrB").bind("plothover", function (event, pos, item) {if (item) {if (previousPoint != item.dataIndex) {previousPoint = item.dataIndex;$("#tooltip").remove();var x = item.datapoint[0].toFixed(0),y = item.datapoint[1].toFixed(2);showTooltip(item.pageX, item.pageY, "Боев: " + x + "; " + y + " обнаружено за бой.");}} else {$("#tooltip").remove();previousPoint = null; }});' + ' $.plot($("#CapsStr"), CapsStr_data, plot_conf);' + ' $("#CapsStr").bind("plothover", function (event, pos, item) {if (item) {if (previousPoint != item.dataIndex) {previousPoint = item.dataIndex;$("#tooltip").remove();var x = new Date(item.datapoint[0]),y = item.datapoint[1].toFixed(2); if (x.toLocaleFormat) x = x.toLocaleFormat("%d.%m.%Y %H:%M"); else x = x.toLocaleString().substr(0, x.toLocaleString().lastIndexOf(":")); showTooltip(item.pageX, item.pageY, y + " очков захвата за бой на " + x);}} else {$("#tooltip").remove();previousPoint = null; }});' + ' $.plot($("#CapsStrB"), CapsStrB_data, plot_confB);' + ' $("#CapsStrB").bind("plothover", function (event, pos, item) {if (item) {if (previousPoint != item.dataIndex) {previousPoint = item.dataIndex;$("#tooltip").remove();var x = item.datapoint[0].toFixed(0),y = item.datapoint[1].toFixed(2);showTooltip(item.pageX, item.pageY, "Боев: " + x + "; " + y + " очков захвата за бой.");}} else {$("#tooltip").remove();previousPoint = null; }});' + ' $.plot($("#DefsStr"), DefsStr_data, plot_conf);' + ' $("#DefsStr").bind("plothover", function (event, pos, item) {if (item) {if (previousPoint != item.dataIndex) {previousPoint = item.dataIndex;$("#tooltip").remove();var x = new Date(item.datapoint[0]),y = item.datapoint[1].toFixed(2); if (x.toLocaleFormat) x = x.toLocaleFormat("%d.%m.%Y %H:%M"); else x = x.toLocaleString().substr(0, x.toLocaleString().lastIndexOf(":")); showTooltip(item.pageX, item.pageY, y + " очков защиты за бой на " + x);}} else {$("#tooltip").remove();previousPoint = null; }});' + ' $.plot($("#DefsStrB"), DefsStrB_data, plot_confB);' + ' $("#DefsStrB").bind("plothover", function (event, pos, item) {if (item) {if (previousPoint != item.dataIndex) {previousPoint = item.dataIndex;$("#tooltip").remove();var x = item.datapoint[0].toFixed(0),y = item.datapoint[1].toFixed(2);showTooltip(item.pageX, item.pageY, "Боев: " + x + "; " + y + " очков защиты за бой.");}} else {$("#tooltip").remove();previousPoint = null; }});' + ' $.plot($("#EffStr"), EffStr_data, plot_conf);' + ' $("#EffStr").bind("plothover", function (event, pos, item) {if (item) {if (previousPoint != item.dataIndex) {previousPoint = item.dataIndex;$("#tooltip").remove();var x = new Date(item.datapoint[0]),y = item.datapoint[1].toFixed(2); if (x.toLocaleFormat) x = x.toLocaleFormat("%d.%m.%Y %H:%M"); else x = x.toLocaleString().substr(0, x.toLocaleString().lastIndexOf(":")); showTooltip(item.pageX, item.pageY, "Эффективность на " + x + ": " + y);}} else {$("#tooltip").remove();previousPoint = null; }});' + ' $.plot($("#EffStrB"), EffStrB_data, plot_confB);' + ' $("#EffStrB").bind("plothover", function (event, pos, item) {if (item) {if (previousPoint != item.dataIndex) {previousPoint = item.dataIndex;$("#tooltip").remove();var x = item.datapoint[0].toFixed(0),y = item.datapoint[1].toFixed(2);showTooltip(item.pageX, item.pageY, "Боев: " + x + "; Эффективность: " + y);}} else {$("#tooltip").remove();previousPoint = null; }});' + ' $.plot($("#WN6Str"), WN6Str_data, plot_conf);' + ' $("#WN6Str").bind("plothover", function (event, pos, item) {if (item) {if (previousPoint != item.dataIndex) {previousPoint = item.dataIndex;$("#tooltip").remove();var x = new Date(item.datapoint[0]),y = item.datapoint[1].toFixed(2); if (x.toLocaleFormat) x = x.toLocaleFormat("%d.%m.%Y %H:%M"); else x = x.toLocaleString().substr(0, x.toLocaleString().lastIndexOf(":")); showTooltip(item.pageX, item.pageY, "Эффективность WN6 на " + x + ": " + y);}} else {$("#tooltip").remove();previousPoint = null; }});' + ' $.plot($("#WN6StrB"), WN6StrB_data, plot_confB);' + ' $("#WN6StrB").bind("plothover", function (event, pos, item) {if (item) {if (previousPoint != item.dataIndex) {previousPoint = item.dataIndex;$("#tooltip").remove();var x = item.datapoint[0].toFixed(0),y = item.datapoint[1].toFixed(2);showTooltip(item.pageX, item.pageY, "Боев: " + x + "; Эффективность WN6: " + y);}} else {$("#tooltip").remove();previousPoint = null; }});'; document.body.appendChild(plotScript); } //->Блок рейтинга эффективности var mtext = "<li><a id='WriteStat' style='cursor: pointer;'>" + ((lang === "ru") ? "Сохранить статистику" : "Save statistic") + "</a></li>"; if (uskeys.length > 0) { mtext += "<br>"; for (var i = 0; i < uskeys.length; i++) //if (settings.UserID !== uskeys[i]) mtext += '<li><a href="http://worldoftanks.ru/community/accounts/' + uskeys[i] + '">' + (settings[uskeys[i]] ? (uskeys[i] === UserId ? "<span style='color:green;'>" + settings[uskeys[i]] + "</span>" : settings[uskeys[i]]) : 'Игрок ' + uskeys[i]) + '</a></li>'; } mtext += "<br>"; if (uskeys.indexOf(UserId) !== -1) mtext += '<li><a class="us-remove-stat" href="#" uid="' + UserId + '">Удалить статистику</a></li>'; var fake_div = document.createElement("div"); fake_div.innerHTML = mtext; document.getElementsByClassName("b-context-menu-list__bottomindent")[0].appendChild(fake_div); create_expanders(blockArray, lang, settings, NewBattles); var statDiv = document.createElement("div"), statDiv2 = document.createElement('div'), statDiv3 = document.createElement('div'); statDiv2.innerHTML = statText; statDiv2.setAttribute('style', 'text-align: center;'); statDiv.appendChild(statDiv2); if (statTooltip.length > 0) statDiv.setAttribute("id", "js-stat-div"); statDiv.className = (statTooltip.length > 0 ? "js-tooltip " : "") + "spoiler"; statDiv3.innerHTML = statTooltip; statDiv3.setAttribute("id", "js-stat-div_tooltip"); statDiv3.className = "b-tooltip-main"; statDiv.setAttribute("style", "position: fixed; bottom: 1%; right: 1%; background-color: black; z-index: 1000;"); statDiv.style.border = "#f25322 dashed 1px"; if (statTooltip.length > 0) statDiv.appendChild(statDiv3); if (daystat) document.body.appendChild(statDiv); xdr.xget("http://wot-noobs.ru/nubomer/?nick=" + playerNick, outWotNoobStat); //document.getElementsByClassName("t-profile__vehicle")[0].style.width = '140%'; xdr.xget("http://api." + document.location.host + "/wot/tanks/stats/?application_id=" + api_key + "&fields=tank_id%2C%20all.battles%2C%20all.wins%2C%20all.damage_dealt%2C%20all.dropped_capture_points%2C%20all.frags%2C%20all.spotted&account_id=" + UserId, putTankStats); function saveTanksArr(response) { var now = new Date(), time = now.getTime(); time += 3600 * 24 * 1000; now.setTime(time); SetLSData("AllTanksArr", response, now.toGMTString()); var UserId = window.location.href.match(/\/(\d+)/)[1]; xdr.xget("http://api." + document.location.host + "/wot/account/tanks/?application_id=" + api_key + "&account_id=" + UserId, fixStatData); } function EffTooltip(ttype, tval, effsArr, allB, tAvgL, lang) { var retStr = tval + " <font color='red'>/</font> <font color='green'>" + allB + "</font><br>", tPval; if (ttype === "damage") { tPval = tval / allB * (10 / (tAvgL + 2)) * (0.23 + 2 * tAvgL / 100); retStr += "<font color='" + CalcEffColor(effsArr[0], 'eff')[0] + "'>" + (tPval / effsArr[0] * 100).toFixed(2) + "%" + (lang === "ru" ? " от эффективности" : " of eff. rating") + " (" + tPval.toFixed(2) + ")</font><br>"; tPval = tval / allB * 530 / (184 * Math.pow(Math.E, 0.24 * tAvgL) + 130) + (6 - Math.min(tAvgL, 6)) * -60; retStr += "<font color='" + CalcEffColor(effsArr[2], 'wn6')[0] + "'>" + (tPval / effsArr[2] * 100).toFixed(2) + "%" + (lang === "ru" ? " от рейтинга WN6" : " of WN6 rating") + " (" + tPval.toFixed(2) + ")</font>"; } else if (ttype === "frags") { tPval = tval / allB * 250; retStr += "<font color='" + CalcEffColor(effsArr[0], 'eff')[0] + "'>" + (tPval / effsArr[0] * 100).toFixed(2) + "%" + (lang === "ru" ? " от эффективности" : " of eff. rating") + " (" + tPval.toFixed(2) + ")</font><br>"; tPval = (1240 - 1040 / Math.pow(Math.min(tAvgL, 6), 0.164)) * tval / allB + (6 - Math.min(tAvgL, 6)) * -60; retStr += "<font color='" + CalcEffColor(effsArr[2], 'wn6')[0] + "'>" + (tPval / effsArr[2] * 100).toFixed(2) + "%" + (lang === "ru" ? " от рейтинга WN6" : " of WN6 rating") + " (" + tPval.toFixed(2) + ")</font>"; } else if (ttype === "spotted") { tPval = tval / allB * 150; retStr += "<font color='" + CalcEffColor(effsArr[0], 'eff')[0] + "'>" + (tPval / effsArr[0] * 100).toFixed(2) + "%" + (lang === "ru" ? " от эффективности" : " of eff. rating") + " (" + tPval.toFixed(2) + ")</font><br>"; tPval = tval / allB * 125 + (6 - Math.min(tAvgL, 6)) * -60; retStr += "<font color='" + CalcEffColor(effsArr[2], 'wn6')[0] + "'>" + (tPval / effsArr[2] * 100).toFixed(2) + "%" + (lang === "ru" ? " от рейтинга WN6" : " of WN6 rating") + " (" + tPval.toFixed(2) + ")</font>"; } else if (ttype === "caps") { tPval = Math.log((tval / allB) + 1) / Math.log(1.732) * 150; retStr += "<font color='" + CalcEffColor(effsArr[0], 'eff')[0] + "'>" + (tPval / effsArr[0] * 100).toFixed(2) + "%" + (lang === "ru" ? " от эффективности" : " of eff. rating") + " (" + tPval.toFixed(2) + ")</font><br>"; tPval = 0; retStr += "<font color='" + CalcEffColor(effsArr[2], 'wn6')[0] + "'>" + (tPval / effsArr[2] * 100).toFixed(2) + "%" + (lang === "ru" ? " от рейтинга WN6" : " of WN6 rating") + " (" + tPval.toFixed(2) + ")</font>"; } else if (ttype === "defs") { tPval = tval / allB * 150; retStr += "<font color='" + CalcEffColor(effsArr[0], 'eff')[0] + "'>" + (tPval / effsArr[0] * 100).toFixed(2) + "%" + (lang === "ru" ? " от эффективности" : " of eff. rating") + " (" + tPval.toFixed(2) + ")</font><br>"; tPval = Math.min(tval / allB, 2.2) * 100 + (6 - Math.min(tAvgL, 6)) * -60; retStr += "<font color='" + CalcEffColor(effsArr[2], 'wn6')[0] + "'>" + (tPval / effsArr[2] * 100).toFixed(2) + "%" + (lang === "ru" ? " от рейтинга WN6" : " of WN6 rating") + " (" + tPval.toFixed(2) + ")</font>"; } return retStr; } function getNewScriptVersion(response) { var regexp = /<b>Version:<\/b>[^0-9\.]+([0-9\.]+)[^0-9\.]+<\/p>/gi, res = regexp.exec(response); if (res.length > 0) { if (res[1] !== scriptVersion) popup(lang === "ru" ? "Вышла новая версия скрипта " + res[1] + ".<br>Пожалуйста, обновите скрипт." : "New script version " + res[1] + " enable.<br>Please upgrade script.", false, false); var now = new Date(); var time = now.getTime(); time += 3600 * 6 * 1000; now.setTime(time); document.cookie = 'usScriptVer=' + res[1] + '; expires=' + now.toGMTString() + '; domain=.' + window.location.host.toString() + '; path=/ru/community/;'; } } function create_expanders(bA, lang, settings, NewBattles) { //Добавляем фиктивные блоки для перемещения разделов var spContent = document.getElementsByClassName("l-content")[0], spDivFake = document.createElement('div'); spDivFake.setAttribute('style', 'display:none;'); spDivFake.setAttribute('div-cur-pos', 0); spContent.appendChild(spDivFake); spDivFake = document.createElement('div'); spDivFake.setAttribute('style', 'display:none;'); spDivFake.setAttribute('div-cur-pos', 1); spContent.appendChild(spDivFake); spDivFake = document.createElement('div'); spDivFake.setAttribute('style', 'display:none;'); spDivFake.setAttribute('div-cur-pos', 2); spContent.appendChild(spDivFake); spDivFake = document.createElement('div'); spDivFake.setAttribute('style', 'display:none;'); spDivFake.setAttribute('div-cur-pos', 3); spContent.appendChild(spDivFake); spDivFake = document.createElement('div'); spDivFake.setAttribute('style', 'display:none;'); spDivFake.setAttribute('div-cur-pos', 4); spContent.appendChild(spDivFake); spDivFake = document.createElement('div'); spDivFake.setAttribute('style', 'display:none;'); spDivFake.setAttribute('div-cur-pos', 5); spContent.appendChild(spDivFake); spDivFake = document.createElement('div'); spDivFake.setAttribute('style', 'display:none;'); spDivFake.setAttribute('div-cur-pos', 6); spContent.appendChild(spDivFake); spDivFake = document.createElement('div'); spDivFake.setAttribute('style', 'display:none;'); spDivFake.setAttribute('div-cur-pos', 7); spContent.appendChild(spDivFake); spDivFake = document.createElement('div'); spDivFake.setAttribute('style', 'display:none;'); spDivFake.setAttribute('div-cur-pos', 8); spContent.appendChild(spDivFake); spDivFake = document.createElement('div'); spDivFake.setAttribute('style', 'display:none;'); spDivFake.setAttribute('div-cur-pos', 9); spContent.appendChild(spDivFake); spDivFake = document.createElement('div'); spDivFake.setAttribute('style', 'display:none;'); spDivFake.setAttribute('div-cur-pos', 10); spContent.appendChild(spDivFake); //Перемещаем блок новых боев var spMet = document.getElementsByClassName("b-user-block-new-battles")[0]; if (spMet && settings.newBat && settings.newBat[2]) { spDivFake = document.querySelector('[div-cur-pos="' + settings.newBat[2] + '"]'); var spNewBlock = document.createElement('div'); spNewBlock.className="b-userblock-wrpr"; spNewBlock.setAttribute('style', 'margin: 0px;'); spContent.insertBefore(spNewBlock, spDivFake); spNewBlock.appendChild(spMet.previousElementSibling); spNewBlock.appendChild(spMet); } //Перемещаем блок рейтингов эффективности var spMet = document.getElementsByClassName("b-user-block-eff-ratings")[0]; if (spMet && settings.efRat && settings.efRat[2]) { spDivFake = document.querySelector('[div-cur-pos="' + settings.efRat[2] + '"]'); var spNewBlock = document.createElement('div'); spNewBlock.className="b-userblock-wrpr"; spNewBlock.setAttribute('style', 'margin: 0px;'); spContent.insertBefore(spNewBlock, spDivFake); spNewBlock.appendChild(spMet.previousElementSibling); spNewBlock.appendChild(spMet); } //Перемещаем блок сравнения статистики var spMet = document.getElementsByClassName("b-user-block-compare-stat")[0]; if (spMet && settings.plComp && settings.plComp[2]) { spDivFake = document.querySelector('[div-cur-pos="' + settings.plComp[2] + '"]'); var spNewBlock = document.createElement('div'); spNewBlock.className="b-userblock-wrpr"; spNewBlock.setAttribute('style', 'margin: 0px;'); spContent.insertBefore(spNewBlock, spDivFake); spNewBlock.appendChild(spMet.previousElementSibling); spNewBlock.appendChild(spMet); } //Добавляем раздел для сворачивания блока спидометров var spMet = document.getElementsByClassName("b-user-block__sparks")[0], spDiv = document.createElement('div'), spA = document.createElement('a'), spSp = document.createElement('span'); var blBool = settings.speed && (toFl(settings.speed[1]) !== 0 || toFl(settings.speed[0]) !== 0); spSp.className = "b-fake-link"; spSp.innerHTML = blBool ? (lang === "ru" ? 'Развернуть блок спидометров' : 'Expand speedometers') : (lang === "ru" ? 'Свернуть блок спидометров' : 'Collapse speedometers'); spA.appendChild(spSp); spA.className = "b-vertical-arrow sh-speedometr" + (blBool ? "" : " b-vertical-arrow__open"); spA.setAttribute('curSt', blBool ? 1 : 0); spA.setAttribute('curStText', (lang === "ru" ? 'спидометров' : 'speedometers')); spA.href = "#"; spDiv.appendChild(spA); spDiv.setAttribute('style', 'text-align: right; margin-right: 15px;' + (blBool ? "padding-top: 10px; padding-bottom: 10px;" : "")); if (settings.speed && settings.speed[2]) { spDivFake = document.querySelector('[div-cur-pos="' + settings.speed[2] + '"]'); var spNewBlock = document.createElement('div'); spNewBlock.className="b-userblock-wrpr"; spNewBlock.setAttribute('style', 'margin: 0px;'); spContent.insertBefore(spNewBlock, spDivFake); spNewBlock.appendChild(spDiv); spNewBlock.appendChild(spMet); } else spMet.parentNode.insertBefore(spDiv, spMet); if (settings.speed && toFl(settings.speed[1]) !== 0) spDiv.setAttribute('style', 'display:none;'); if (blBool) spDiv.nextElementSibling.setAttribute('style', 'display:none;'); //Добавляем раздел для сворачивания блока личных данных (показывается только себе) var pLink = document.getElementsByClassName("b-personal-link")[0]; if (pLink) { var plDiv = pLink.parentNode.parentNode, spDiv1 = document.createElement('div'), spA1 = document.createElement('a'), spSp1 = document.createElement('span'); blBool = settings.pers && (toFl(settings.pers[1]) !== 0 || toFl(settings.pers[0]) !== 0); spSp1.className = "b-fake-link"; spSp1.innerHTML = blBool ? (lang === "ru" ? 'Развернуть блок "Личные данные"' : 'Expand "Personal"') : (lang === "ru" ? 'Свернуть блок "Личные данные"' : 'Collapse "Personal"'); spA1.appendChild(spSp1); spA1.className = "b-vertical-arrow sh-speedometr" + (blBool ? "" : " b-vertical-arrow__open"); spA1.setAttribute('curSt', blBool ? 1 : 0); spA1.setAttribute('curStText', (lang === "ru" ? '"Личные данные"' : '"Personal"')); spA1.href = "#"; spDiv1.appendChild(spA1); spDiv1.setAttribute('style', 'text-align: right; margin-right: 15px;' + (blBool ? "padding-top: 10px; padding-bottom: 10px;" : "")); if (settings.pers && settings.pers[2]) { spDivFake = document.querySelector('[div-cur-pos="' + settings.pers[2] + '"]'); spNewBlock = document.createElement('div'); spNewBlock.className="b-userblock-wrpr"; spNewBlock.setAttribute('style', 'margin: 0px;'); spContent.insertBefore(spNewBlock, spDivFake); spNewBlock.appendChild(spDiv1); spNewBlock.appendChild(plDiv); } else plDiv.parentNode.insertBefore(spDiv1, plDiv); if (settings.pers && toFl(settings.pers[1]) !== 0) spDiv1.setAttribute('style', 'display:none;'); if (blBool) spDiv1.nextElementSibling.setAttribute('style', 'display:none;'); } //Добавляем раздел для сворачивания блока диаграмм var spMet2 = document.getElementsByClassName("b-diagrams-sector")[0], spDiv2 = document.createElement('div'), spA2 = document.createElement('a'), spSp2 = document.createElement('span'); blBool = settings.diagr && (toFl(settings.diagr[1]) !== 0 || toFl(settings.diagr[0]) !== 0); spSp2.className = "b-fake-link"; spSp2.innerHTML = blBool ? (lang === "ru" ? 'Развернуть блок диаграм' : 'Expand diargams') : (lang === "ru" ? 'Свернуть блок диаграм' : 'Collapse diargams'); spA2.appendChild(spSp2); spA2.className = "b-vertical-arrow sh-speedometr" + (blBool ? "" : " b-vertical-arrow__open"); spA2.setAttribute('curSt', blBool ? 1 : 0); spA2.setAttribute('curStText', (lang === "ru" ? 'диаграм' : 'diargams')); spA2.href = "#"; spDiv2.appendChild(spA2); spDiv2.setAttribute('style', 'text-align: right; margin-right: 15px;' + (blBool ? "padding-top: 10px; padding-bottom: 10px;" : "")); if (settings.diagr && settings.diagr[2]) { spDivFake = document.querySelector('[div-cur-pos="' + settings.diagr[2] + '"]'); var spMet2prev = spMet2.nextElementSibling; spContent.insertBefore(spDiv2, spDivFake); spContent.insertBefore(spMet2, spDivFake); spContent.insertBefore(spMet2prev, spDivFake); } else spMet2.parentNode.insertBefore(spDiv2, spMet2); if (settings.diagr && toFl(settings.diagr[1]) !== 0) spDiv2.setAttribute('style', 'display:none;'); if (blBool) { spDiv2.nextElementSibling.setAttribute('style', 'display:none;'); spDiv2.nextElementSibling.nextElementSibling.setAttribute('style', 'display:none;'); } //Добавляем раздел для сворачивания блока "Общее" var spMet3 = document.getElementsByClassName("b-result-classes")[0].parentNode, spDiv3 = document.createElement('div'), spA3 = document.createElement('a'), spSp3 = document.createElement('span'); blBool = settings.common && (toFl(settings.common[1]) !== 0 || toFl(settings.common[0]) !== 0); spSp3.className = "b-fake-link"; spSp3.innerHTML = blBool ? (lang === "ru" ? 'Развернуть блок "Общее"' : 'Expand "Common"') : (lang === "ru" ? 'Свернуть блок "Общее"' : 'Collapse "Common"'); spA3.appendChild(spSp3); spA3.className = "b-vertical-arrow sh-speedometr" + (blBool ? "" : " b-vertical-arrow__open"); spA3.setAttribute('curSt', blBool ? 1 : 0); spA3.setAttribute('curStText', (lang === "ru" ? '"Общее"' : '"Common"')); spA3.href = "#"; spDiv3.appendChild(spA3); spDiv3.setAttribute('style', 'text-align: right; margin-right: 15px;' + (blBool ? "padding-top: 10px; padding-bottom: 10px;" : "")); if (settings.common && settings.common[2]) { spDivFake = document.querySelector('[div-cur-pos="' + settings.common[2] + '"]'); var spMet3prev = spMet3.nextElementSibling; spContent.insertBefore(spDiv3, spDivFake); spContent.insertBefore(spMet3, spDivFake); spContent.insertBefore(spMet3prev, spDivFake); } else spMet3.parentNode.insertBefore(spDiv3, spMet3); if (settings.common && toFl(settings.common[1]) !== 0) spDiv3.setAttribute('style', 'display:none;'); if (blBool) { spDiv3.nextElementSibling.setAttribute('style', 'display:none;'); spDiv3.nextElementSibling.nextElementSibling.setAttribute('style', 'display:none;'); } //Добавляем раздел для сворачивания блока рейтингов var spMet5 = document.getElementById("js-knockout-ratings"), spDiv5 = document.createElement('div'), spA5 = document.createElement('a'), spSp5 = document.createElement('span'); blBool = settings.rat && (toFl(settings.rat[1]) !== 0 || toFl(settings.rat[0]) !== 0); spSp5.className = "b-fake-link"; spSp5.innerHTML = blBool ? (lang === "ru" ? 'Развернуть блок "Рейтинги"' : 'Expand "Ratings"') : (lang === "ru" ? 'Свернуть блок "Рейтинги"' : 'Collapse "Ratings"'); spA5.appendChild(spSp5); spA5.className = "b-vertical-arrow sh-speedometr" + (blBool ? "" : " b-vertical-arrow__open"); spA5.setAttribute('curSt', blBool ? 1 : 0); spA5.setAttribute('curStText', (lang === "ru" ? '"Рейтинги"' : '"Ratings"')); spA5.href = "#"; spDiv5.appendChild(spA5); spDiv5.setAttribute('style', 'text-align: right; margin-right: 15px;' + (blBool ? "padding-top: 10px; padding-bottom: 10px;" : "")); if (settings.rat && settings.rat[2]) { spDivFake = document.querySelector('[div-cur-pos="' + settings.rat[2] + '"]'); var spMet5prev = spMet5.nextElementSibling; spContent.insertBefore(spDiv5, spDivFake); spContent.insertBefore(spMet5, spDivFake); spContent.insertBefore(spMet5prev, spDivFake); } else spMet5.parentNode.insertBefore(spDiv5, spMet5); if (settings.rat && toFl(settings.rat[1]) !== 0) spDiv5.setAttribute('style', 'display:none;'); if (blBool) { spDiv5.nextElementSibling.setAttribute('style', 'display:none;'); spDiv5.nextElementSibling.nextElementSibling.setAttribute('style', 'display:none;'); } //Добавляем раздел для сворачивания блока техники var spMet5 = document.getElementById("js-vehicle-details-template"), spDiv5 = document.createElement('div'), spA5 = document.createElement('a'), spSp5 = document.createElement('span'); blBool = settings.veh && (toFl(settings.veh[1]) !== 0 || toFl(settings.veh[0]) !== 0); spSp5.className = "b-fake-link"; spSp5.innerHTML = blBool ? (lang === "ru" ? 'Развернуть блок "Техника"' : 'Expand "Vehicles"') : (lang === "ru" ? 'Свернуть блок "Техника"' : 'Collapse "Vehicles"'); spA5.appendChild(spSp5); spA5.className = "b-vertical-arrow sh-speedometr" + (blBool ? "" : " b-vertical-arrow__open"); spA5.setAttribute('curSt', blBool ? 1 : 0); spA5.setAttribute('curStText', (lang === "ru" ? '"Техника"' : '"Vehicles"')); spA5.href = "#"; spDiv5.appendChild(spA5); spDiv5.setAttribute('style', 'text-align: right; margin-right: 15px;' + (blBool ? "padding-top: 10px; padding-bottom: 10px;" : "")); if (settings.veh && settings.veh[2]) { spDivFake = document.querySelector('[div-cur-pos="' + settings.veh[2] + '"]'); var spMet5prev = spMet5.nextElementSibling; spContent.insertBefore(spDiv5, spDivFake); spContent.insertBefore(spMet5.previousElementSibling, spDivFake); spContent.insertBefore(spMet5, spDivFake); spContent.insertBefore(spMet5prev, spDivFake); } else spMet5.parentNode.insertBefore(spDiv5, spMet5.previousElementSibling); if (settings.veh && toFl(settings.veh[1]) !== 0) spDiv5.setAttribute('style', 'display:none;'); var utanks = document.createElement('div'); utanks.innerHTML = "<a href='#' id='show-tanks-rating' style='padding-left:5px;'>Показать рейтинги танков</a>\ <div class='b-user-info clearfix'>\ <div class='b-user-block_left-column' id='bestTanksPR'></div>\ <div class='b-user-block_right-column' id='loseTanksPR'></div>\ <div class='b-user-block_left-column' id='bestTanksWN8'></div>\ <div class='b-user-block_right-column' id='loseTanksWN8'></div>\ </div>"; spMet5.parentNode.insertBefore(utanks, spMet5.nextElementSibling); if (NewBattles) { var onb = document.createElement('div'); onb.setAttribute('style', 'padding-top: 10px; padding-bottom: 10px; float:none;'); onb.innerHTML = "<input type='checkbox' name='new' id='js-nb-ch'> " + ((lang === "ru") ? "только новые бои" : "only new battles"); var sttab = document.getElementsByClassName("t-profile__vehicle")[0]; sttab.parentNode.insertBefore(onb, sttab); } if (blBool) { spDiv5.nextElementSibling.setAttribute('style', 'display:none;'); spDiv5.nextElementSibling.nextElementSibling.nextElementSibling.setAttribute('style', 'display:none;'); spDiv5.nextElementSibling.nextElementSibling.nextElementSibling.nextElementSibling.setAttribute('style', 'display:none;'); if (NewBattles) spDiv5.nextElementSibling.nextElementSibling.nextElementSibling.nextElementSibling.nextElementSibling.setAttribute('style', 'display:none;'); } //Добавляем раздел для сворачивания блока достижений var spMet6 = document.getElementsByClassName("js-all-achievements")[0], spDiv6 = document.createElement('div'), spA6 = document.createElement('a'), spSp6 = document.createElement('span'); blBool = settings.achiev && (toFl(settings.achiev[1]) !== 0 || toFl(settings.achiev[0]) !== 0); spSp6.className = "b-fake-link"; spSp6.innerHTML = blBool ? (lang === "ru" ? 'Развернуть блок "Достижения"' : 'Expand "Achievements"') : (lang === "ru" ? 'Свернуть блок "Достижения"' : 'Collapse "Achievements"'); spA6.appendChild(spSp6); spA6.className = "b-vertical-arrow sh-speedometr" + (blBool ? "" : " b-vertical-arrow__open"); spA6.setAttribute('curSt', blBool ? 1 : 0); spA6.setAttribute('curStText', (lang === "ru" ? '"Достижения"' : '"Achievements"')); spA6.href = "#"; spDiv6.appendChild(spA6); spDiv6.setAttribute('style', 'text-align: right; margin-right: 15px;' + (blBool ? "padding-top: 10px; padding-bottom: 10px;" : "")); if (settings.achiev && settings.achiev[2]) { spDivFake = document.querySelector('[div-cur-pos="' + settings.achiev[2] + '"]'); var spMet6prev = spMet6.nextElementSibling; spContent.insertBefore(spDiv6, spDivFake); spContent.insertBefore(spMet6, spDivFake); spContent.insertBefore(spMet6prev, spDivFake); } else spMet6.parentNode.insertBefore(spDiv6, spMet6); if (settings.achiev && toFl(settings.achiev[1]) !== 0) spDiv6.setAttribute('style', 'display:none;'); if (blBool) { spDiv6.nextElementSibling.setAttribute('style', 'display:none;'); spDiv6.nextElementSibling.nextElementSibling.setAttribute('style', 'display:none;'); } //Добавляем раздел для сворачивания блока аллеи славы (показывается не у всех) var spMet7 = document.getElementById("js-knockout-fame-points"), spDiv7 = document.createElement('div'), spA7 = document.createElement('a'), spSp7 = document.createElement('span'), curStVer = 1; if (typeof(spMet7) == 'undefined' || spMet7 == null) { spMet7 = document.getElementsByClassName("b-fame-message")[0]; if (typeof(spMet7) != 'undefined' && spMet7 != null) spMet7 = spMet7.parentNode; curStVer = 2; } if (typeof(spMet7) != 'undefined' && spMet7 != null) { blBool = settings.fame && (toFl(settings.fame[1]) !== 0 || toFl(settings.fame[0]) !== 0); spSp7.className = "b-fake-link"; spSp7.innerHTML = blBool ? (lang === "ru" ? 'Развернуть блок "Аллея славы"' : 'Expand "Hall of Fame"') : (lang === "ru" ? 'Свернуть блок "Аллея славы"' : 'Collapse "Hall of fame"'); spA7.appendChild(spSp7); spA7.className = "b-vertical-arrow sh-speedometr" + (blBool ? "" : " b-vertical-arrow__open"); spA7.setAttribute('curSt', blBool ? 1 : 0); spA7.setAttribute('curStText', (lang === "ru" ? '"Аллея славы"' : '"Hall of fame"')); spA7.setAttribute('curStVer', curStVer); spA7.href = "#"; spDiv7.appendChild(spA7); spDiv7.setAttribute('style', 'text-align: right; margin-right: 15px;' + (blBool ? "padding-top: 10px; padding-bottom: 10px;" : "")); if (settings.fame && settings.fame[2] && curStVer === 1) { spDivFake = document.querySelector('[div-cur-pos="' + settings.fame[2] + '"]'); var spMet7prev = spMet7.nextElementSibling.nextElementSibling.nextElementSibling; spContent.insertBefore(spDiv7, spDivFake); spContent.insertBefore(spMet7.previousElementSibling, spDivFake); spContent.insertBefore(spMet7, spDivFake); spContent.insertBefore(spMet7prev, spDivFake); } else if (settings.fame && settings.fame[2] && curStVer === 2) { spDivFake = document.querySelector('[div-cur-pos="' + settings.fame[2] + '"]'); var spMet7prev = spMet7.nextElementSibling; spContent.insertBefore(spDiv7, spDivFake); spContent.insertBefore(spMet7, spDivFake); spContent.insertBefore(spMet7prev, spDivFake); } else if (curStVer === 1) { spMet7.parentNode.insertBefore(spDiv7, spMet7.previousElementSibling); } else if (curStVer === 2) { spMet7.parentNode.insertBefore(spDiv7, spMet7); } if (settings.fame && toFl(settings.fame[1]) !== 0) spDiv7.setAttribute('style', 'display:none;'); if (blBool) { spDiv7.nextElementSibling.setAttribute('style', 'display:none;'); if (curStVer === 1) { spDiv7.nextElementSibling.nextElementSibling.setAttribute('style', 'display:none;'); spDiv7.nextElementSibling.nextElementSibling.nextElementSibling.nextElementSibling.nextElementSibling.setAttribute('style', 'display:none;'); } if (curStVer === 2) spDiv7.nextElementSibling.nextElementSibling.setAttribute('style', 'display:none;'); } } if (settings.compare/* && window.location.href.indexOf(settings.UserID) === -1*/) { var fake_div = document.createElement("div"); fake_div.innerHTML = "<li><a onclick='WriteCompareStat();' style='cursor: pointer;'>" + ((lang === "ru") ? 'Обновить "мои" данные' : 'Refresh "my" stat.') + "</a></li>"; document.getElementsByClassName("b-context-menu-list__bottomindent")[0].appendChild(fake_div); } var script = document.createElement("script"); script.type = "text/javascript"; script.textContent = "function popup(message, autoHide, autoReload) {\ var maskHeight = $(document).height();\ var maskWidth = $(window).width();\ var dialogTop = (maskHeight / 3) - ($('#dialog-box').height());\ var dialogLeft = (maskWidth / 2) - ($('#dialog-box').width() / 2);\ $('#dialog-overlay').css({\ height: maskHeight,\ width: maskWidth\ }).show();\ $('#dialog-box').show();\ $('#dialog-message').html(message);\ if (autoHide)\ setTimeout(function() {\ $('#dialog-overlay, #dialog-box').hide();\ }, 2000);\ if (autoReload)\ setTimeout(function() {\ window.location.reload();\ }, 2000);\ }\ jQuery(document).ready(function() {\ function bestUserTanks() {\ var tanksArr = [],\ tanksArrwn8 = [],\ c;\ $('.t-profile_tankstype__item').each(function() {\ var tName = $(this).children()[0].getElementsByClassName('b-name-vehicle')[0].innerHTML,\ prRat = $(this).attr('PR');\ wn8 = $(this).attr('WN8');\ tanksArr.push({\ 'name': tName,\ 'pr': prRat\ });\ tanksArrwn8.push({\ 'name': tName,\ 'wn8': wn8\ });\ });\ for (var i = 0; i < tanksArr.length; i++)\ for (var j = i; j < tanksArr.length; j++)\ if (parseFloat(tanksArr[i].pr) < parseFloat(tanksArr[j].pr)) {\ c = tanksArr[i];\ tanksArr[i] = tanksArr[j];\ tanksArr[j] = c;\ }\ for (var i = 0; i < tanksArrwn8.length; i++)\ for (var j = i; j < tanksArrwn8.length; j++)\ if (parseFloat(tanksArrwn8[i].wn8) < parseFloat(tanksArrwn8[j].wn8)) {\ c = tanksArrwn8[i];\ tanksArrwn8[i] = tanksArrwn8[j];\ tanksArrwn8[j] = c;\ }\ var bText = '<h3>Лучшие танки игрока (PR)</h3><ul>',\ lText = '<h3>Худшие танки игрока (PR)</h3><ul>';\ for (var i = 0; i < 5; i++) {\ bText += '<li style=\"color: #' + CalcEffColor(parseFloat(tanksArr[i].pr), 'pr')[0] + ';\">' + (i + 1) + '. ' + tanksArr[i].name + ' - ' + tanksArr[i].pr + '</li>';\ lText += '<li style=\"color: #' + CalcEffColor(parseFloat(tanksArr[tanksArr.length - 1 - i].pr), 'pr')[0] + ';\">' + (tanksArr.length - 1 - i) + '. ' + tanksArr[tanksArr.length - 1 - i].name + ' - ' + tanksArr[tanksArr.length - 1 - i].pr + '</li>';\ }\ bText += '</ul><br>';\ lText += '</ul><br>';\ $('#bestTanksPR').html(bText);\ $('#loseTanksPR').html(lText);\ var bText = '<h3>Лучшие танки игрока (WN8)</h3><ul>',\ lText = '<h3>Худшие танки игрока (WN8)</h3><ul>';\ for (var i = 0; i < 5; i++) {\ bText += '<li style=\"color: #' + CalcEffColor(parseFloat(tanksArrwn8[i].wn8), 'wn8')[0] + ';\">' + (i + 1) + '. ' + tanksArrwn8[i].name + ' - ' + parseFloat(tanksArrwn8[i].wn8).toFixed(2) + '</li>';\ lText += '<li style=\"color: #' + CalcEffColor(parseFloat(tanksArrwn8[tanksArrwn8.length - 1 - i].wn8), 'wn8')[0] + ';\">' + (tanksArrwn8.length - 1 - i) + '. ' + tanksArrwn8[tanksArrwn8.length - 1 - i].name + ' - ' + parseFloat(tanksArrwn8[tanksArrwn8.length - 1 - i].wn8).toFixed(2) + '</li>';\ }\ bText += '</ul><br>';\ lText += '</ul><br>';\ $('#bestTanksWN8').html(bText);\ $('#loseTanksWN8').html(lText);\ }\ $('.t-profile_tankstype__item').click(function() {\ var me = this;\ function tankPRRating() {\ if(!!$(me).attr('PR')) {\ if ($($(me).next().children()[0]).find('.us-pr-trating').length === 0) {\ $($(me).next().children()[0]).prepend('<div style=\"float:left;width:33%; text-align: center;\"><h3 class=\"us-pr-trating\"></h3></div>')\ }\ $($(me).next().children()[0]).find('.us-pr-trating').attr('style', 'text-align: center; color: #' + CalcEffColor($(me).attr('PR'), 'pr')[0] + ';'); \ $($(me).next().children()[0]).find('.us-pr-trating').html('Рейтинг нагиба: ' + parseInt($(me).attr('PR'))); \ $($(me).next().children()[0]).find('.us-pr-trating').attr('pr', $(me).attr('PR'));\ }\ }\ function tankWN8Rating() {\ if(!!$(me).attr('WN8')) {\ if ($($(me).next().children()[0]).find('.us-wn8-trating').length === 0) {\ $($(me).next().children()[0]).prepend('<div style=\"float:left;width:33%; text-align: center;\"><h3 class=\"us-wn8-trating\"></h3></div>')\ }\ $($(me).next().children()[0]).find('.us-wn8-trating').attr('style', 'text-align: center; color: #' + CalcEffColor($(me).attr('WN8'), 'wn8')[0] + ';'); \ $($(me).next().children()[0]).find('.us-wn8-trating').html('WN8 Рейтинг: ' + parseInt($(me).attr('WN8'))); \ $($(me).next().children()[0]).find('.us-wn8-trating').attr('wn8', $(me).attr('WN8'));\ }\ }\ setTimeout(tankPRRating, 1000);\ setTimeout(tankWN8Rating, 1000);\ });\ $('#show-tanks-rating').click(function(event) {\ event.preventDefault();\ bestUserTanks();\ });\ $('a.btn-ok, #dialog-overlay, #dialog-box').click(function() {\ $('#dialog-overlay, #dialog-box').hide();\ return false;\ });\ $(window).resize(function() {\ if (!$('#dialog-box').is(':hidden')) popup();\ });\ $('.sh-speedometr').click(function(event) {\ event.preventDefault();\ if ($(this).attr('curStText') === '\"Достижения\"' || $(this).attr('curStText') === '\"Achievements\"') {\ var achDiv = $('.js-all-achievements');\ if (parseInt($(this).attr('curSt')) === 0) {\ achDiv.slideUp('slow');\ $(this).attr('curSt', 1);\ $(this).removeClass('b-vertical-arrow__open');\ $(this).children()[0].innerHTML = (document.title.indexOf('Профиль игрока') > -1 ? 'Развернуть блок ' : 'Expand ') + $(this).attr('curStText');\ $(this).parent().css('padding-top', '10px');\ $(this).parent().css('padding-bottom', '10px');\ $(this).parent().prev().hide();\ $(this).parent().next().next().hide();\ } else {\ achDiv.slideDown('slow');\ $(this).attr('curSt', 0);\ $(this).addClass('b-vertical-arrow__open');\ $(this).children()[0].innerHTML = (document.title.indexOf('Профиль игрока') > -1 ? 'Свернуть блок ' : 'Collapse ') + $(this).attr('curStText');\ $(this).parent().css('padding-top', '0');\ $(this).parent().css('padding-bottom', '0');\ $(this).parent().prev().show();\ $(this).parent().next().next().show();\ }\ } else {\ if (parseInt($(this).attr('curSt')) === 0) {\ if ($(this).attr('curStText') === '\"Общее\"' || $(this).attr('curStText') === 'диаграм' || $(this).attr('curStText') === '\"Common\"' || $(this).attr('curStText') === 'diargams')\ $(this).parent().next().next().hide();\ $(this).parent().css('padding-top', '10px');\ $(this).parent().css('padding-bottom', '10px');\ if ($(this).attr('curStText') === '\"Рейтинги\"' || $(this).attr('curStText') === '\"Ratings\"') {\ $(this).parent().next().next().hide();\ }\ if ($(this).attr('curStText') === '\"Техника\"') {\ $(this).parent().next().next().next().hide();\ $(this).parent().next().next().next().next().hide();\ $(this).parent().next().next().next().next().next().slideUp('slow');\ }\ if ($(this).attr('curStText') === '\"Vehicles\"') {\ $(this).parent().prev().hide();\ $(this).parent().prev().prev().hide();\ }\ if ($(this).attr('curStText') === '\"Аллея славы\"' && $(this).attr('curStVer') === '1') {\ $(this).parent().next().next().slideUp('slow');\ $(this).parent().next().next().next().hide();\ $(this).parent().next().next().next().next().hide();\ }\ if ($(this).attr('curStText') === '\"Аллея славы\"' && $(this).attr('curStVer') === '2') {\ $(this).parent().next().next().slideUp('slow');\ }\ $(this).parent().next().slideUp('slow');\ $(this).attr('curSt', 1);\ $(this).removeClass('b-vertical-arrow__open');\ $(this).children()[0].innerHTML = (document.title.indexOf('Профиль игрока') > -1 ? 'Развернуть блок ' : 'Expand ') + $(this).attr('curStText');\ } else {\ if ($(this).attr('curStText') === '\"Общее\"' || $(this).attr('curStText') === 'диаграм' || $(this).attr('curStText') === '\"Common\"' || $(this).attr('curStText') === 'diargams')\ $(this).parent().next().next().show();\ $(this).parent().css('padding-top', '0');\ $(this).parent().css('padding-bottom', '0');\ if ($(this).attr('curStText') === '\"Рейтинги\"' || $(this).attr('curStText') === '\"Ratings\"') {\ $(this).parent().next().next().show();\ }\ if ($(this).attr('curStText') === '\"Техника\"') {\ $(this).parent().next().next().next().show();\ $(this).parent().next().next().next().next().show();\ $(this).parent().next().next().next().next().next().slideDown('slow');\ }\ if ($(this).attr('curStText') === '\"Vehicles\"') {\ $(this).parent().prev().show();\ $(this).parent().prev().prev().show();\ }\ if ($(this).attr('curStText') === '\"Аллея славы\"' && $(this).attr('curStVer') === '1') {\ $(this).parent().next().next().slideDown('slow');\ $(this).parent().next().next().next().show();\ $(this).parent().next().next().next().next().show();\ }\ if ($(this).attr('curStText') === '\"Аллея славы\"' && $(this).attr('curStVer') === '2') {\ $(this).parent().next().next().slideDown('slow');\ }\ $(this).parent().next().slideDown('slow');\ $(this).attr('curSt', 0);\ $(this).addClass('b-vertical-arrow__open');\ $(this).children()[0].innerHTML = (document.title.indexOf('Профиль игрока') > -1 ? 'Свернуть блок ' : 'Collapse ') + $(this).attr('curStText');\ }\ }\ });\ $('#autor-pay').click(function(event) {\ event.preventDefault();\ if ($(this).hasClass('b-vertical-arrow__open')) {\ $(this).removeClass('b-vertical-arrow__open');\ $('.Untext').slideUp();\ } else {\ $(this).addClass('b-vertical-arrow__open');\ $('.Untext').slideDown();\ }\ });\ $('.settings-row').click(function(event) {\ event.preventDefault();\ if ($(this).hasClass('b-vertical-arrow__open')) {\ $(this).parent().parent().parent().attr('cur-pos', parseInt($(this).parent().parent().parent().attr('cur-pos')) - 1);\ $(this).parent().parent().parent().prev().attr('cur-pos', parseInt($(this).parent().parent().parent().attr('cur-pos')) + 1);\ } else {\ $(this).parent().parent().parent().attr('cur-pos', parseInt($(this).parent().parent().parent().attr('cur-pos')) + 1);\ $(this).parent().parent().parent().next().attr('cur-pos', parseInt($(this).parent().parent().parent().attr('cur-pos')) - 1);\ }\ FormatUsSetTable();\ });\ $('#js-nb-ch').change(function() {\ if ($(this).is(':checked')) {\ $('.js-tank-head-row').hide();\ $('.js-tank-row').hide();\ $('.js-nb-tank-row').show();\ } else {\ $('.js-tank-head-row').show();\ $('.js-tank-row').show()\ }\ });\ $('.us-close-settings').click(function(event) {\ event.preventDefault();\ $('#us-settings-overlay').hide();\ $('#us-settings-block').hide();\ });\ $('#us-settings-a').click(function(event) {\ event.preventDefault();\ $('#us-settings-overlay').show();\ $('#us-settings-block').show();\ });\ $('#us-settings-current-page').change(function(event) {\ event.preventDefault();\ if ($(this).is(':checked')) {\ $('#us-settings-compare-page').val(window.location.href)\ } else {\ $('#us-settings-compare-page').val('');\ }\ });\ $('#us-settings-compare').change(function(event) {\ if ($(this).is(':checked')) {\ $('#us-my-compare-block').show()\ } else {\ $('#us-my-compare-block').hide()\ }\ });\ $('#us-settings-save').click(function(event) {\ event.preventDefault();\ var uBls = $('.us-set-block'),\ saveC = '';\ for (var i = 0; i < uBls.length; i++) {\ saveC += uBls[i].getAttribute('btype') + ';' + (uBls[i].cells[1].getElementsByTagName('input')[0].checked ? '1' : '0') + ';' + (uBls[i].cells[2].getElementsByTagName('input')[0].checked ? '1' : '0') + ';' + i + '/';\ }\ var padr = $('#us-settings-compare-page').val(),\ cmpD = $('#us-settings-compare')[0].checked;\ if (!padr) padr = 'x';\ if (cmpD && padr.length === 0) return false;\ saveC += '|';\ saveC += (cmpD ? '1' : '0') + ';' + padr;\ var gtype = $('input[name=gtype]:checked').val();\ saveC += '|';\ saveC += gtype;\ saveC += '|';\ $('.us_st_name').each(function() {\ saveC += $(this).attr('uid') + ';' + $(this).val() + '/';\ });\ SetLSData('usSettings', saveC, '01-Jan-2031 00:00:00 GMT');\ $('#us-settings-overlay').hide();\ $('#us-settings-block').hide();\ window.location.reload();\ });\ $('.us-show-medals').click(function(event) {\ event.preventDefault();\ if ($(this).hasClass('b-vertical-arrow__open')) {\ $(this).removeClass('b-vertical-arrow__open');\ $(this).parent().next().slideUp('slow');\ } else {\ $(this).addClass('b-vertical-arrow__open');\ $(this).parent().next().slideDown('slow');\ }\ });\ $('#WriteStat').click(function(event) {\ event.preventDefault();\ WriteStat();\ });\ $('input[name=ggtype]').change(function(event) {\ var gtype = $('input[name=ggtype]:checked').val();\ $('div[gtype=bat]').show();\ $('div[gtype=date]').show();\ if (gtype === 'bat') $('div[gtype=date]').hide();\ if (gtype === 'date') $('div[gtype=bat]').hide();\ });\ $('.us-remove-stat').click(function(event) {\ event.preventDefault();\ if (confirm('Вы действительно хотите удалить сохраненную статистику данного игрока?')) {\ var uid = $(this).attr('uid');\ for (var i = 0; i < 8; i++) {\ localStorage.removeItem('daystat_' + uid + '_' + i)\ }\ window.location.reload();\ }\ });\ $('#g" + settings.gtype + "').click(); " + "$('div[gtype=bat]').show(); $('div[gtype=date]').show(); var ggtype = '" + settings.gtype + "'; if (ggtype === 'bat') $('div[gtype=date]').hide(); if (ggtype === 'date') $('div[gtype=bat]').hide();\ });"; document.body.appendChild(script); } function setup_script(script_name) { var script = document.createElement("script"); script.type = "text/javascript"; script.textContent = script_name.toString(); document.body.appendChild(script); } function CalcAvgLev(tanksarr) { var avgL = 0, totalB = 0, tnaSum = 0, expDmg = 0, expSpot = 0, expFrag = 0, expDef = 0, expWinRate = 0, tanks = document.getElementsByClassName("t-profile_tankstype__item"), tbcount, tlev, imgName, tank_Id, tankLevs = { "I": 1, "II": 2, "III": 3, "IV": 4, "V": 5, "VI": 6, "VII": 7, "VIII": 8, "IX": 9, "X": 10 }; var nominalDamage = GetLSData("nominalDamage"), wn8Data = GetLSData("WN8Data"), nominalDamageArr = [], wn8DataArr = [], tankid, nArr; if (nominalDamage) { nominalDamage = eval(nominalDamage); for (i = 0; i < nominalDamage.length; i++) { if (nominalDamage[i].nominalDamage) nominalDamageArr[(nominalDamage[i].id).toLowerCase()] = [ nominalDamage[i].nominalDamage * 1 ]; } } else { xdr.xget("http://www.noobmeter.com/tankListJson/elfx_133054", savenominalDamage); } if (wn8Data) { eval("var allwn8Data =" + wn8Data); for (var key = 0; key < allwn8Data.data.length; key++) { t = allwn8Data.data[key]; wn8DataArr[parseInt(t.IDNum)] = [t.expDamage / 1, t.expSpot / 1, t.expFrag / 1, t.expDef / 1, (t.expWinRate / 100).toFixed(4)]; } } else { xdr.xget("http://www.wnefficiency.net/exp/expected_tank_values_latest.json", saveWN8Data); } for (var i = 0; i < tanks.length; i++) { imgName = (tanks[i].cells[0].getElementsByTagName('img')[0].src.match(/\/[^-]+-([^\/]*)\.png/)[1]).toLowerCase(); tank_Id = parseInt(tanks[i].nextElementSibling.getAttribute('data-vehicle-cd')); if (tanksarr.indexOf(imgName) === -1) tanksarr[imgName] = {}; tbcount = toFl(tanks[i].cells[1].innerHTML); if (nominalDamageArr[imgName]) { if (nominalDamageArr[imgName][0]) tnaSum += tbcount * nominalDamageArr[imgName][0]; } if (wn8DataArr[tank_Id]) { expDmg += tbcount * wn8DataArr[tank_Id][0]; expSpot += tbcount * wn8DataArr[tank_Id][1]; expFrag += tbcount * wn8DataArr[tank_Id][2]; expDef += tbcount * wn8DataArr[tank_Id][3]; expWinRate += tbcount * wn8DataArr[tank_Id][4]; } tlev = tankLevs[tanks[i].cells[0].getElementsByTagName('div')[0].getElementsByTagName('span')[0].innerHTML]; tanksarr[imgName]['tId'] = tank_Id; tanksarr[imgName]['tlev'] = tlev; tanksarr[imgName]['img'] = tanks[i].cells[0].getElementsByTagName('img')[0].src; tanksarr[imgName]['name'] = tanks[i].cells[0].getElementsByClassName('b-name-vehicle')[0].innerHTML; var tcl = tanks[i].parentNode.previousElementSibling.getElementsByTagName('span')[0].getAttribute('class'); tanksarr[imgName]['bcount'] = tbcount; if (tcl.indexOf('lighttank') !== -1) { tanksarr[imgName]['ttype'] = 'ЛТ'; } if (tcl.indexOf('mediumtank') !== -1) { tanksarr[imgName]['ttype'] = 'СТ'; } if (tcl.indexOf('heavytank') !== -1) { tanksarr[imgName]['ttype'] = 'ТТ'; } if (tcl.indexOf('at-spg') !== -1) { tanksarr[imgName]['ttype'] = 'ПТ'; } if (tcl.indexOf('_spg') !== -1) { tanksarr[imgName]['ttype'] = 'САУ'; } totalB += tbcount; avgL += tlev * tbcount; } return [avgL / totalB, tnaSum, expDmg, expSpot, expFrag, expDef, expWinRate, totalB]; } function CalcCompareAvgLev(comparedayArray) { var tnaSum = 0, expDmg = 0, expSpot = 0, expFrag = 0, expDef = 0, expWinRate = 0, wn8Data = GetLSData("WN8Data"), wn8DataArr = [], totalB = 0; if (wn8Data) { eval("var allwn8Data =" + wn8Data); for (var key = 0; key < allwn8Data.data.length; key++) { t = allwn8Data.data[key]; wn8DataArr[parseInt(t.IDNum)] = [t.expDamage / 1, t.expSpot / 1, t.expFrag / 1, t.expDef / 1, (t.expWinRate / 100).toFixed(4)]; } } else { xdr.xget("http://www.wnefficiency.net/exp/expected_tank_values_latest.json", saveWN8Data); } for (var i = 0; i < Object.keys(comparedayArray).length; i++) { var tank = Object.keys(comparedayArray)[i], tankid = comparedayArray[tank].id, tank_battles = comparedayArray[tank].b; totalB += tank_battles; if (wn8DataArr[tankid]) { expDmg += tank_battles * wn8DataArr[tankid][0]; expSpot += tank_battles * wn8DataArr[tankid][1]; expFrag += tank_battles * wn8DataArr[tankid][2]; expDef += tank_battles * wn8DataArr[tankid][3]; expWinRate += tank_battles * wn8DataArr[tankid][4]; } } return [expDmg, expSpot, expFrag, expDef, expWinRate, totalB]; } function CalcgOldAvgLev(ds) { var avgL = 0, totalB = 0, tanks = document.getElementsByClassName("t-profile_tankstype__item"), tbcount, twcount, tlev, imgName, tankLevs = { "I": 1, "II": 2, "III": 3, "IV": 4, "V": 5, "VI": 6, "VII": 7, "VIII": 8, "IX": 9, "X": 10 }; for (i = 0; i < tanks.length; i++) { imgName = tanks[i].cells[0].getElementsByTagName('img')[0].src.match(/\/[^-]+-([^\/]*)\.png/)[1]; if (ds[imgName]) { tbcount = toFl(ds[imgName].b); twcount = toFl(ds[imgName].w); } else { tbcount = 0; twcount = 0; } tlev = tankLevs[tanks[i].cells[0].getElementsByTagName('div')[0].getElementsByTagName('span')[0].innerHTML]; totalB += tbcount; avgL += tlev * tbcount; } return [avgL / totalB]; } function FoundProc(Wins, Battles) { nextD3 = Math.ceil(Wins / Battles * 100 + 0.5) - 0.5; nextD1 = nextD3 - 1; nextD2 = nextD3 - 0.5; need_b1 = Math.floor(Battles - Wins * 100 / nextD1); if (100 * Wins / Battles > nextD2) need_b2 = Math.floor(Battles - Wins * 100 / nextD2); else need_b2 = Math.ceil((nextD2 * Battles - Wins * 100) / (100 - nextD2)); need_b3 = Math.ceil((nextD3 * Battles - Wins * 100) / (100 - nextD3)); return Wins + "<font color='red'>/</font> <font color='green'>" + Battles + "</font><br>" + nextD1 + "% (" + need_b1 + ")<br>" + nextD2 + "% (" + need_b2 + ")<br>" + nextD3 + "% (" + need_b3 + ")"; } function outWotNoobStatTitle(nr) { if (0 <= nr && nr < 40) return "оДНОклеточное\nподающая надежды бОльшая половина сервера"; if (40 <= nr && nr < 45) return "донышко\nподающая надежды бОльшая половина сервера"; if (45 <= nr && nr < 50) return "ИЛита\nподающая надежды бОльшая половина сервера"; if (50 <= nr && nr < 55) return "НЛДнище\nподающая надежды бОльшая половина сервера"; if (55 <= nr && nr < 60) return "неМОЩный\nподающая надежды бОльшая половина сервера"; if (60 <= nr && nr < 65) return "Мистер Крабс\n~46,26%"; if (65 <= nr && nr < 70) return "обуза\n~40,34%"; if (70 <= nr && nr < 75) return "РАКетмэн\n~34,91%"; if (75 <= nr && nr < 80) return "оЛОЛошка\n~29,94%"; if (80 <= nr && nr < 85) return "агроЛЕНЬ\n~25,41%"; if (85 <= nr && nr < 90) return "драчун-забияка\n~21,37%"; if (90 <= nr && nr < 95) return "го в треньку!\n~17,76%"; if (95 <= nr && nr < 100) return "небезнадежный\n~14,56%"; if (100 <= nr && nr < 110) return "всё ровно\n~11,80%"; if (110 <= nr && nr < 120) return "закаленный\n~7,44%"; if (120 <= nr && nr < 130) return "раСЧЕТливый\n~4,40%"; if (130 <= nr && nr < 140) return "пользАдел\n~2,43%"; if (140 <= nr && nr < 150) return "PRO.думанный\~1,26%"; if (150 <= nr && nr < 160) return "вездесуЮщий\n~0,61%"; if (160 <= nr && nr < 170) return "УМелец\n~0,29%"; if (170 <= nr && nr < 180) return "УМникум\n~0,13%"; if (180 <= nr && nr < 190) return "нинзя-мастер\n~0,06%"; if (190 <= nr && nr < 200) return "Джоkер\n~0,0287%"; if (200 <= nr && nr < 210) return "игра пройдена\n~0,0141%"; if (210 <= nr && nr < 220) return "маньяк\n~0,0077%"; if (220 <= nr && nr < 250) return "директор зоопарка\n~0,0039%"; if (250 <= nr) return "убийца ВБРа\n~0,0007%"; } function outWotNoobStat(response) { var regexp = /<div class="kpd">(\d*\.*\d*)+<\/div>/gi, res = regexp.exec(response); if (res && res.length > 0) { var nr = Number(res[1]), xnr = GetXRating(nr, "nr"); document.getElementById("js-us-NoobStat").innerHTML = "<font color='" + CalcEffColor(nr, "nr") + "'>" + nr + "</font>"; document.getElementById("js-us-NoobStat-xvm").innerHTML = "<font color='" + CalcEffColor(nr, "nr") + "'>" + xnr + "</font>"; document.getElementById("js-us-NoobStat_tooltip").innerHTML = outWotNoobStatTitle(Number(res[1])); } } }//////////////////////////main function CalcEff(New, AvgLev, battles, wins, damag, frags, spotted, caps, defs, summaryxp) { var effs = []; effs[0] = (damag / battles * (10 / (AvgLev + 2)) * (0.23 + 2 * AvgLev / 100) + frags / battles * 250 + spotted / battles * 150 + Math.log((caps / battles) + 1) / Math.log(1.732) * 150 + defs / battles * 150).toFixed(2); //eff effs[1] = (damag / battles * (10 / AvgLev) * (0.15 + 2 * AvgLev / 100) + frags / battles * (0.35 - 2 * AvgLev / 100) * 1000 + spotted / battles * 200 + caps / battles * 150 + defs / battles * 150).toFixed(2); //old eff effs[2] = ((1240 - 1040 / Math.pow(Math.min(AvgLev, 6), 0.164)) * frags / battles + damag / battles * 530 / (184 * Math.pow(Math.E, 0.24 * AvgLev) + 130) + spotted / battles * 125 + Math.min(defs / battles, 2.2) * 100 + ((185 / (0.17 + Math.pow(Math.E, (wins / battles * 100 - 35) * -0.134))) - 500) * 0.45 + (6 - Math.min(AvgLev, 6)) * -60).toFixed(2); if (New === 0) effs[3] = (Math.log(battles) / 10 * (summaryxp / battles * 1 + damag / battles * (wins / battles * 2.0 + frags / battles * 0.9 + spotted / battles * 0.5 + caps / battles * 0.5 + defs / battles * 0.5))).toFixed(2); return effs; } function insertNewTr(NewTrParent, text, val, title, tid) { var trNew = document.createElement('tr'); var tdNewName = document.createElement('td'), div1 = document.createElement('div'), div2 = document.createElement('div'); tdNewName.className = "td-minor"; tdNewName.innerHTML = text; var tdNew = document.createElement('td'); div1.innerHTML = val; tdNew.className = "t-dotted_value"; tdNew.appendChild(div1); if (title && title.length) { div1.setAttribute("id", "js-" + tid); div1.className = "js-tooltip"; div2.innerHTML = title; div2.setAttribute("id", "js-" + tid + "_tooltip"); div2.className = "b-tooltip-main"; tdNew.appendChild(div2); } NewTrParent.parentNode.appendChild(trNew); trNew.appendChild(tdNewName); trNew.appendChild(tdNew); return trNew; } function fixStatData(response) { var lang, UserId = window.location.href.match(/\/(\d+)/)[1]; if (document.title.indexOf("Профиль игрока") > -1) lang = "ru"; eval("var resp =" + response); var alltanks = GetLSData("AllTanksArr"); if (alltanks) { eval("var alltdata =" + alltanks); var alltanksArr = [], tankid; for (var t in alltdata.data) { tankid = alltdata.data[t].tank_id; alltanksArr[tankid] = []; alltanksArr[tankid]["name"] = alltdata.data[t].name_i18n; alltanksArr[tankid]["is_premium"] = alltdata.data[t].is_premium; } var ttStat = [], tStat = []; for (var i = 0; i < resp.data[UserId].length; i++) { tankid = resp.data[UserId][i].tank_id; if (tankid in alltanksArr) { var tName = alltanksArr[tankid]["name"]; ttStat[tankid] = {"win": resp.data[UserId][i].statistics.wins, "battles": resp.data[UserId][i].statistics.battles, "is_premium": alltanksArr[tankid]["is_premium"]}; } } var tanks = document.getElementsByClassName("t-profile_tankstype__item"); for (i = 0; i < tanks.length; i++) { var t = tanks[i].cells, imgName = t[0].getElementsByTagName('img')[0].src.match(/\/[^-]+-([^\/]*)\.png/)[1], tankId = parseInt(tanks[i].nextElementSibling.getAttribute('data-vehicle-cd')), tName = t[0].getElementsByClassName('b-name-vehicle')[0].innerHTML; tanks[i].className += " js-tooltip"; tanks[i].id = "us-t-" + imgName; var div = document.createElement('div'); tStat[imgName] = ttStat[tankId]; if (tStat[imgName]) { if (tStat[imgName].is_premium) tanks[i].cells[0].getElementsByClassName('b-name-vehicle')[0].setAttribute('style', 'color: #ffc363 !important;'); div.innerHTML = "<div style='float:left;'>" + (lang === "ru" ? "Боев|Побед (%Побед)" : "Battles|Wins (%Wins)") + "</div><div style='float:right; padding-left:10px;'>" + tStat[imgName].battles + "|" + tStat[imgName].win + " (" + col(tStat[imgName].win / tStat[imgName].battles * 100, 2) + ")</div>"; } div.setAttribute("id", "us-t-" + imgName + "_tooltip"); div.className = "b-tooltip-main"; tanks[i].appendChild(div); if (tStat[imgName]) t[2].innerHTML = col(tStat[imgName].win / tStat[imgName].battles * 100, 2); if (tStat[imgName]) t[2].setAttribute("wcount", tStat[imgName].win); } var daystat = GetStat(); if (daystat) { var dayArray = [], dsArr = daystat.split("|"), strArray = dsArr[0].split("/"); for (var i = 1; i < strArray.length; i++) { str = strArray[i].split(";"); var tName = str[0].toLowerCase(); dayArray[tName] = new Object(); dayArray[tName].b = toFl(str[1]); dayArray[tName].w = str.length > 3 ? str[3] : -1; } PaintOldAvgLev(dayArray); } //OutUnoffStat(); } else { xdr.xget("http://api." + document.location.host + "/wot/encyclopedia/tanks/?application_id=" + api_key, saveTanksArr); } } function batCompanyClan(response) { eval("var resp =" + response); var UserId = window.location.href.match(/\/(\d+)/)[1], companyTable = document.getElementById('company-battles'), clanTable = document.getElementById('clan-battles'), daystat = GetStat(), oldeffres = false; if (daystat) { var dsArr = daystat.split("|"); if (dsArr[2]) { eval('ostr =' + dsArr[2]); var oldeffres = CalcEff(0, 6, ostr.all.battles - ostr.company.battles - ostr.clan.battles, ostr.all.wins - ostr.company.wins - ostr.clan.wins, ostr.all.damage_dealt - ostr.company.damage_dealt - ostr.clan.damage_dealt, ostr.all.frags - ostr.company.frags - ostr.clan.frags, ostr.all.spotted - ostr.company.spotted - ostr.clan.spotted, ostr.all.capture_points - ostr.company.capture_points - ostr.clan.capture_points, ostr.all.dropped_capture_points - ostr.company.dropped_capture_points - ostr.clan.dropped_capture_points, ostr.all.xp - ostr.company.xp - ostr.clan.xp); var ohr = (ostr.all.hits / ostr.all.shots * 100).toFixed(2), osurvb = (ostr.all.survived_battles / ostr.all.battles * 100).toFixed(2); } } insertNewTr(companyTable, "Боев", resp.data[UserId].statistics.company.battles + (oldeffres ? "<font color='green'>" + ((resp.data[UserId].statistics.company.battles - ostr.company.battles > 0) ? " (+" + (resp.data[UserId].statistics.company.battles - ostr.company.battles) + ")" : "") + "</font>" : "") + " (" + (resp.data[UserId].statistics.company.battles / resp.data[UserId].statistics.all.battles * 100).toFixed(2) + "%)", resp.data[UserId].statistics.company.battles + " <font color='red'>/</font> <font color='green'>" + resp.data[UserId].statistics.all.battles + "</font>", "cpbat"); insertNewTr(companyTable, "Побед", resp.data[UserId].statistics.company.wins + (oldeffres ? "<font color='green'>" + ((resp.data[UserId].statistics.company.wins - ostr.company.wins > 0) ? " (+" + (resp.data[UserId].statistics.company.wins - ostr.company.wins) + ")" : "") + "</font>" : "") + " (" + (resp.data[UserId].statistics.company.wins / resp.data[UserId].statistics.all.wins * 100).toFixed(2) + "%)", resp.data[UserId].statistics.company.wins + " <font color='red'>/</font> <font color='green'>" + resp.data[UserId].statistics.all.wins + "</font>", "cpwin"); insertNewTr(companyTable, "Повреждений за бой", resp.data[UserId].statistics.company.battles > 0 ? (resp.data[UserId].statistics.company.damage_dealt / resp.data[UserId].statistics.company.battles).toFixed(2) : '-', ""); insertNewTr(companyTable, "Фрагов за бой", resp.data[UserId].statistics.company.battles > 0 ? (resp.data[UserId].statistics.company.frags / resp.data[UserId].statistics.company.battles).toFixed(2) : '-', ""); insertNewTr(companyTable, "Обнаружено за бой", resp.data[UserId].statistics.company.battles > 0 ? (resp.data[UserId].statistics.company.spotted / resp.data[UserId].statistics.company.battles).toFixed(2) : '-', ""); insertNewTr(companyTable, "Очков захвата за бой", resp.data[UserId].statistics.company.battles > 0 ? (resp.data[UserId].statistics.company.capture_points / resp.data[UserId].statistics.company.battles).toFixed(2) : '-', ""); insertNewTr(companyTable, "Очков защиты за бой", resp.data[UserId].statistics.company.battles > 0 ? (resp.data[UserId].statistics.company.dropped_capture_points / resp.data[UserId].statistics.company.battles).toFixed(2) : '-', ""); insertNewTr(companyTable, "Опыт за бой", resp.data[UserId].statistics.company.battles > 0 ? (resp.data[UserId].statistics.company.xp / resp.data[UserId].statistics.company.battles).toFixed(2) : '-', ""); insertNewTr(companyTable, "% побед", resp.data[UserId].statistics.company.battles > 0 ? col((resp.data[UserId].statistics.company.wins / resp.data[UserId].statistics.company.battles * 100).toFixed(2)) : '-', ""); insertNewTr(companyTable, "% выживания", resp.data[UserId].statistics.company.battles > 0 ? col((resp.data[UserId].statistics.company.survived_battles / resp.data[UserId].statistics.company.battles * 100).toFixed(2)) : '-', ""); insertNewTr(companyTable, "% попадания", resp.data[UserId].statistics.company.battles > 0 ? col((resp.data[UserId].statistics.company.hits / resp.data[UserId].statistics.company.shots * 100).toFixed(2)) : '-', ""); insertNewTr(clanTable, "Боев", resp.data[UserId].statistics.clan.battles + (oldeffres ? "<font color='green'>" + ((resp.data[UserId].statistics.clan.battles - ostr.clan.battles > 0) ? " (+" + (resp.data[UserId].statistics.clan.battles - ostr.clan.battles) + ")" : "") + "</font>" : "") + " (" + (resp.data[UserId].statistics.clan.battles / resp.data[UserId].statistics.all.battles * 100).toFixed(2) + "%)", resp.data[UserId].statistics.clan.battles + " <font color='red'>/</font> <font color='green'>" + resp.data[UserId].statistics.all.battles + "</font>", "clbat"); insertNewTr(clanTable, "Побед", resp.data[UserId].statistics.clan.wins + (oldeffres ? "<font color='green'>" + ((resp.data[UserId].statistics.clan.wins - ostr.clan.wins > 0) ? " (+" + (resp.data[UserId].statistics.clan.wins - ostr.clan.wins) + ")" : "") + "</font>" : "") + " (" + (resp.data[UserId].statistics.clan.wins / resp.data[UserId].statistics.all.wins * 100).toFixed(2) + "%)", resp.data[UserId].statistics.clan.wins + " <font color='red'>/</font> <font color='green'>" + resp.data[UserId].statistics.all.wins + "</font>", "clwin"); insertNewTr(clanTable, "Повреждений за бой", resp.data[UserId].statistics.clan.battles > 0 ? (resp.data[UserId].statistics.clan.damage_dealt / resp.data[UserId].statistics.clan.battles).toFixed(2) : '-', ""); insertNewTr(clanTable, "Фрагов за бой", resp.data[UserId].statistics.clan.battles > 0 ? (resp.data[UserId].statistics.clan.frags / resp.data[UserId].statistics.clan.battles).toFixed(2) : '-', ""); insertNewTr(clanTable, "Обнаружено за бой", resp.data[UserId].statistics.clan.battles > 0 ? (resp.data[UserId].statistics.clan.spotted / resp.data[UserId].statistics.clan.battles).toFixed(2) : '-', ""); insertNewTr(clanTable, "Очков захвата за бой", resp.data[UserId].statistics.clan.battles > 0 ? (resp.data[UserId].statistics.clan.capture_points / resp.data[UserId].statistics.clan.battles).toFixed(2) : '-', ""); insertNewTr(clanTable, "Очков защиты за бой", resp.data[UserId].statistics.clan.battles > 0 ? (resp.data[UserId].statistics.clan.dropped_capture_points / resp.data[UserId].statistics.clan.battles).toFixed(2) : '-', ""); insertNewTr(clanTable, "Опыт за бой", resp.data[UserId].statistics.clan.battles > 0 ? (resp.data[UserId].statistics.clan.xp / resp.data[UserId].statistics.clan.battles).toFixed(2) : '-', ""); insertNewTr(clanTable, "% побед", resp.data[UserId].statistics.clan.battles > 0 ? col((resp.data[UserId].statistics.clan.wins / resp.data[UserId].statistics.clan.battles * 100).toFixed(2)) : '-', ""); insertNewTr(clanTable, "% выживания", resp.data[UserId].statistics.clan.battles > 0 ? col((resp.data[UserId].statistics.clan.survived_battles / resp.data[UserId].statistics.clan.battles * 100).toFixed(2)) : '-', ""); insertNewTr(clanTable, "% попадания", resp.data[UserId].statistics.clan.battles > 0 ? col((resp.data[UserId].statistics.clan.hits / resp.data[UserId].statistics.clan.shots * 100).toFixed(2)) : '-', ""); var effres = CalcEff(0, 6, resp.data[UserId].statistics.all.battles - resp.data[UserId].statistics.company.battles - resp.data[UserId].statistics.clan.battles, resp.data[UserId].statistics.all.wins - resp.data[UserId].statistics.company.wins - resp.data[UserId].statistics.clan.wins, resp.data[UserId].statistics.all.damage_dealt - resp.data[UserId].statistics.company.damage_dealt - resp.data[UserId].statistics.clan.damage_dealt, resp.data[UserId].statistics.all.frags - resp.data[UserId].statistics.company.frags - resp.data[UserId].statistics.clan.frags, resp.data[UserId].statistics.all.spotted - resp.data[UserId].statistics.company.spotted - resp.data[UserId].statistics.clan.spotted, resp.data[UserId].statistics.all.capture_points - resp.data[UserId].statistics.company.capture_points - resp.data[UserId].statistics.clan.capture_points, resp.data[UserId].statistics.all.dropped_capture_points - resp.data[UserId].statistics.company.dropped_capture_points - resp.data[UserId].statistics.clan.dropped_capture_points, resp.data[UserId].statistics.all.xp - resp.data[UserId].statistics.company.xp - resp.data[UserId].statistics.clan.xp); var bsr = document.getElementById("js-bs-rating"), xbsr = document.getElementById("js-bs-rating-xvm"), hitrat = document.getElementById("js-hit-ratio"), hitratt = document.getElementById("js-hit-ratio_tooltip"), surv = document.getElementById("js-us-surv"), survb = (resp.data[UserId].statistics.all.survived_battles / resp.data[UserId].statistics.all.battles * 100).toFixed(2); bsr.innerHTML = "<font color='" + CalcEffColor(effres[3], "bs")[0] + "'>" + effres[3] + "</font>" + ((oldeffres && (effres[3] - oldeffres[3]).toFixed(2) != 0.0) ? "<font color='" + ((effres[3] - oldeffres[3]) > 0 ? "green'> (+" : "red'> (") + (effres[3] - oldeffres[3]).toFixed(2) + ")</font>" : ""); var xbs = GetXRating(effres[3], "bs"); if (oldeffres) var oxbs = GetXRating(oldeffres[3], "bs"); xbsr.innerHTML = "<font color='" + CalcEffColor(effres[3], "bs")[0] + "'>" + xbs + "</font>" + ((oldeffres && (xbs - oxbs).toFixed(2) != 0.0 ) ? "<font color='" + ((xbs - oxbs) > 0 ? "green'> (+" : "red'> (") + (xbs - oxbs).toFixed(2) + ")</font>" : ""); var hr = (resp.data[UserId].statistics.all.hits / resp.data[UserId].statistics.all.shots * 100).toFixed(2); hitrat.innerHTML = col(hr) + ((oldeffres && (hr - ohr).toFixed(2) != 0.0) ? "<font color='" + ((hr - ohr) > 0 ? "green'> (+" : "red'> (") + (hr - ohr).toFixed(2) + ")</font>" : ""); hitratt.innerHTML = resp.data[UserId].statistics.all.hits + " <font color='red'>/</font> <font color='green'>" + resp.data[UserId].statistics.all.shots + "</font>"; if (oldeffres && (survb - osurvb).toFixed(2) != 0.0) surv.innerHTML += "<font color='" + ((survb - osurvb > 0) ? "green'> (+" : "red'> (") + (survb - osurvb).toFixed(2) + ")</font>"; GetStatData(effres); } function savenominalDamage(response) { var now = new Date(), time = now.getTime(); time += 3600 * 24 * 1000; now.setTime(time); SetLSData("nominalDamage", response, now.toGMTString()); window.location.reload(); } function saveWN8Data(response) { var now = new Date(), time = now.getTime(); time += 3600 * 24 * 1000; now.setTime(time); SetLSData("WN8Data", response, now.toGMTString()); window.location.reload(); } function GetBattleStat(col) { switch (col) { case 1: return toFl(document.getElementsByClassName("t-personal-data_value__pr")[0].innerHTML); break; case 4: return toFl(document.getElementsByClassName("b-result")[0].getElementsByClassName("t-dotted_value")[1].innerHTML.split("(")[0]); break; case 7: return toFl(document.getElementsByClassName("b-result")[1].getElementsByClassName("t-dotted_value")[3].innerHTML); break; case 9: return toFl(document.getElementsByClassName("b-result")[1].getElementsByClassName("t-dotted_value")[0].innerHTML); break; case 10: return toFl(document.getElementsByClassName("b-result")[1].getElementsByClassName("t-dotted_value")[1].innerHTML); break; case 6: return toFl(document.getElementsByClassName("b-result")[1].getElementsByClassName("t-dotted_value")[5].innerHTML); break; case 8: return toFl(document.getElementsByClassName("b-result")[1].getElementsByClassName("t-dotted_value")[6].innerHTML); break; case 11: return toFl(document.getElementsByClassName("b-result")[0].getElementsByClassName("t-dotted_value")[4].innerHTML); break; case 5: return toFl(document.getElementsByClassName("b-result")[0].getElementsByClassName("t-dotted_value")[0].innerHTML); break; default: return 0; break; break; } } function toFl(s) { var a = "" + s; a = a.indexOf(">") > 0 ? a.substr(0, a.indexOf(">")) : a; return (parseFloat(a.replace(/[\D\.]/g, ""))); } function getCookie(name) { var start = document.cookie.indexOf(name + '='); var len = start + name.length + 1; if ((!start) && (name !== document.cookie.substring(0, name.length))) { return null; } if (start === -1) return undefined; var end = document.cookie.indexOf(';', len); if (end === -1) end = document.cookie.length; var resval = document.cookie.substring(len, end); name = name + "__2"; start = document.cookie.indexOf(name + '='); len = start + name.length + 1; if ((!start) && (name !== document.cookie.substring(0, name.length))) { return unescape(resval); } if (start === -1) return unescape(resval); end = document.cookie.indexOf(';', len); if (end === -1) end = document.cookie.length; resval += document.cookie.substring(len, end); return unescape(resval); } function setCookie(name, value, endstr) { var savestr = escape(value), savestr2 = false; if (savestr.length > 3900) { savestr2 = savestr.slice(3900); savestr = savestr.slice(0, 3900); } if (!endstr) endstr = "; expires=Mon, 01-Jan-2031 00:00:00 GMT"; document.cookie = name + "=" + savestr + endstr; if (savestr2) { document.cookie = name + "__2" + "=" + savestr2 + endstr; } } function GetStat() { var UserId = window.location.href.match(/\/(\d+)/)[1], day = 0; // Перенос старого формата данных if (GetLSData("daystat_" + UserId)) { var daystat = GetLSData("daystat_" + UserId); SetLSData("daystat_" + UserId + "_" + 0, daystat, '01-Jan-2031 00:00:00 GMT'); localStorage.removeItem("daystat_" + UserId); } for (var i = 1; i < 7; i++) { if (GetLSData("daystat_" + UserId + "_" + i)) day += 1; } return GetLSData("daystat_" + UserId + "_" + day); } function WriteStat() { var day = 0, UserId = window.location.href.match(/\/(\d+)/)[1], WGRating = GetBattleStat(1), api_key, saveStat = false; for (i = 0; i < 7; i++) { if (!GetLSData("daystat_" + UserId + "_" + i)) { day = i; break; } day = 7; } if (document.location.host.indexOf(".ru") !== -1) { api_key = "895d3dafdd87af03e1e515befcd83882"; } else if (document.location.host.indexOf(".eu") !== -1) { api_key = "d0a293dc77667c9328783d489c8cef73"; } else if (document.location.host.indexOf(".com") !== -1) { api_key = "16924c431c705523aae25b6f638c54dd"; } if (day !== 0) { var daystat = GetLSData("daystat_" + UserId + "_" + (day - 1)), dsArr = daystat.split("|"), strArray = dsArr[0].split("/"), str = strArray[0].split(";"), OldBattles = toFl(str[12]); if (parseInt(OldBattles) !== parseInt(GetBattleStat(5))) { saveStat = true; } } else { saveStat = true; } if (saveStat) { $.get("http://api." + document.location.host + "/2.0/account/info/?application_id=" + api_key + "&account_id=" + UserId, function (response) { var UserId = window.location.href.match(/\/(\d+)/)[1]; var timeStamp = new Date(); var cookie = "" + timeStamp + ";", AllGold = document.getElementsByClassName("currency-gold")[0], AllCredit = document.getElementsByClassName("currency-credit")[0], AllExp = document.getElementsByClassName("currency-experience")[0], tstsr = JSON.stringify(response.data[UserId].statistics); if (AllGold) { cookie += "" + toFl(AllGold.innerHTML.split("(")[0]) + ";"; } else cookie += "NaN;"; if (AllCredit) { cookie += "" + toFl(AllCredit.innerHTML.split("(")[0]) + ";"; } else cookie += "NaN;"; if (AllExp) { cookie += "" + toFl(AllExp.innerHTML.split("(")[0]) + ";"; } else cookie += "NaN;"; for (var i = 1; i < 12; i++) { cookie += GetBattleStat(i) + ";"; cookie += "0;"; } var tanks = document.getElementsByClassName("t-profile_tankstype__item"); for (var i = 0; i < tanks.length; i++) { var t = tanks[i].cells, imgName = t[0].getElementsByTagName('img')[0].src.match(/\/[^-]+-([^\/]*)\.png/)[1]; cookie += "/" + imgName + ";" + toFl(t[1].innerHTML.split("(")[0]) + ";" + toFl(t[2].innerHTML.split("(")[0]) + ";" + t[2].getAttribute("wcount"); } cookie += "|"; var medals = document.getElementsByClassName("js-all-achievements")[0].getElementsByClassName("b-achivements_item"); for (i = 0; i < medals.length; i++) { if ((" " + medals[i].className + " ").replace(/[\n\t]/g, " ").indexOf(" b-achivements_item__empty ") === -1) { var count = medals[i].getElementsByTagName('div')[0]; if (count) { count = count.getElementsByTagName('span')[0]; if (count) { count = count.getElementsByTagName('span')[0]; if (count) count = toFl(count.innerHTML); else count = 1; } else { count = 1; } } else { count = 1; } cookie += "/" + medals[i].id.split("-")[2] + ";" + count; } } cookie += "|" + tstsr; cookie += "|" + WGRating; var day = 0; for (i = 0; i < 7; i++) { if (!GetLSData("daystat_" + UserId + "_" + i)) { day = i; break; } day = 7; } if (day === 0) { SetLSData("daystat_" + UserId + "_0", cookie, '01-Jan-2031 00:00:00 GMT'); if (document.title.indexOf("Профиль игрока") > -1) { popup("Статистика сохранена", true, false); } else { popup("Stat. saved", true, false); } } else { var daystat = GetLSData("daystat_" + UserId + "_" + (day - 1)), dsArr = daystat.split("|"), strArray = dsArr[0].split("/"), str = strArray[0].split(";"), OldBattles = toFl(str[12]); if (parseInt(OldBattles) === parseInt(GetBattleStat(5))) { if (document.title.indexOf("Профиль игрока") > -1) { popup("Нет новых боев", true, false); } else { popup("No new battles", true, false); } } else { if (day === 7) { for (i = 1; i < 7; i++) { daystat = GetLSData("daystat_" + UserId + "_" + (i)); SetLSData("daystat_" + UserId + "_" + (i - 1), daystat, '01-Jan-2031 00:00:00 GMT'); } day = 6; } SetLSData("daystat_" + UserId + "_" + day, cookie, '01-Jan-2031 00:00:00 GMT'); if (document.title.indexOf("Профиль игрока") > -1) { popup("Статистика сохранена", true, false); } else { popup("Stat. saved", true, false); } } } }); } else { if (document.title.indexOf("Профиль игрока") > -1) { popup("Нет новых боев", true, false); } else { popup("No new battles", true, false); } } } function col(v1, digit, inv) { if (isNaN(v1)) return "x"; var color = "90ffff"; if (inv) { var v = 100 - v1; } else { v = v1; } if (digit) v1 = v1.toFixed(digit); if (v < 101) color = "D042F3"; if (v < 64.9) color = "02C9B3"; if (v < 56.9) color = "60FF00"; if (v < 51.9) color = "F8F400"; if (v < 48.9) color = "FE7903"; if (v < 46.9) color = "FE0E00"; return "<font color='" + color + "'>" + v1 + "%</font>"; } function col2(v) { if (isNaN(v)) v = 0; var color = "D042F3"; if (v < 15) color = "02C9B3"; if (v < 10) color = "60FF00"; if (v < 5) color = "F8F400"; if (v < 0) color = "FE7903"; if (v < -5) color = "FE0E00"; //красный v = v.toFixed(2); if (v >= 0) v = "+" + v; return "<font color='" + color + "'>" + v + "</font>"; } function SaveCompareStatData() { var timeStamp = new Date(); var cookie = "" + timeStamp + ";", AllGold = document.getElementsByClassName("currency-gold")[0], AllCredit = document.getElementsByClassName("currency-credit")[0], AllExp = document.getElementsByClassName("currency-experience")[0], WGRating = GetBattleStat(1); if (AllGold) { cookie += "" + toFl(AllGold.innerHTML.split("(")[0]) + ";"; } else cookie += "NaN;"; if (AllCredit) { cookie += "" + toFl(AllCredit.innerHTML.split("(")[0]) + ";"; } else cookie += "NaN;"; if (AllExp) { cookie += "" + toFl(AllExp.innerHTML.split("(")[0]) + ";"; } else cookie += "NaN;"; for (var i = 1; i < 12; i++) { cookie += GetBattleStat(i) + ";"; cookie += "0;"; } var tanks = document.getElementsByClassName("t-profile_tankstype__item"), tlev, totalB = 0, avgL = 0, tbcount, tankLevs = { "I": 1, "II": 2, "III": 3, "IV": 4, "V": 5, "VI": 6, "VII": 7, "VIII": 8, "IX": 9, "X": 10 }; for (var i = 0; i < tanks.length; i++) { var t = tanks[i].cells, imgName = t[0].getElementsByTagName('img')[0].src.match(/\/[^-]+-([^\/]*)\.png/)[1]; tank_Id = parseInt(tanks[i].nextElementSibling.getAttribute('data-vehicle-cd')); tbcount = toFl(tanks[i].cells[1].innerHTML); tlev = tankLevs[tanks[i].cells[0].getElementsByTagName('div')[0].getElementsByTagName('span')[0].innerHTML]; totalB += tbcount; avgL += tlev * tbcount; cookie += "/" + imgName + ";" + toFl(t[1].innerHTML.split("(")[0]) + ";" + toFl(t[2].innerHTML.split("(")[0]) + ";" + tank_Id; } cookie += "|" + (avgL / totalB).toFixed(4); cookie += "|"; var medals = document.getElementsByClassName("js-all-achievements")[0].getElementsByClassName("b-achivements_item"); for (i = 0; i < medals.length; i++) { if ((" " + medals[i].className + " ").replace(/[\n\t]/g, " ").indexOf(" b-achivements_item__empty ") === -1) { var count = medals[i].getElementsByTagName('div')[0]; if (count) { count = count.getElementsByTagName('span')[0]; if (count) { count = count.getElementsByTagName('span')[0]; if (count) count = toFl(count.innerHTML); else count = 1; } else { count = 1; } } else { count = 1; } cookie += "/" + medals[i].id.split("-")[2] + ";" + count; } } cookie += "|" + WGRating; SetLSData("compareStat", cookie, '01-Jan-2031 00:00:00 GMT'); window.close(); } function WriteCompareStat() { var set = GetLSData("usSettings").split('|')[1].split(';'); if (toFl(set[0]) === 1/* && set[1].match(/\/(\d+)/)[1] !== window.location.href.match(/\/(\d+)/)[1]*/) { window.open(set[1] + '#USCompareStat', 'usCompare', 'width=100, height=100'); return false; } } function GetLSData(name) { var stVal = localStorage.getItem(name); if (stVal && new Date(stVal.split("||")[0]) <= new Date()) { localStorage.removeItem(name); stVal = null; } if (stVal) { return stVal.split("||")[1]; } else return null; } function SetLSData(name, value, expire) { var stval = expire + "||" + value; localStorage.setItem(name, stval); } function outStatData2(response) { eval("var resp =" + response); var sStat = resp.veh_stat, arstr = ''; for (var sc in sStat) { arstr += "/" + sStat[sc]["link"].match(/\/[^-]+-([^\/]*)\.png/)[1].toLowerCase() + ";" + (sStat[sc]["win"] / sStat[sc]["total"] * 100).toFixed(2); } var now = new Date(), time = now.getTime(); time += 3600 * 24 * 1000; now.setTime(time); SetLSData("UsUnOfStat", arstr, now.toGMTString()); OutUnoffStat(); } function CalcOldAvgLev(ds, tankarr) { var avgL = 0, totalB = 0, NavgL = 0, NtotalB = 0, tnaSum = 0, expDmg = 0, expSpot = 0, expFrag = 0, expDef = 0, expWinRate = 0, tankLevs = { "I": 1, "II": 2, "III": 3, "IV": 4, "V": 5, "VI": 6, "VII": 7, "VIII": 8, "IX": 9, "X": 10 }; var nominalDamage = GetLSData("nominalDamage"), wn8Data = GetLSData("WN8Data"), nominalDamageArr = [], wn8DataArr = [], tankid, tank_Id, nArr; if (nominalDamage) { nominalDamage = eval(nominalDamage); for (i = 0; i < nominalDamage.length; i++) { if (nominalDamage[i].nominalDamage) nominalDamageArr[(nominalDamage[i].id).toLowerCase()] = [ nominalDamage[i].nominalDamage * 1 ]; } } else { xdr.xget("http://www.noobmeter.com/tankListJson/elfx_133054", savenominalDamage); } if (wn8Data) { eval("var allwn8Data =" + wn8Data); for (var key = 0; key < allwn8Data.data.length; key++) { t = allwn8Data.data[key]; wn8DataArr[parseInt(t.IDNum)] = [t.expDamage / 1, t.expSpot / 1, t.expFrag / 1, t.expDef / 1, t.expWinRate / 100]; } } else { xdr.xget("http://www.wnefficiency.net/exp/expected_tank_values_latest.json", saveWN8Data); } for (var tank in ds) { if (tankarr[tank]) { totalB += ds[tank].b; if (nominalDamageArr[tank]) { if (nominalDamageArr[tank][0]) tnaSum += ds[tank].b * nominalDamageArr[tank][0]; } tank_Id = tankarr[tank]["tId"]; if (wn8DataArr[tank_Id]) { expDmg += ds[tank].b * wn8DataArr[tank_Id][0]; expSpot += ds[tank].b * wn8DataArr[tank_Id][1]; expFrag += ds[tank].b * wn8DataArr[tank_Id][2]; expDef += ds[tank].b * wn8DataArr[tank_Id][3]; expWinRate += ds[tank].b * wn8DataArr[tank_Id][4]; } avgL += tankarr[tank].tlev * ds[tank].b; if (ds[tank].b !== tankarr[tank].bcount) { NtotalB += (tankarr[tank].bcount - ds[tank].b); NavgL += tankarr[tank].tlev * (tankarr[tank].bcount - ds[tank].b); } } } return [avgL / totalB, NavgL / NtotalB, tnaSum, expDmg, expSpot, expFrag, expDef, expWinRate, totalB]; } function PaintOldAvgLev(ds) { var avgL = 0, totalB = 0, NavgL = 0, NtotalB = 0, tanks = document.getElementsByClassName("t-profile_tankstype__item"), tbcount, twcount, tlev, imgName, tHd, newBat, tankLevs = { "I": 1, "II": 2, "III": 3, "IV": 4, "V": 5, "VI": 6, "VII": 7, "VIII": 8, "IX": 9, "X": 10 }; var theads = document.getElementsByClassName("t-profile__vehicle")[0].getElementsByTagName('tbody'); for (var i = 0; i < theads.length; i++) { if (theads[i].style.display !== 'none') theads[i].setAttribute('class', 'js-tank-head-row'); } for (i = 0; i < tanks.length; i++) { if (tanks[i].parentNode.previousElementSibling.style.display !== 'none') tanks[i].setAttribute('class', tanks[i].getAttribute('class') + ' js-tank-row'); imgName = tanks[i].cells[0].getElementsByTagName('img')[0].src.match(/\/[^-]+-([^\/]*)\.png/)[1]; if (ds[imgName]) { tbcount = toFl(ds[imgName].b); twcount = ds[imgName].w; } else { tbcount = 0; twcount = 0; } tlev = tankLevs[tanks[i].cells[0].getElementsByTagName('div')[0].getElementsByTagName('span')[0].innerHTML]; totalB += tbcount; avgL += tlev * tbcount; if (toFl(tanks[i].cells[1].innerHTML) !== tbcount) { NtotalB += toFl(tanks[i].cells[1].innerHTML.split("(")[0]) - tbcount; tHd = tanks[i].parentNode.previousElementSibling; newBat = toFl(tHd.getAttribute('newbat')); if (newBat) { newBat += toFl(tanks[i].cells[1].innerHTML.split("(")[0]) - tbcount; } else { newBat = toFl(tanks[i].cells[1].innerHTML.split("(")[0]) - tbcount; } tHd.setAttribute("style", "background-color: Darkslategray;"); tHd.setAttribute("newBat", newBat); tHd.rows[0].cells[1].innerHTML = tHd.rows[0].cells[1].innerHTML.split("(")[0] + " (+" + newBat + ")"; tanks[i].setAttribute("style", "background-color: Darkslategray;"); tanks[i].setAttribute('class', tanks[i].getAttribute('class') + ' js-nb-tank-row'); if (!tHd.getAttribute('class') || tHd.getAttribute('class').indexOf('js-nb-tank-row') === -1) tHd.setAttribute('class', (tHd.getAttribute('class') ? tHd.getAttribute('class') + ' js-nb-tank-row' : 'js-nb-tank-row')); tanks[i].cells[1].innerHTML = tanks[i].cells[1].innerHTML + " (" + (toFl(tanks[i].cells[1].innerHTML.split("(")[0]) - tbcount) + "|" + (tanks[i].cells[2].getAttribute('wcount') - twcount) + ")"; if (twcount !== -1 && tbcount !== 0) { var windelta = ((tanks[i].cells[2].getAttribute('wcount') / toFl(tanks[i].cells[1].innerHTML.split("(")[0]) * 100).toFixed(2) - (twcount / tbcount * 100).toFixed(2)).toFixed(2); tanks[i].cells[2].innerHTML = tanks[i].cells[2].innerHTML + " (" + (windelta > 0 ? "<font color='green'>+" + windelta + "</font>" : "<font color='red'>" + windelta + "</font>") + ")"; } NavgL += tlev * (toFl(tanks[i].cells[1].innerHTML.split("(")[0]) - tbcount); } } } function outStatData(response) { eval("var resp =" + response); var sStat = resp.classRatings, arstr = ''; for (var i = 0; i < rangA.length; i++) { arstr += sStat[rangA[i]] + ';'; } var now = new Date(), time = now.getTime(); time += 3600 * 24 * 1000; now.setTime(time); SetLSData("UsBsRangs", arstr, now.toGMTString()); GetStatData(); } function OutUnoffStat() { var stData = GetLSData("UsUnOfStat"); if (stData) { var vTh = document.getElementsByClassName("t-profile__vehicle")[0].getElementsByTagName('th')[4], nTh = document.createElement('th'); document.getElementsByClassName("t-profile__vehicle")[0].getElementsByTagName('th')[0].width = "288"; nTh.innerHTML = '<span class="t-vehicle-head t-vehicle-head__fix"><span>' + (lang === "ru" ? "ср % побед по серверу" : "avg win %") + "</span></span>"; nTh.className = "t-profile_center"; vTh.parentNode.insertBefore(nTh, vTh); var tTypes = document.getElementsByClassName("js-tank-head-row"); for (var i = 0; i < tTypes.length; i++) { var nrth = tTypes[i].rows[0].getElementsByClassName('t-profile_center'); if (nrth.length) { nrth[0].width = "288"; var fTh = document.createElement('td'); fTh.innerHTML = '-'; fTh.className = "t-profile_center"; tTypes[i].rows[0].cells[4].parentNode.insertBefore(fTh, tTypes[i].rows[0].cells[4]); } } var UnOffStat = stData.split("/"); if (UnOffStat) { var unOffStatArr = []; for (i = 0; i < UnOffStat.length; i++) { var uoss = UnOffStat[i].split(";"); unOffStatArr[uoss[0]] = uoss[1]; } var tanks = document.getElementsByClassName("t-profile_tankstype__item"); for (i = 0; i < tanks.length; i++) { var t = tanks[i].cells, imgName = t[0].getElementsByTagName('img')[0].src.match(/\/[^-]+-([^\/]*)\.png/)[1].toLowerCase(); var sTd = document.createElement('td'); sTd.className = "t-profile_right"; var med = unOffStatArr[imgName]; if (med && t[2].getElementsByTagName('font')[0]) { sTd.innerHTML = col(med) + " (" + col2(parseFloat(t[2].getElementsByTagName('font')[0].innerHTML) - med) + ")"; } else { sTd.innerHTML = "x"; } t[4].parentNode.insertBefore(sTd, t[4]); var rItem = t[4].parentNode.getElementsByClassName("t-profile_ico-dropdown")[0]; t[4].parentNode.removeChild(rItem); } } } else { xdr.xget("http://wot-crabe.ru/api/server_stats.json", outStatData2); } } function GetStatData() { var stData = GetLSData("UsBsRangs"), lang, bsrat = document.getElementById("js-bs-rating").innerHTML.split("(")[0].split("<")[0]; if (document.title.indexOf("Профиль игрока") > -1) lang = "ru"; if (stData) { var bsRangs = stData.split(";"); if (bsRangs) { var rcr = 0, rcrv = 0; for (var i = bsRangs.length - 1; i > -1; i--) { if (Number(bsrat) > Number(bsRangs[i])) { rcr = i; if (i > 0) { rcrv = (Number(bsRangs[i - 1]) - Number(bsrat)).toFixed(2) + (lang === "ru" ? " баллов до следующего ранга" : " balls to next level"); } else { rcrv = (lang === "ru" ? 'Максимальный уровень. Круче только вареные яйца.' : 'Max. level'); } } } document.getElementById("js-bs-rating_tooltip").innerHTML = (lang === "ru" ? rangD[rcr] : rangDE[rcr]) + "<br>" + rcrv; } } else { xdr.xget("http://armor.kiev.ua/wot/api.php", outStatData); } } function FormatUsSetTable() { var rowsSorted = [[]]; var tBody = document.getElementById("us-set-table").getElementsByTagName('tbody')[0]; for (i = 0; i < tBody.childNodes.length; i++) { rowsSorted[tBody.childNodes[i].getAttribute('cur-pos')] = []; rowsSorted[tBody.childNodes[i].getAttribute('cur-pos')][0] = tBody.childNodes[i].getAttribute('btype'); rowsSorted[tBody.childNodes[i].getAttribute('cur-pos')][1] = tBody.childNodes[i].cells[0].innerText; rowsSorted[tBody.childNodes[i].getAttribute('cur-pos')][2] = tBody.childNodes[i].cells[1].getElementsByTagName('input')[0].checked; rowsSorted[tBody.childNodes[i].getAttribute('cur-pos')][3] = tBody.childNodes[i].cells[2].getElementsByTagName('input')[0].checked; } for (i = 0; i < tBody.childNodes.length; i++) { tBody.childNodes[i].setAttribute('btype', rowsSorted[i][0]); tBody.childNodes[i].setAttribute('cur-pos', i); tBody.childNodes[i].cells[0].childNodes[0].nodeValue = rowsSorted[i][1].replace(/\u00a0/g, ""); tBody.childNodes[i].cells[1].getElementsByTagName('input')[0].checked = rowsSorted[i][2]; tBody.childNodes[i].cells[2].getElementsByTagName('input')[0].checked = rowsSorted[i][3]; if (i === 0) { tBody.childNodes[i].cells[0].getElementsByTagName('div')[0].getElementsByTagName('a')[0].setAttribute('style', 'visibility:hidden;'); tBody.childNodes[i].cells[0].getElementsByTagName('div')[0].getElementsByTagName('a')[1].setAttribute('style', ''); } else if (i === 10) { tBody.childNodes[i].cells[0].getElementsByTagName('div')[0].getElementsByTagName('a')[0].setAttribute('style', ''); tBody.childNodes[i].cells[0].getElementsByTagName('div')[0].getElementsByTagName('a')[1].setAttribute('style', 'visibility:hidden;'); } else { tBody.childNodes[i].cells[0].getElementsByTagName('div')[0].getElementsByTagName('a')[0].setAttribute('style', ''); tBody.childNodes[i].cells[0].getElementsByTagName('div')[0].getElementsByTagName('a')[1].setAttribute('style', ''); } } rowsSorted = [[]]; } function GetXRating (value, ratingtype) { // Волшебные формулы взяты из исходного кода XVM (https://bitbucket.org/XVM/xvm/src/default/src/xpm/xvm_main/xvm_scale.py?at=default) // по рекомендации на форуме koreanrandom (http://www.koreanrandom.com/forum/topic/2625-xvm-%D1%88%D0%BA%D0%B0%D0%BB%D0%B0-scale/) var result; switch (ratingtype) { case "effres": if (value > 2250) { result = 100; } else { result = Math.max(0, Math.min(100, value * (value * (value * (value * (value * (value * 0.000000000000000013172 - 0.000000000000092286) + 0.00000000023692) - 0.00000027377) + 0.00012983) + 0.05935) - 31.684, 100), 0).toFixed(2); } break; case "wn6": if (value > 2350) { result = 100; } else { result = Math.max(0, Math.min(100, value * (value * (value * (value * (value * (value * 0.000000000000000001225 - 0.000000000000007167) + 0.000000000005501) + 0.00000002368) - 0.00003668) + 0.05965) - 5.297, 100), 0).toFixed(2); } break; case "wn8": if (value > 3650) { result = 100; } else { result = Math.max(0, Math.min(100, value * (value * (value * (value * (value * (-value * 0.00000000000000000007656 + 0.0000000000000014848) - 0.0000000000099633) + 0.00000002858) - 0.00003836) + 0.0575) - 0.99, 100), 0).toFixed(2); } break; case "wgr": if (value > 11100) { result = 100; } else { result = Math.max(0, Math.min(100, value * (value * (value * (value * (value * (-value * 0.0000000000000000000013018 + 0.00000000000000004812) - 0.00000000000071831) + 0.0000000055583) - 0.000023362) + 0.059054) - 47.85, 100), 0).toFixed(2); } break; case "pr": if (value >= 2175) { result = 100; } else if (value >= 1500 && value < 2175) { result = Math.max(value * (value * (value * (0.00000000074489 * value - 0.0000051431) + 0.01313866) - 14.65) + 6057.52 , value*(value*(0.000000081703*value - 0.000699026) + 1.88722) - 1538.59).toFixed(2); } else { result = Math.max(value*(0.00001717*value + 0.03825) - 38.45, 0).toFixed(2); } break; case "bs": if (value > 13200) { result = 100; } else { result = Math.max(Math.min(value * (value * (value * (value * (value * (-0.00000000000000000000024883*value + 0.0000000000000000117935) - 0.00000000000021706) + 0.00000000193685) - 0.0000089711) + 0.02948) - 0.78, 100), 0).toFixed(2); } break; case "nr": if (value > 240) { result = 100; } else { result = Math.max(Math.min(value*(value*(value*(value*(value* (0.0000000000060542*value - 0.0000000047258) + 0.00000132876) - 0.00016789) + 0.009921) + 0.2677) - 17.3, 100), 0).toFixed(2); } break; default: result = 0; } return result; } function CalcEffColor(effval, type) { //Цифры границ взяты с на форума koreanrandom (http://www.koreanrandom.com/forum/topic/2625-xvm-%D1%88%D0%BA%D0%B0%D0%BB%D0%B0-scale/) var lang; if (document.title.indexOf("Профиль игрока") > -1) lang = "ru"; var color, lboundary, uboundary; switch (type) { case "xvm": if (effval < 16.5) color = 'FE0E00', lboundary = 0, uboundary = 16.5; else if (effval < 33.5) color = 'FE7903', lboundary = 16.5, uboundary = 33.5; else if (effval < 52.5) color = 'F8F400', lboundary = 33.5, uboundary = 52.5; else if (effval < 75.5) color = '60FF00', lboundary = 52.5, uboundary = 75.5; else if (effval < 92.5) color = '02C9B3', lboundary = 75.5, uboundary = 92.5; else if (effval < 99999) color = 'D042F3', lboundary = 92.5, uboundary = 99999; else color = 'white' , lboundary = '', uboundary = ''; break; case "winrate": if (effval < 47) color = 'FE0E00', lboundary = 0, uboundary = 47; else if (effval < 49) color = 'FE7903', lboundary = 47, uboundary = 49; else if (effval < 53) color = 'F8F400', lboundary = 49, uboundary = 53; else if (effval < 58) color = '60FF00', lboundary = 53, uboundary = 58; else if (effval < 65) color = '02C9B3', lboundary = 58, uboundary = 65; else if (effval < 99999) color = 'D042F3', lboundary = 65, uboundary = 99999; else color = 'white' , lboundary = '', uboundary = ''; break; case "eff": if (effval < 615) color = 'FE0E00', lboundary = 0, uboundary = 615; else if (effval < 870) color = 'FE7903', lboundary = 615, uboundary = 870; else if (effval < 1175) color = 'F8F400', lboundary = 870, uboundary = 1175; else if (effval < 1525) color = '60FF00', lboundary = 1175, uboundary = 1525; else if (effval < 1850) color = '02C9B3', lboundary = 1525, uboundary = 1850; else if (effval < 99999) color = 'D042F3', lboundary = 1850, uboundary = 99999; else color = 'white' , lboundary = '', uboundary = ''; break; case "wn6": if (effval < 460) color = 'FE0E00', lboundary = 0, uboundary = 460; else if (effval < 850) color = 'FE7903', lboundary = 460, uboundary = 850; else if (effval < 1215) color = 'F8F400', lboundary = 850, uboundary = 1215; else if (effval < 1620) color = '60FF00', lboundary = 1215, uboundary = 1620; else if (effval < 1960) color = '02C9B3', lboundary = 1620, uboundary = 1960; else if (effval < 99999) color = 'D042F3', lboundary = 1960, uboundary = 99999; else color = 'white' , lboundary = '', uboundary = ''; break; case "wn8": if (effval < 380) color = 'FE0E00', lboundary = 0, uboundary = 380; else if (effval < 860) color = 'FE7903', lboundary = 380, uboundary = 860; else if (effval < 1420) color = 'F8F400', lboundary = 860, uboundary = 1420; else if (effval < 2105) color = '60FF00', lboundary = 1420, uboundary = 2105; else if (effval < 2770) color = '02C9B3', lboundary = 2105, uboundary = 2770; else if (effval < 99999) color = 'D042F3', lboundary = 2770, uboundary = 99999; else color = 'white' , lboundary = '', uboundary = ''; break; case "WGRating": if (effval < 2495) color = 'FE0E00', lboundary = 0, uboundary = 2495; else if (effval < 4345) color = 'FE7903', lboundary = 2495, uboundary = 4345; else if (effval < 6425) color = 'F8F400', lboundary = 4345, uboundary = 6425; else if (effval < 8625) color = '60FF00', lboundary = 6425, uboundary = 8625; else if (effval < 10040) color = '02C9B3', lboundary = 8625, uboundary = 10040; else if (effval < 99999) color = 'D042F3', lboundary = 10040,uboundary = 99999; else color = 'white' , lboundary = '', uboundary = ''; break; case "bs": if (effval < 720) color = 'FE0E00', lboundary = 0, uboundary = 720; else if (effval < 1920) color = 'FE7903', lboundary = 720, uboundary = 1920; else if (effval < 3905) color = 'F8F400', lboundary = 1920, uboundary = 3905; else if (effval < 6700) color = '60FF00', lboundary = 3905, uboundary = 6700; else if (effval < 9600) color = '02C9B3', lboundary = 6700, uboundary = 9600; else if (effval < 99999) color = 'D042F3', lboundary = 9600, uboundary = 99999; else color = 'white' , lboundary = '', uboundary = ''; break; case "nr": if (effval < 69) color = 'FE0E00', lboundary = 0, uboundary = 69; else if (effval < 102) color = 'FE7903', lboundary = 69, uboundary = 102; else if (effval < 135) color = 'F8F400', lboundary = 102, uboundary = 135; else if (effval < 172) color = '60FF00', lboundary = 135, uboundary = 172; else if (effval < 203) color = '02C9B3', lboundary = 172, uboundary = 203; else if (effval < 99999) color = 'D042F3', lboundary = 203, uboundary = 99999; else color = 'white' , lboundary = '', uboundary = ''; break; case "pr": if (effval < 1000) color = 'FE0E00', lboundary = 0, uboundary = 1000; else if (effval < 1215) color = 'FE7903', lboundary = 1000, uboundary = 1215; else if (effval < 1445) color = 'F8F400', lboundary = 1215, uboundary = 1445; else if (effval < 1685) color = '60FF00', lboundary = 1445, uboundary = 1685; else if (effval < 1990) color = '02C9B3', lboundary = 1685, uboundary = 1990; else if (effval < 99999) color = 'D042F3', lboundary = 1990, uboundary = 99999; else color = 'white' , lboundary = '', uboundary = ''; break; default: color = 'white', lboundary = '', uboundary = ''; } return [color, (uboundary === 99999 ? (lang === "ru" ? 'Максимальный уровень. Круче только вареные яйца.' : 'Max. level') : (uboundary - effval).toFixed(2) + (lang === "ru" ? ' баллов до следующего ранга' : ' points to next level')) + '<br/>' + (effval - lboundary).toFixed(2) + (lang === "ru" ? ' баллов выше предыдущего ранга' : ' points past previous level')]; } function putTankStats(response) { var UserId = window.location.href.match(/\/(\d+)/)[1], tanks = document.getElementsByClassName("t-profile_tankstype__item"), tank_stats = [], nominalDamage = GetLSData("nominalDamage"), nominalDamageArr = [], wn8Data = GetLSData("WN8Data"), wn8DataArr = [], lvl = 0, tPR = 0, tWN8 = 0, tnaSum = 0; eval("var resp =" + response); if (resp) { for (var key = 0; key < resp.data[UserId].length; key++) { var tank = resp.data[UserId][key]; tank_stats[tank.tank_id] = []; tank_stats[tank.tank_id]['battles'] = tank.all.battles; tank_stats[tank.tank_id]['damage_dealt'] = tank.all.damage_dealt; tank_stats[tank.tank_id]['dropped_capture_points'] = tank.all.dropped_capture_points; tank_stats[tank.tank_id]['frags'] = tank.all.frags; tank_stats[tank.tank_id]['spotted'] = tank.all.spotted; tank_stats[tank.tank_id]['wins'] = tank.all.wins; } } if (nominalDamage) { nominalDamage = eval(nominalDamage); for (i = 0; i < nominalDamage.length; i++) { if (nominalDamage[i].nominalDamage) { nominalDamageArr[(nominalDamage[i].id).toLowerCase()] = []; nominalDamageArr[(nominalDamage[i].id).toLowerCase()].nominalDamage = nominalDamage[i].nominalDamage * 1; nominalDamageArr[(nominalDamage[i].id).toLowerCase()].level = nominalDamage[i].level * 1; } } } else { xdr.xget("http://www.noobmeter.com/tankListJson/elfx_133054", savenominalDamage); } if (wn8Data) { eval("var allwn8Data =" + wn8Data); for (var key = 0; key < allwn8Data.data.length; key++) { t = allwn8Data.data[key]; wn8DataArr[parseInt(t.IDNum)] = []; wn8DataArr[parseInt(t.IDNum)].expDamage = t.expDamage / 1; wn8DataArr[parseInt(t.IDNum)].expSpot = t.expSpot / 1; wn8DataArr[parseInt(t.IDNum)].expFrag = t.expFrag / 1; wn8DataArr[parseInt(t.IDNum)].expDef = t.expDef / 1; wn8DataArr[parseInt(t.IDNum)].expWinRate = (t.expWinRate / 100).toFixed(4); } } else { xdr.xget("http://www.wnefficiency.net/exp/expected_tank_values_latest.json", saveWN8Data); } for (var i = 0; i < tanks.length; i++) { var imgName = (tanks[i].cells[0].getElementsByTagName('img')[0].src.match(/\/[^-]+-([^\/]*)\.png/)[1]).toLowerCase(), tank_id = parseInt(tanks[i].nextElementSibling.getAttribute('data-vehicle-cd')); if (nominalDamageArr[imgName]) { lvl = nominalDamageArr[imgName].level; tnaSum = tank_stats[tank_id]['battles'] * nominalDamageArr[imgName].nominalDamage; } if (tnaSum > 0) { tPR = (500 * (tank_stats[tank_id]['wins'] / tank_stats[tank_id]['battles']) / 0.4856) + (1000 * tank_stats[tank_id]['damage_dealt'] / (tnaSum * 0.975)); var clearedFromPenalties1 = 1500, expectedMinBattles1 = 500, expectedMinAvgTier1 = 6, clearedFromPenalties2 = 1900, expectedMinBattles2 = 2000, expectedMinAvgTier2 = 7; if (tPR > clearedFromPenalties1) tPR = tPR - (tPR - clearedFromPenalties1) * Math.pow(Math.max(0, 1 - (lvl / expectedMinAvgTier1), 1 - (tank_stats[tank_id]['battles'] / expectedMinBattles1)), 0.5); if (tPR > clearedFromPenalties2) tPR = tPR - (tPR - clearedFromPenalties2) * Math.pow(Math.max(0, 1 - (lvl / expectedMinAvgTier2), 1 - (tank_stats[tank_id]['battles'] / expectedMinBattles2)), 0.5); tPR = tPR.toFixed(2); } tanks[i].setAttribute('PR', tPR); if (wn8DataArr[tank_id]) { var expDmg = tank_stats[tank_id]['battles'] * wn8DataArr[tank_id].expDamage, expSpot = tank_stats[tank_id]['battles'] * wn8DataArr[tank_id].expSpot, expFrag = tank_stats[tank_id]['battles'] * wn8DataArr[tank_id].expFrag, expDef = tank_stats[tank_id]['battles'] * wn8DataArr[tank_id].expDef, expWinRate = tank_stats[tank_id]['battles'] * wn8DataArr[tank_id].expWinRate, rDAMAGE = tank_stats[tank_id]['damage_dealt'] / expDmg, rSPOT = tank_stats[tank_id]['spotted'] / expSpot, rFRAG = tank_stats[tank_id]['frags'] / expFrag, rDEF = tank_stats[tank_id]['dropped_capture_points'] / expDef, rWIN = tank_stats[tank_id]['wins'] / expWinRate, rWINc = Math.max(0, (rWIN - 0.71) / (1 - 0.71)), rDAMAGEc = Math.max(0, (rDAMAGE - 0.22) / (1 - 0.22)), rFRAGc = Math.max(0, Math.min(rDAMAGEc + 0.2, (rFRAG - 0.12) / (1 - 0.12))), rSPOTc = Math.max(0, Math.min(rDAMAGEc + 0.1, (rSPOT - 0.38) / (1 - 0.38))), rDEFc = Math.max(0, Math.min(rDAMAGEc + 0.1, (rDEF - 0.10) / (1 - 0.10))), tWN8 = 980 * rDAMAGEc + 210 * rDAMAGEc * rFRAGc + 155 * rFRAGc * rSPOTc + 75 * rDEFc * rFRAGc + 145 * Math.min(1.8, rWINc); } tanks[i].setAttribute('WN8', tWN8); } }