//
// ==UserScript==
// @name HWM_Auctioneer
// @author Tags https://www.heroeswm.ru/pl_info.php?id=7773958
// @namespace http://tampermonkey.net/
// @description Торговый скрипт для HWM.
// @icon https://www.google.com/s2/favicons?sz=64&domain=heroeswm.ru
// @version 1.8
// @match *://www.heroeswm.ru/inventory.php*
// @match *://www.heroeswm.ru/auction_new_lot.php*
// @match *://www.heroeswm.ru/object-info.php*
// @match *://www.heroeswm.ru/house_info.php*
// @match *://www.heroeswm.ru/transfer.php*
// @match *://www.heroeswm.ru/pl_info.php*
// @match *://my.lordswm.com/inventory.php*
// @match *://my.lordswm.com/auction_new_lot.php*
// @match *://my.lordswm.com/object-info.php*
// @match *://my.lordswm.com/house_info.php*
// @match *://my.lordswm.com/transfer.php*
// @match *://my.lordswm.com/pl_info.php*
// @grant GM_deleteValue
// @grant GM_getValue
// @grant GM_listValues
// @grant GM_setValue
// @grant GM_addStyle
// @grant GM_log
// @grant GM_openInTab
// @grant GM_xmlhttpRequest
// ==/UserScript==
var version = '1.8';
var str_script_name = 'HWM_Auctioneer';
var str_url_aut = '/sms-create.php?mailto=Tags&subject=Скрипт: ' + str_script_name + ' v' + version + '. Найдена ошибка:';
//Кнопки мыши
const LMB = 0;
const RMB = 2;
const MMB = 1;
if (typeof GM_deleteValue != 'function') {
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];
};
this.GM_addStyle = function(key) {
let style = document.createElement('style');
style.textContent = key;
document.querySelector("head").appendChild(style);
}
}
if (typeof GM_listValues != 'function') {
this.GM_listValues = function() {
const values = [];
for (let i = 0; i < localStorage.length; i++) {
values.push(localStorage.key(i));
}
return values;
}
}
GM_addStyle(`.dialog {background-color: #F6F3EA; border-radius: 5px; box-sizing: border-box; box-shadow: 0 0 0px 12px rgba(200, 200, 200, 0.5); left: calc(50% - 300px); max-height: calc(100% - 100px); overflow: auto; padding: 15px; position: fixed; top: 50px; z-index: 1105;}
.dialogOverlay {background-color: rgba(0, 0, 0, 0.7); height: 100%; left: 0; position: fixed; top: 0; width: 100%;}
.btn_close {position:absolute;left:calc(100% - 45px);float:right;border:1px solid #abc;width:15px;height:15px;text-align:center;cursor:pointer;}
.btn_settings {text-decoration:underline;cursor:pointer;font-weight:bold;font-size:10px;width:500px;}
.small_text {font-weight:bold;font-size:10px;}
#inv_sell_auction {
width: 25px;
height: 25px;
display: none;
border-radius: 15px;
bottom: 0;
justify-content: center;
align-items: center;
background-color: #503a29;
border-color: #d78334;
position: absolute;
font-size: 0.45em;}
#inv_sell_auction > a > .inv_item_select_img {width: 20px;}
#inv_search_auction .inv_item_select_img {width: 20px;}
#inv_search_auction {
width: 25px;
display: none;
height: 25px;
border-radius: 15px;
right: 0;
position: absolute;
bottom: 0;
font-size: 0.45em;
justify-content: center;
align-items: center;
background-color: #503a29;
border-color: #d78334;}
.inventory_item2:hover #inv_search_auction {display: flex;}
.inventory_item2:hover #inv_sell_auction {display: flex;}
.arts_info.shop_art_info:hover #inv_search_auction {
display: flex;
}.sellable_element {
width: 100%;
display: flex;
flex-direction: row;
justify-content: space-between;
}.wb #inv_sell_auction {
display: flex;
position: unset;
height: fit-content;
}
`);
const MercenaryElements = [ {
name: "абразив",
id: "EL_42"
}, {
name: "змеиный яд",
id: "EL_43"
}, {
name: "клык тигра",
id: "EL_46"
}, {
name: "ледяной кристалл",
id: "EL_44"
}, {
name: "лунный камень",
id: "EL_45"
}, {
name: "огненный кристалл",
id: "EL_40"
},{
name: "осколок метеорита",
id: "EL_37"
}, {
name: "цветок ведьм",
id: "EL_41"
},{
name: "цветок ветров",
id: "EL_39"
}, {
name: "цветок папоротника",
id: "EL_78"
},{
name: "ядовитый гриб",
id: "EL_38"
},]
function getCookie(name) {
let matches = document.cookie.match(new RegExp(
"(?:^|; )" + name.replace(/([\.$?*|{}\(\)\[\]\\\/\+^])/g, '\\$1') + "=([^;]*)"
));
return matches ? decodeURIComponent(matches[1]) : undefined;
}
function addEvent(elem, evType, fn) {
if (elem.addEventListener) {
elem.addEventListener(evType, fn, false);
} else if (elem.attachEvent) {
elem.attachEvent("on" + evType, fn);
} else {
elem["on" + evType] = fn;
}
}
function $(id) {
return document.querySelector(id);
}
function Trim(value) {
return value.replace(/^\s+|\s+$|^( )+|( )+$/g, '');
}
function Assert(ACondition, AMessage) {
if (ACondition) {
return;
}
localStorage['trade.status'] = 'Stoped';
alert('ERROR: ' + AMessage);
throw new Error(AMessage);
}
function FloatFormat(AFloat) {
return Math.round(AFloat).toString();
}
function IntFormatWithThouthandSeparator(num) {
var n = num.toString(),
p = n.indexOf('.');
return n.replace(/\d(?=(?:\d{3})+(?:\.|$))/g, function($0, i) {
return p < 0 || i < p ? ($0 + ',') : $0;
});
}
// ------------------ dialog
function close_setting_form() {
let bg = document.querySelector(`#bgOverlay${str_script_name}`);
let bgc = document.querySelector(`#bgCenter${str_script_name}`);
if (bg) {
bg.style.display = bgc.style.display = 'none';
}
}
function clear_all_params() {
if (confirm("Вы действительно хотите сбросить все сохраненные настройки?")) {
var keys = GM_listValues();
for (var i = 0, key = null; key = keys[i]; i++) {
GM_deleteValue(key);
}
}
}
function setCheck(ch) {
if (GM_getValue(ch) && GM_getValue(ch) == 1) {
GM_setValue(ch, 0);
} else {
GM_setValue(ch, 1);
}
}
function setEdit(id, key) {
var LValue = parseInt($('#' + id).value);
GM_setValue(key, LValue);
}
function show_dialog_base(ASettingsHTML) {
let bg = document.querySelector(`#bgOverlay${str_script_name}`);
let bgc = document.querySelector(`#bgCenter${str_script_name}`);
if (!bg) {
bg = document.createElement('div');
bg.id = 'bgOverlay' + str_script_name;
document.body.appendChild(bg);
bg.className = 'dialogOverlay';
addEvent(bg, 'click', close_setting_form);
bgc = document.createElement('div');
bgc.id = 'bgCenter' + str_script_name;
document.body.appendChild(bgc);
bgc.className = 'dialog';
bgc.innerHTML =
`<div style="border:1px solid #abc;padding:5px;margin:2px;">
<div class="btn_close" id="bt_close${str_script_name}" title="Закрыть">X</div><center>
<table><tr>`+
' <td><b>' + str_script_name + ' <font style="color:#0070FF;">' + version + '</font></b></td>' +
' </tr>' +
` <tr><td><hr/></td></tr><tr>` +
' <td><div id="dialog_content' + str_script_name + '">(Empty)</div></td>' +
' </tr>' +
' <tr><td><hr/></td></tr>' +
' <tr>' +
' <td class="small_text" >' +
' <a class="small_text" href="' + str_url_aut + '">Нашли ошибку?</a> ' +
` <a class="small_text" href="/transfer.php?thanks=${encodeURIComponent(`Подарок. Спасибо за скрипт: ${str_script_name} v.${version}.`)}">Сказать спасибо</a> ` +
' <a class="small_text" style="left:calc(50% - 100px);" href="javascript:void(0);" id="settings_reset' + str_script_name + '">Скинуть все настройки</a> ' +
' </td>' +
' </tr>' +
' <tr>' +
' <td class="small_text" >' +
' Автор: <a class="small_text" href="https://www.heroeswm.ru/pl_info.php?id=7773958">Tags</a>' +
' </td>' +
' </tr>' +
' </table>' +
' </center>' +
'</div>';
addEvent($('#bt_close' + str_script_name), 'click', close_setting_form);
addEvent($('#settings_reset' + str_script_name), 'click', clear_all_params);
}
bg.style.display = bgc.style.display = 'block';
$('#dialog_content' + str_script_name).innerHTML = ASettingsHTML;
}
function show_settings_base(ASettingsHTML) {
show_dialog_base('<div><b>Настройки:</b></div>' + ASettingsHTML);
}
// -----------------------------------------------
var GlobalCultureName = location.href.match('lordswm') ? "en-US" : "ru-RU",
GlobalStrings = {
"ru-RU": {
Sell: "Пр-ь:",
_30m: "30м",
_1h: "1ч",
_3h: "3ч",
_6h: "6ч",
_12h: "12ч",
_1d: "1д",
_2d: "2д",
_3d: "3д",
},
"en-US": {
Sell: "Sell:",
_30m: "30m",
_1h: "1h",
_3h: "3h",
_6h: "6h",
_12h: "12h",
_1d: "1d",
_2d: "2d",
_3d: "3d",
}
},
GlobalLocalizedString = GlobalStrings[GlobalCultureName];
function CreateSearchButtons() {
const items = Array.from(document.getElementsByClassName('arts_info shop_art_info'));
console.log(items);
for (let item of items) {
item.appendChild(createSearchButton(`${item.children[1].href}`))
}
}
function createSearchButton(link) {
console.log(`Create search button for link ${link}`)
let searchDiv = document.createElement("div");
searchDiv.id = "inv_search_auction";
searchDiv.classList.add("inv_item_select")
let elemLink = document.createElement("a");
elemLink.innerHTML = `<img hint=\"Найти на рынке\" title=\"Найти на рынке\" src=\"https://dcdn.heroeswm.ru/i/shop_images/magnifying_glass_icon_32.png\" hwm_hint_added=\"1\" class=\"inv_item_select_img\">`;
searchDiv.onclick = function(e) {
if(location.href.includes('/inventory.php')){
document.getElementById('inv_menu').getElementsByClassName('inv_btn_close show_hint')[0].click();
}
let target = "_blank";
let btn = 0;
switch (e.button) {
case RMB:
return;
case MMB:
btn = MMB;
break;
case LMB:
default:
btn = LMB;
break;
}
console.log(`pageTarget=${target}; buttonKey=${btn} isCtrlKeyPressed=${e.ctrlKey}`);
fetch(`${link}`).then(function(response) {
return response.text();
}).then(function(data) {
let itemAuctionLink = Array.from(new DOMParser().parseFromString(data, "text/html").getElementsByClassName('art_info_left_block')[0].childNodes[1].childNodes).filter(a => a.href.includes('auction'))[0].href.replace(window.location.origin, "");
console.log(`Fetched link ${itemAuctionLink}`)
if(location.href.includes('/inventory.php')){
document.getElementById('inv_menu').getElementsByClassName('inv_btn_close show_hint')[0].click();}
console.log(`Let try to create a new tab for auc link`)
let popup = window.open(itemAuctionLink, target);
console.log(`popup result: ${popup}`);
popupBlockerChecker.check(popup);
if (popup == null) {
console.log("Cannot create window, possibly blocked")
}
}).catch(function(e) {
console.log(e);
})
}
if(location.href.includes('/inventory.php')){
searchDiv.onmouseup = function(e) {
document.getElementById('inv_menu').getElementsByClassName('inv_btn_close show_hint')[0].click();
}}
searchDiv.appendChild(elemLink);
return searchDiv;
}
function AddNewLotHrefs() {
const local_arts = this.arts;
const sellableArts = local_arts.filter(art => {
return art.transfer_ok && art.transfer_ok === 1 && art.durability1 > 0
});
let inventory = Array.from(document.getElementById("inventory_block").childNodes)
if (local_arts) {
for (let art of local_arts) {
const elem = inventory.filter(o => o.attributes.art_idx && o.attributes.art_idx.value === local_arts.indexOf(art).toString())[0]
if (elem) {
if (Array.from(elem.childNodes).filter(e => e.innerHTML.includes("Найти на рынке")).length === 0) {
elem.appendChild(createSearchButton(`/art_info.php?id=${art.art_id.split('@')[0]}`));
}
}
}
}
if (sellableArts) {
for (let art of sellableArts) {
const elem = inventory.filter(o => o.attributes.art_idx && o.attributes.art_idx.value === local_arts.indexOf(art).toString())[0]
if (elem) {
if (Array.from(elem.childNodes).filter(e => e.innerHTML.includes("Продать")).length === 0) {
let sellDiv = document.createElement("div");
sellDiv.id = "inv_sell_auction";
sellDiv.classList.add("inv_item_select")
sellDiv.innerHTML = `<a title=\"Продать\" href=\"/auction_new_lot.php?art=${art.art_id}@${art.id}&name=${encodeURI(art.name)}&durability=${encodeURI(art.durability1+"/"+art.durability2)}\">` +
`<img hint=\"Продать\" src=\"https://dcdn2.heroeswm.ru/i/r/48/gold.png\" hwm_hint_added=\"1\" class=\"inv_item_select_img\"></a>`;
elem.appendChild(sellDiv)
}
}
}
}
var inventoryDiv = document.getElementById("inventory_block");
if (inventoryDiv && document.getElementById("hwm_optionsHWM_Auctioneer") === null) {
let LDiv = document.createElement('div');
LDiv.innerHTML = `<div id="hwm_options${str_script_name}" style="position: absolute;right: 2em;bottom: 1em;text-decoration: underline;cursor: pointer;font-weight: bold;font-size: 10px;">Настройки ${str_script_name}</div>`;
inventoryDiv.appendChild(LDiv);
addEvent($(`#hwm_options${str_script_name}`), 'click', open_setting_form);
}
}
function PriceTrimNewLotForm() {
document.forms.f.price.value = document.forms.f.price.value.trim().replace(/[^\d]/g, '');
}
function SavePrice() {
var LSelect = document.forms.f.item;
var LPrice = parseInt(document.forms.f.price.value);
var LName = LSelect.options[LSelect.selectedIndex].text.split(' (')[0].split(' [i]')[0];
if (LName != '') {
let LInfo = document.createTextNode('');
LInfo = $('#save_price_info');
if (!LInfo) {
LInfo = document.createElement('b');
LInfo.id = 'save_price_info';
$('#id_save_price').parentNode.appendChild(LInfo);
}
if (LPrice && (LPrice != 0) && (LPrice != '')) {
GM_setValue(LName, LPrice);
LInfo.innerHTML = 'Сохранена цена ' + LPrice + ' для артефакта "' + LName + '"';
} else {
GM_deleteValue(LName);
LInfo.innerHTML = 'Удалена цена для артефакта "' + LName + '"';
}
}
}
function LoadPrice() {
var LSelect = document.forms.f.item;
var LPriceEl = document.forms.f.price;
var LName = LSelect.options[LSelect.selectedIndex].text.split(' (')[0].split(' [i]')[0];
LPriceEl.value = GM_getValue(LName, '0');
}
function open_setting_form() {
show_settings_base('<input type="checkbox" id="id_one_click" title="Выставлять лот в один клик"> Выставлять лот в один клик');
var check_one_click = $('#id_one_click');
check_one_click.checked = GM_getValue('one_click', 0) == 1 ? 'checked' : '';
addEvent(check_one_click, "click", function() {
setCheck('one_click');
});
}
function DecrementPrice(value) {
var parsed = parseInt(document.forms.f.price.value)
document.forms.f.price.value = isNaN(parsed) ? 0 - parseInt(value) : parsed - parseInt(value);
}
function IncrementPrice(value) {
var parsed = parseInt(document.forms.f.price.value)
document.forms.f.price.value = isNaN(parsed) ? 0 + parseInt(value) : parsed + parseInt(value);
}
function InitNewLotForm() {
if (document.forms.f.sign) {
if (GM_getValue('one_click', 0) == 1) {
document.forms.f.submit();
}
} else {
var LSelect = document.forms.f.item;
addEvent(LSelect, 'change', LoadPrice);
const params = new URLSearchParams(window.location.search);
var art = params.get("art");
var name = params.get("name");
var durability = params.get("durability");
if (art != null) {
document.getElementById("sel").options.add(new Option(`${name} ${durability}`, art));
document.getElementById("sel").options.selectedIndex = document.getElementById("sel").options.length - 1;
this.check_selection();
document.getElementById("count").value = 1
}
var element = params.get("element");
if (element) {
let options = Array.from(document.getElementById('sel').options);
let searchedOption = options.filter(e => e.value === element).pop();
let index = options.indexOf(searchedOption);
document.getElementById('sel').options.selectedIndex = index;
}
var LCountEl = document.forms.f.count;
var LCount = 1;
LCountEl.value = LCount;
var LPriceEl = document.forms.f.price;
addEvent(LPriceEl, "change", PriceTrimNewLotForm);
addEvent(LPriceEl, "keyup", PriceTrimNewLotForm);
addEvent(LPriceEl, "paste", PriceTrimNewLotForm);
LoadPrice();
let LNewDiv = document.createElement('b');
LNewDiv.innerHTML = '<input type="button" style="width:80; margin-left:25px; margin-right: 25px;" id="id_save_price" value="Сохранить">';
LPriceEl.parentNode.insertBefore(LNewDiv, LPriceEl.nextSibling);
addEvent($('#id_save_price'), "click", SavePrice);
let input = document.createElement('input');
input.type = "button";
input.value = "-10";
input.addEventListener("click", function(e) {
DecrementPrice(10)
});
LPriceEl.parentNode.insertBefore(input, LPriceEl.nextSibling);
input = document.createElement('input');
input.type = "button";
input.value = "-100";
input.addEventListener("click", function(e) {
DecrementPrice(100)
});
LPriceEl.parentNode.insertBefore(input, LPriceEl.nextSibling);
input = document.createElement('input');
input.type = "button";
input.value = "-1000";
input.addEventListener("click", function(e) {
DecrementPrice(1000)
});
LPriceEl.parentNode.insertBefore(input, LPriceEl.nextSibling);
input = document.createElement('input');
input.type = "button";
input.value = "+1000";
input.addEventListener("click", function(e) {
IncrementPrice(1000)
});
LPriceEl.parentNode.insertBefore(input, LPriceEl.nextSibling);
input = document.createElement('input');
input.type = "button";
input.value = "+100";
input.addEventListener("click", function(e) {
IncrementPrice(100)
});
LPriceEl.parentNode.insertBefore(input, LPriceEl.nextSibling);
input = document.createElement('input');
input.type = "button";
input.value = "+10";
input.addEventListener("click", function(e) {
IncrementPrice(10)
});
LPriceEl.parentNode.insertBefore(input, LPriceEl.nextSibling);
let LDiv = document.createElement('div');
LDiv.innerHTML = `<div id="hwm_options${str_script_name}" style="display: inline;text-decoration: underline;cursor: pointer;font-weight: bold;font-size: 10px;">Настройки ${str_script_name}</div>`;
document.forms.f.appendChild(LDiv);
addEvent($(`#hwm_options${str_script_name}`), 'click', open_setting_form);
}
}
var popupBlockerChecker = {
check: function(popup_window) {
var scope = this;
if (popup_window) {
if (/chrome/.test(navigator.userAgent.toLowerCase())) {
setTimeout(function() {
scope.is_popup_blocked(scope, popup_window);
}, 200);
} else {
popup_window.onload = function() {
scope.is_popup_blocked(scope, popup_window);
};
}
} else {
scope.displayError();
}
},
is_popup_blocked: function(scope, popup_window) {
if ((popup_window.innerHeight > 0) == false) {
scope.displayError();
}
},
displayError: function() {
console.log("Включён блокировщик всплывающих окон.");
swal("Включён блокировщик всплывающих окон. Поиск предмета на рынке невозможен.");
}
};
function CreateSellElements() {
let isOwnPage = getCookie("pl_id") === location.search.split('?id=').slice(1).pop()
if (isOwnPage) {
let elementsTable = document.getElementsByClassName('wb')[10];
//Вытаскиваем все доступные элементы и превращаем в объекты.
let items = elementsTable.innerHTML.split(/ /).filter(e => e !== "").map(s => s.replaceAll("<b>", "").replaceAll("<br>", "").replaceAll("</b>", "")).map(e => ({
name: e.split(':')[0],
value: e.split(':')[1]
}));
//Чистим табличку
elementsTable.innerHTML = "";
let splitter = false;
for (let item of items) {
let div = document.createElement('div');
div.innerHTML = `<div> <b>${item.name}</b>: ${item.value}</div>`;
elementsTable.appendChild(div);
if (MercenaryElements.filter(e => e.name === item.name).length > 0) {
if (splitter === false) {
//Вставляем обратно разделитель
elementsTable.insertBefore(document.createElement('br'), div)
splitter = true;
}
div.classList.add("sellable_element");
let sellDiv = document.createElement("div");
sellDiv.id = "inv_sell_auction";
sellDiv.classList.add("inv_item_select")
sellDiv.innerHTML = `<a title="Продать" href=\"/auction_new_lot.php?element=${MercenaryElements.filter(e => e.name === item.name).pop().id}\">` +
`<img hint="Продать" src="https://dcdn2.heroeswm.ru/i/r/48/gold.png" hwm_hint_added="1" class="inv_item_select_img" style="width: 14px;">`;
div.appendChild(sellDiv)
}
}
}
}
function Init() {
try {
switch (true) {
case location.href.includes('/inventory.php'):
setInterval(() => AddNewLotHrefs(), 500);
break;
case location.href.includes('/auction_new_lot.php'):
InitNewLotForm();
break;
case location.href.includes('/pl_info.php'):
CreateSellElements();
case location.href.includes('/object-info.php'):
case location.href.includes('/house_info.php'):
CreateSearchButtons();
break;
case location.href.includes('/transfer.php'):
var LSps = new URLSearchParams(location.search).get('thanks');
if (LSps != null) {
document.getElementsByName("nick")[0].value = 'Tags';
document.getElementsByName("gold")[0].value = '1000';
document.getElementsByName("desc")[0].value = LSps;
}
break;
default:
break;
}
} catch (error) {
console.log(error)
}
}
Init();