d2jsp
Log InRegister
d2jsp Forums > d2jsp > Ladder Slasher > Sc's Best Item List
Prev11314151617Next
Add Reply New Topic New Poll
Member
Posts: 23,728
Joined: Aug 21 2007
Gold: 433.48
Trader: Trusted
Feb 14 2019 02:20pm
Quote (Grigo @ 14 Feb 2019 21:04)
I'm using Firefox


same script but it is greasemonky instead of tampermonkey
Member
Posts: 46,431
Joined: Oct 6 2007
Gold: 2,864.40
Feb 14 2019 02:24pm
Quote (Meridius @ Feb 14 2019 03:20pm)
same script but it is greasemonky instead of tampermonkey


I'll check this out, thanks.
Member
Posts: 20,758
Joined: Jul 21 2005
Gold: 6,376.70
Feb 15 2019 10:40pm
Sarah (IrishGoddess69) has this:

https://ladderslasher.d2jsp.org/itemHistory.php?i=491710&c=0

if you want to add it.
Member
Posts: 70,321
Joined: Nov 2 2007
Gold: 130,699.43
Trader: Trusted
Feb 16 2019 02:33am
Quote (InsaneBobb @ 16 Feb 2019 05:40)
Sarah (IrishGoddess69) has this:

https://ladderslasher.d2jsp.org/itemHistory.php?i=491710&c=0

if you want to add it.


added ofc ;)
Member
Posts: 4,369
Joined: Apr 11 2018
Gold: 4.80
Feb 19 2019 12:25pm
Not 100% sure if this belongs here. my math tells me in pure ee vita/int it belongs on your top 3.. but, there is sidemods like lifesteal on one of the top 3´s im not sure how you take that into account.

here it is tho, do with the info as you please.



1221037186 - ID // location - https://forums.d2jsp.org/user.php?c=3&i=1135701&p=512454

Angelic amber scale armor
Level Req: 25
Physical Defense: 30 to 120
Magical Defense: 25 to 76

+159% Enhanced Effect
+1 Jubilance
+7% Ice Mastery
+4% Earth Mastery

This post was edited by TTim on Feb 19 2019 12:27pm
Member
Posts: 20,758
Joined: Jul 21 2005
Gold: 6,376.70
Feb 19 2019 05:12pm
Quote (TTim @ Feb 19 2019 11:25am)
Not 100% sure if this belongs here. my math tells me in pure ee vita/int it belongs on your top 3.. but, there is sidemods like lifesteal on one of the top 3´s im not sure how you take that into account.

here it is tho, do with the info as you please.



1221037186 - ID // location - https://forums.d2jsp.org/user.php?c=3&i=1135701&p=512454

Angelic amber scale armor
Level Req: 25
Physical Defense: 30 to 120
Magical Defense: 25 to 76

+159% Enhanced Effect
+1 Jubilance
+7% Ice Mastery
+4% Earth Mastery


Listen here you self deprecating piece of shit!

That armor is beautiful, definitely belongs in the top 3, and you're beautiful too. How DARE you mock your amazing find, and yourself in the process?!!!

[insert 500 lines of rage-filled text here, but please, make it creative]
Members++
Posts: 71,777
Joined: Jun 12 2007
Gold: 495,158.21
Trader: Trusted
Feb 19 2019 06:59pm
Quote (Meridius @ 14 Feb 2019 21:20)
same script but it is greasemonky instead of tampermonkey


Tampermonkey still runs fine on Mozilla aswell
Member
Posts: 20,758
Joined: Jul 21 2005
Gold: 6,376.70
Feb 26 2019 12:03am
Mine. Possibly decent enough to be on this list. Dunno.

https://ladderslasher.d2jsp.org/itemHistory.php?i=17001520&c=0
Member
Posts: 103,313
Joined: Jun 22 2007
Gold: 309.86
Feb 26 2019 12:12am
Quote (Meridius @ Feb 14 2019 01:50pm)
if you use chrome, install tampermonky and use that script:

Code
// ==UserScript==
// @name Show Item IDs
// @namespace http://tampermonkey.net/
// @version 0.1
// @author Dante@JSP
// @match http*://forums.d2jsp.org/user.php?c=*&i=*&p=*
// ==/UserScript==

/* jshint ignore:start */
(function() {
var elements = Array.apply(null, document.querySelectorAll('dd.ce'))
// Get all elements except the first because we don't want that
.slice(1)
// Convert nodeList to native arrays and remove the text elements
.map(a => Array.apply(null, a.childNodes).filter(b => b.nodeType !== 3))
.reduce( (prev, curr) => prev.concat(curr), [])
// Filter empty elements that are at the end
.filter(a => a.className !== 'c');

elements
.reduce( (prev, curr) => {
// Previous node was a comment and current node is an item
if (prev.nodeType === 8 && curr.nodeType === 1) {
const id = prev.data.match(/\d{1,99}/)[0];
const core = document.querySelectorAll('.ftbt')[0].childNodes[1].childNodes[2].childNodes[1].innerHTML === 'Original' ? 0 : 1;
const url = `http://ladderslasher.d2jsp.org/itemHistory.php?i=${id}&c=${core}`

curr.innerHTML += `<br/><a href=${url}>ID: ${id}</a>`;
curr.style.height = '100%'
}

// Always return the node for the next iteration
return curr;
}, {nodeType: null})


var maxHeight = elements
.reduce( (prev, curr) => prev > curr.offsetHeight || !curr.offsetHeight ? prev : curr.offsetHeight, 0);

elements
.forEach(ell => {ell.nodeType === 1 && (ell.style.height = `${maxHeight}px`)});

})()


then you can click items in inventories to open history


oh em gee thank you! was looking for this for so long :lol:

<3
Member
Posts: 39,870
Joined: Jul 28 2007
Gold: 254,315.00
Feb 26 2019 08:23am
Quote (InsaneBobb @ 19 Feb 2019 17:12)
Listen here you self deprecating piece of shit!

That armor is beautiful, definitely belongs in the top 3, and you're beautiful too. How DARE you mock your amazing find, and yourself in the process?!!!

[insert 500 lines of rage-filled text here, but please, make it creative]


:rofl: Creativity is key though. I want to be fully enthralled while reading those lines! Dont make me pop popcorn for bland replies :D
Go Back To Ladder Slasher Topic List
Prev11314151617Next
Add Reply New Topic New Poll