CT_leader

Автовоскрешение в гильдии лидеров с накоплением статиcтики

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name           CT_leader
// @namespace      CheckT
// @author         CheckT
// @description    Автовоскрешение в гильдии лидеров с накоплением статиcтики
// @version        1.8
// @encoding       utf-8
// @homepage       https://greatest.deepsurf.us/en/scripts/376269-ct-leader
// @include        https://www.heroeswm.ru/leader_*
// @include        https://www.lordswm.com/leader_*
// @include        http://178.248.235.15/leader_*
// @grant          GM_deleteValue
// @grant          GM_getValue
// @grant          GM_listValues
// @grant          GM_setValue
// ==/UserScript==

(function(){
  initGm();
  var gm_prefix = 'ctldr_';
  var pl_id = getPlayerId();
  var gm_prefix_p = gm_prefix+pl_id+'_';

  var div_lg = document.getElementById('next_lg');
  var div_info = document.createElement('div');
  if(div_lg){
    prepare_info(div_info, true);
    div_lg.parentNode.insertBefore(div_info, div_lg.nextSibling);
  } else {
    var div_global = document.getElementById('Global');
    if(div_global){
      prepare_info(div_info, false);
      div_global.parentNode.previousSibling.appendChild(div_info);
    } else {
      //return; //со страницей что-то не так - не нашли, куда встроиться
    }
  }
  addClickEvent_GM('reset', reset_curr);
  ressurect_main();

  return;

  function prepare_info(div_info, is_regular){
    var ressurect_count_curr = gm_get_num_p('ressurect_count_curr', 0);
    var ressurect_sum_curr = gm_get_num_p('ressurect_sum_curr', 0);
    var ressurect_count = gm_get_num_p('ressurect_count', 0);
    var ressurect_sum = gm_get_num_p('ressurect_sum', 0);
    var ressurect_last = gm_get_num_p('ressurect_last', 0);
    var button = '<a href="#" title="Сбросить текущие данные" id="'+gm_prefix+'reset">(Сбросить)</button>';

    if(is_regular){
      div_info.innerHTML =
        'Всего: восстановлено '+ressurect_count+' раз, общая сумма '+ressurect_sum
        +', среднее '+(ressurect_count>0?(ressurect_sum/ressurect_count).toFixed(0):'n/a')
        +', последнее восстановление '+ressurect_last
        +'<br/>'
        +'Текущее: восстановлено '+ressurect_count_curr+' раз, сумма '+ressurect_sum_curr
        +', среднее '+(ressurect_count_curr>0?(ressurect_sum_curr/ressurect_count_curr).toFixed(0):'n/a')
        +' '+button;
    }else{
      div_info.innerHTML = 'Восстановлено '+ressurect_count+' раз<br/>Общая сумма '+ressurect_sum
        +'<br/>Среднее '+(ressurect_count>0?(ressurect_sum/ressurect_count).toFixed(0):'n/a')
        +'<br/>Последнее восстановление '+ressurect_last
        +'<br/>Текущее: восстановлено '+ressurect_count_curr+' раз'
        +'<br/>Текущее: сумма '+ressurect_sum_curr
        +'<br/>Текущее: среднее '+(ressurect_count_curr>0?(ressurect_sum_curr/ressurect_count_curr).toFixed(0):'n/a')
        +'<br/>'+button;
    }
  }

  function reset_curr(){
    if(confirm('Обнулить текущие счётики? Счётчики "всего" не сбрасываются.')){
      gm_set_p('ressurect_count_curr', 0);
      gm_set_p('ressurect_sum_curr', 0);
      prepare_info(div_info, div_lg);
    }
    return false;
  }

  /*
    <input type=submit style="width:60px;" value="946" onClick="javascript: resurrect_sweet_confirm_all('946');" >
    window.location.href="leader_guild.php?action=res_all&sign=390cd7f233b04517ed3433869bf68e84";
    window.location.href="leader_winter.php?action=res_all&sign=390cd7f233b04517ed3433869bf68e84";
    window.location.href="leader_guild.php?action=res&sign=390cd7f233b04517ed3433869bf68e84&mon_id="+mon;

      если только 1 стек повреждён, нет кнопки "воскресить всех", но ссылка работает
    <input type=submit style="width:60px;" value="30" onClick="javascript: resurrect_sweet_confirm('leprekon', 'Лепреконы', '30');" >
  */

  function ressurect_main(){
    var sum_regexp = /javascript: resurrect_sweet_confirm_all\('(\d+)'\)/;
    var sum_one_regexp = /javascript: resurrect_sweet_confirm\(.+'(\d+)'\)/;

    var cleaned_body = document.body.innerHTML.replace(/,/g,'');

    var sum_check = sum_regexp.exec(cleaned_body);
    if(sum_check){
      ressurect(sum_check[1]);
    } else {
      var sum_one_check = sum_one_regexp.exec(cleaned_body);
      if(sum_one_check){
        ressurect(sum_one_check[1]);
      }
    }
  }

  function ressurect(sum){
    var url_regexp = /"(leader_.+\.php\?action=res_all\&sign=[a-f0-9]+)"/;
    var url_check = url_regexp.exec(document.body.innerHTML);
    if(url_check){
      var ressurect_count = gm_get_num_p('ressurect_count', 0);
      var ressurect_sum = gm_get_num_p('ressurect_sum', 0);
      var ressurect_count_curr = gm_get_num_p('ressurect_count_curr', 0);
      var ressurect_sum_curr = gm_get_num_p('ressurect_sum_curr', 0);
      gm_set_p('ressurect_count', ressurect_count+1);
      gm_set_p('ressurect_sum', ressurect_sum+Number(sum));
      gm_set_p('ressurect_count_curr', ressurect_count_curr+1);
      gm_set_p('ressurect_sum_curr', ressurect_sum_curr+Number(sum));
      gm_set_p('ressurect_last', sum);
      window.location.href = url_check[1];
    }
  }

  function gm_get_num_p(key, def){
    var val = Number(GM_getValue(gm_prefix_p+key, def));
    return isNaN(val) ? def : val;
  }

  function gm_set_p(key, val){
    return GM_setValue(gm_prefix_p+key, val);
  }

  function getPlayerId(){
    var hunter_ref = getI("//a[contains(@href, 'pl_hunter_stat')]");
      //min 2 для home; min 1 для остальных - если включены выпадающие вкладки
      //min 1 для home; min 0 для остальных - если отключены выпадающие вкладки
    if ( !hunter_ref || hunter_ref.snapshotLength == 0 || (hunter_ref.snapshotLength == 1 && location.pathname == '/home.php') ) {
        //отключены вкладки или разлогин
      var ids=/pl_id=(\d+)/.exec(document.cookie);
      return ids ? ids[1] : 'unknown';
    } else {
      return hunter_ref.snapshotItem(0).href.split('?id=')[1];
    }
  }

  function getI(xpath,elem){return document.evaluate(xpath,(elem?elem:document),null,XPathResult.ORDERED_NODE_SNAPSHOT_TYPE,null);}

  function initGm(){
    if (!this.GM_getValue || (this.GM_getValue.toString && this.GM_getValue.toString().indexOf("not supported")>-1)) {
      this.GM_getValue=function (key,def) {
        return localStorage[key] || def;
      };
      this.GM_setValue=function (key,value) {
        return localStorage[key]=value;
      };
      this.GM_deleteValue=function (key) {
        return delete localStorage[key];
      };
    }
    if (!this.GM_listValues || (this.GM_listValues.toString && this.GM_listValues.toString().indexOf("not supported")>-1)) {
      this.GM_listValues=function () {
        var keys=[];
        for (var key in localStorage){
          //в K-Meleon возвращаются все опции всех скриптов
          keys.push(key);
        }
        return keys;
      }
    }
  }
  function $$(id) { return document.getElementById(id); }
  function $$GM(id) { return $$(gm_prefix+id); }
  function addClickEvent_GM(id, func){
    addEvent($$GM(id), "click", func);
  }
  function addEvent(elem, evType, fn) {
    if(elem && fn){
      if (elem.addEventListener)
        elem.addEventListener(evType, fn, false);
      else if (elem.attachEvent)
        elem.attachEvent("on" + evType, fn);
      else
        elem["on" + evType] = fn;
    }
  }
})();