// ==UserScript== // @name hwm_links_to_auction // @homepage https://monkeyguts.com/code.php?id=244 // @description Shows some links to offers in auction (2016.04.18) // @version 2.20 // @namespace ee3188f25b047f7229cc78df2e732ef3 // @include http://178.248.235.15/auction.php // @include http://*.heroeswm.*/auction.php // @include http://*.lordswm.*/auction.php // @include http://178.248.235.15/auction.php?cat=my&sort=0 // @include http://*.heroeswm.*/auction.php?cat=my&sort=0 // @icon https://monkeyguts.com//icon/244.png // @downloadURL none // ==/UserScript== (function () { var version = "2.18"; var elements = new Array('abrasive', 'snake_poison', 'tiger_tusk', 'ice_crystal', 'moon_stone', 'fire_crystal', 'meteorit', 'witch_flower', 'wind_flower', 'fern_flower', 'badgrib'); var res = { 'b_wood' : 1, 'b_ore' : 2, 'b_mercury' : 3, 'b_sulphur' : 4, 'b_crystal' : 5, 'b_gem' : 6 }; var sectors = { "Empire Capital":"01", "East River":"02", "Tiger Lake":"03", "Rogue Wood":"04", "Wolf Dale":"05", "Peaceful Camp":"06", "Lizard Lowland":"07", "Green Wood":"08", "Eagle Nest":"09", "Portal Ruins":"10", "Dragon Caves":"11", "Shining Spring":"12", "Sunny Sity":"13", "Magma Mines":"14", "Bear' Mountain":"15", "Fairy Trees":"16", "Harbour City":"17", "Mithril Coast":"18", "GreatWall":"19", "Titan's Valley":"20", "Fishing Village":"21", "Kingdom Capital":"22", "Ungovernable Steppe":"23", "Crystal Garden":"24", "East Island":"25", "Wilderness":"26", "Sublime Arbor":"27" }; var type_arts, art, search_s, elem, link_art, bool_el; var ems2, ems; ems = document.querySelectorAll( "b > a[href*='auction_lot_protocol.php']"); //Ї®«гзЁ«Ё ¬ ббЁў ўлбв ў«Ґ­­ле «®в®ў for (var i=0;i 0) { type_arts = ems2[0].getAttribute('value'); type_arts = type_arts.substring(0,type_arts.indexOf("#")); link_art = 'http://'+location.hostname+'/auction.php?cat='+type_arts+'&art_type='+art; } } elem = ems[i].parentNode.parentNode; elem.appendChild(document.createElement('br')); var newa = document.createElement('a'); newa.innerHTML = 'HA PblHOK >>'; newa.href = link_art; newa.setAttribute('class', 'pi'); elem.appendChild(newa); } })();