d2jsp
Log InRegister
d2jsp Forums > d2jsp > Ladder Slasher > Slashers Helper > Userscript
Add Reply New Topic New Poll
Member
Posts: 4,622
Joined: Aug 3 2008
Gold: 525.25
May 7 2020 09:32am
My original userscript removed the arrows from the ui and the item compare,after i released it paul added them to the game. (thanks paul)
I now have a newer version if anyone wants to use it.


I'm open to ideas for new features. (only UI features are allowed, no game play features)

the newer version currently.
  • removes item compare
  • removes the arrows from cata
  • lets you fish from town, like the other skills. (no more lake)
  • keeps inventory on main page. (no more auto switching to small pages)
  • removes the trapdoors from view, they can't be clicked with the mouse on accident** (you can still use them with the z key)
  • is compatible with chrome and firefox.


I left the older portions in because my settings somehow always reset.

https://pastebin.com/i5fkakfX





**you will still fall in trapdoors if you are not a td detecting class.

This post was edited by SilentXer0 on May 7 2020 09:37am
Member
Posts: 81,365
Joined: Oct 9 2007
Gold: 244,331.60
May 7 2020 09:34am
:thumbsup:
Member
Posts: 18,393
Joined: Nov 27 2005
Gold: 2,546.15
Trader: Trusted
May 7 2020 09:47am
You are a legend. I hate removing item compare every time
Member
Posts: 21,575
Joined: May 13 2008
Gold: 14,501.17
May 7 2020 09:56am
nice, thanks Dan :hail:
Member
Posts: 4,622
Joined: Aug 3 2008
Gold: 525.25
May 7 2020 10:12am
too late to edit so i'll add this here.

Quote (njaguar @ Feb 16 2015 11:26am)
Yes, you guys are more than welcome to do UI changes/tweaks, as long as they don't give any unfair advantages, or automate anything.
Member
Posts: 40,183
Joined: Apr 29 2006
Gold: 20,826.51
May 7 2020 12:56pm
Don't know much about user scripts, so, am I to assume (bad of me) that all those listed are "on" when you add it into chrome (still not sure how to add scripts to browser)?

The only thing I would want out of that list is to "Remove Item Compare", I actually use the arrows when I have a drink or cig in my left hand and navigate the catacomb with mouse. Also, it doesn't effect the "Auto Click Attack" (something like that) settings based on your settings? I have mine "on" (not ticked)?
Member
Posts: 73,189
Joined: Jun 12 2007
Gold: 2.63
Trader: Trusted
May 7 2020 03:35pm
Quote (izParagonzi @ 7 May 2020 20:56)
Don't know much about user scripts, so, am I to assume (bad of me) that all those listed are "on" when you add it into chrome (still not sure how to add scripts to browser)?

The only thing I would want out of that list is to "Remove Item Compare", I actually use the arrows when I have a drink or cig in my left hand and navigate the catacomb with mouse. Also, it doesn't effect the "Auto Click Attack" (something like that) settings based on your settings? I have mine "on" (not ticked)?


Google Tampermonkey and get that for chrome

Then you click on the tampermonkey up rightside (should be next to URL search)


Create new script:

Code
// ==UserScript==
// @name Slashers Helper
// @namespace Slashers Helper
// @include http*://ladderslasher.d2jsp.org/*
// @grant none
// @version 3.1
// ==/UserScript==




function addGlobalStyle(css) {
var head;var style;
head = document.getElementsByTagName('head') [0];
if (!head) {return;}
style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = css;
head.appendChild(style);}

addGlobalStyle('.itemBoxRight { display:none; border:1px solid red}');


That should be ONLY the comparison

This post was edited by NR1 on May 7 2020 03:35pm
Go Back To Ladder Slasher Topic List
Add Reply New Topic New Poll