Welcome Guest ( Log In | Register )

291 Pages V « < 140 141 142 143 > »   
Reply to this topicStart new topic
> HV Script Thread, Discuss your creations. Includes guidelines and infos for script creation (2020-02-28 upd)

 
post Mar 29 2016, 21:32
Post #2816
tatarime



2016年12月208日
******
Group: Gold Star Club
Posts: 802
Joined: 23-June 10
Level 500 (Godslayer)


QUOTE(f4tal @ Mar 29 2016, 23:08) *

Great script! So bad I am now playing only PFUDOR and do not change difficulty at all. This script will be very useful for me back to ~200 level =)

tatarime, do I understand right that I need to change "var DIFFICULTY = "PFUDOR";" line to exact difficulty I am comfortable to play with? For example "var DIFFICULTY = "Nintendo";" ?


You are right.
If you are Normal player, you should change to
CODE
var DIFFICULTY = "Normal";
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Mar 30 2016, 03:51
Post #2817
Superlatanium



Dreaming of optimizing the system
**********
Group: Gold Star Club
Posts: 7,647
Joined: 27-November 13
Level 500 (Godslayer)


Not HV, but:

"0 New Messages" vs "1 New Messages" - the difference is not always obvious, but new PMs should be very very obvious. The new message popup is easy to miss as well. So, I just wrote this to change the color of the entire top bar when it's anything other than 0 New Messages:
CODE
// ==UserScript==
// @name        New Messages
// @include     /https?://forums.e-hentai.org/*/
// ==/UserScript==
var userlinks = document.getElementById('userlinks');
if (!userlinks)
  return;
var msgA = userlinks.children[1].children[3];
if (msgA.textContent.substring(0, 1) !== '0')
  userlinks.setAttribute('style', 'background-color:#3399ff');
Change color to whatever you want.

This post has been edited by Superlatanium: Mar 30 2016, 09:20
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Mar 30 2016, 13:25
Post #2818
boulay



Noob
********
Group: Gold Star Club
Posts: 2,675
Joined: 27-June 11
Level 500 (Godslayer)


HV Dark Lite NoScript, v0.2
Now 5% fancier (IMG:[invalid] style_emoticons/default/laugh.gif)

[attachmentid=82942][attachmentid=82943]

Changelog: mainly the battle interface
- Monsters' hp/mp/sp bars were made a bit less poor, since they previously just looked bad.
- Inline Monster letters to number, using my own (very simple) build.
- Inline Battle compact, revamped for this version with larger monster cells.
- Boss/SG/Gods monster cells had their border color changed, this was originally available but it got wiped with HV Dark and its subsequent version. I had to test the ecchiverse to notice this >_>
- Tested with Reloader's leatest version, SpellSpam, HoverPlay and Crackling Cast shouldn't pose problems either.

Screenshots:
Attached Image Attached Image Attached Image

HV Dark NoStylish updated: contains HV Dark, Lite, Lite NoScript, Battle Compact
[attachmentid=82947]
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Mar 31 2016, 08:38
Post #2819
NerfThis



Active Poster
*******
Group: Catgirl Camarilla
Posts: 2,467
Joined: 3-February 14
Level 500 (Ponyslayer)


HVEquipCompare_0.6.5.0 [attachmentid=82999]

Changes:
* 0.6.5.0
- Update to Wiki Ranges data (13 March 2016)
- Fixed 'R' key for Leather and Shade Helmet, Plate Cuirass.
- Fixed switchslot bug.

Post-processing: Staff EDB Pmax values, Arcanist Interference (25% the of Leather)

Some EDB and Proficiency are have same values, but wiki data is different.
If have same value, data use topmost value.
ex) Katalox Holy and Dark EDB are have same values, data use Holy EDB.
Katalox Elec, Wind, Fire, Cold EDB are have same values, data use Elec EDB.
Redwood Supportive and Deprecating Proficiency are have same values, data use Supportive.


-------------------------------------------------------------------------------------------------------

- Log
update old data (v.0.6.4.5, 26 August 2014) to new data (13 March 2016)

total data: 4673 obsolete: 511 updated: 3876 duplicated: 0 burden: 86 interference: 64 equal: 69 miss: 67 wiki table rows: 1165
(skip: 301; Burden (Ethereal), Interference (Ethereal, Battlecaster), EDB, Proficiency, Specific Mitigation)

511 + 3876 + 0 + 86 + 64 + 69 + 67 = 4673

miss: 67

Damage Mitigations: 55 dummy values
Buckler: 20 values (Elem, Crushing, Slashing, Piercing)
Kite Shield: 20 values (Elem, Crushing, Slashing, Piercing)
Force: 15 values (Crushing, Slashing, Piercing)

Burden: 2 dummy values
Force: 2 dummy values (Mithril)

Interference Arcanist: 10 wiki miss values
Shade: 2 values x5 = 10

20 + 20 + 15 + 2 + 10 = 67


QUOTE(tatarime @ Mar 31 2016, 17:02) *

Good work!
But I think there is a bug with DW/Niten.
Line 792:
CODE

if (/Weapon|Staff/i.test(slot)) return 'Main';
if (/Shield/i.test(slot)) return 'Off';

This code return "Main" on the offhand weapon, so I can't compare my Katana to any weapons.
Script Always reference Wakizashi.
Would you fix it?

P.S.
I think there is no problem on comparing DW/Niten to 1H weapons.
The problem is comparing DW/Niten to 2H weapons.


hi, tatarime.
thank you for bug report.
i fix slot assign code for switch slot code. (line 832)

CODE
//var slot = Controller._extractSlot(item.Info.Name,item.Info.Type);
var slot = x.parentNode.firstElementChild.textContent.replace(' Hand', '');


if key q, e, o twice pressed, slot switched Main/Off. (switch only work when compare to One-handed Weapon)
may be it will work. i hope. (IMG:[invalid] style_emoticons/default/smile.gif)

This post has been edited by hansvar92: Mar 31 2016, 22:33
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Mar 31 2016, 09:48
Post #2820
FabulousCupcake



Casual Poster
****
Group: Gold Star Club
Posts: 496
Joined: 15-April 14
Level 451 (Dovahkiin)


I was finally able to read the numbers that appear if you press W with HVEquipCompare after comparing it repeatedly with the wiki datas (IMG:[invalid] style_emoticons/default/heh.gif)
I feel like it needs a bit explanation somewhere, but it could be just me (IMG:[invalid] style_emoticons/default/rolleyes.gif)


A bit note in case I forgot it again (IMG:[invalid] style_emoticons/default/duck.gif)

"SEMLP": Superior/Exquisite/Magnificent/Legendary/Peerless

X:+#: Base value is # higher than X maximum, taken from wiki
X:-#: Base value is # lower than X maximum, also from wiki
e.g.
M:+0.83: Base value is 0.83 higher than Magnificent maximum value logged in the wiki
L:-0.37: Base value is 0.37 lower than Legendary maximum value logged in the wiki

This post has been edited by FabulousCupcake: Mar 31 2016, 09:48
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Mar 31 2016, 10:02
Post #2821
tatarime



2016年12月208日
******
Group: Gold Star Club
Posts: 802
Joined: 23-June 10
Level 500 (Godslayer)


QUOTE(hansvar92 @ Mar 31 2016, 15:38) *

HVEquipCompare_0.6.5.0 [attachmentid=82995]

Good work!
But I think there is a bug with DW/Niten.
Line 792:
CODE

if (/Weapon|Staff/i.test(slot)) return 'Main';
if (/Shield/i.test(slot)) return 'Off';

This code return "Main" on the offhand weapon, so I can't compare my Katana to any weapons.
Script Always reference Wakizashi.
Would you fix it?

P.S.
I think there is no problem on comparing DW/Niten to 1H weapons.
The problem is comparing DW/Niten to 2H weapons.

This post has been edited by tatarime: Mar 31 2016, 10:21
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Mar 31 2016, 20:32
Post #2822
esam



Autistic Infidel
*******
Group: Members
Posts: 2,193
Joined: 23-January 16
Level 427 (Godslayer)


I have no experience with scripts.
I downloaded https://forums.e-hentai.org/index.php?s=&am...t&p=4353125 but no clue what to do with the file. Do I need a program to run it?
Using Chrome
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Mar 31 2016, 20:47
Post #2823
f4tal



Veteran Poster
********
Group: Members
Posts: 2,662
Joined: 10-January 13
Level 416 (Godslayer)


esam, check my FAQ for script installing. You can find link in my sig =)

It may be complicated at first glance, but after installing one-two-three script you will quickly understand a deal and will no have any problem in future. ^^

This post has been edited by f4tal: Mar 31 2016, 20:51
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Mar 31 2016, 20:58
Post #2824
esam



Autistic Infidel
*******
Group: Members
Posts: 2,193
Joined: 23-January 16
Level 427 (Godslayer)


QUOTE(f4tal @ Mar 31 2016, 20:47) *

esam, check my FAQ for script installing. You can find link in my sig =)

It may be complicated at first glance, but after installing one-two-three script you will quickly understand a deal and will no have any problem in future. ^^


Ah wonderful! Having a read now, thanks (°u°)
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Apr 2 2016, 07:34
Post #2825
tatarime



2016年12月208日
******
Group: Gold Star Club
Posts: 802
Joined: 23-June 10
Level 500 (Godslayer)


QUOTE(hansvar92 @ Mar 31 2016, 15:38) *
may be it will work. i hope. (IMG:[invalid] style_emoticons/default/smile.gif)

It's perfect!
Thank you for the quick response. (IMG:[invalid] style_emoticons/default/smile.gif)
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Apr 2 2016, 13:37
Post #2826
boulay



Noob
********
Group: Gold Star Club
Posts: 2,675
Joined: 27-June 11
Level 500 (Godslayer)


HV Dark, v1.2

Minding the details now, since the main layout is (almost) complete.

[attachmentid=83079][attachmentid=83080][attachmentid=83081]

HV Dark Lite:
[attachmentid=83082][attachmentid=83083][attachmentid=83084]

Updated NoStylish pack:
[attachmentid=83087]

Changelog:
- Some minor visual fixes, mainly the hp/mp/sp bars' border that were too white-ish to my taste
- I tried to whip up an Opera version for this, since the modus operanti is basically the same as making one for Chrome.
- Now includes more fixes for scripts:
tatarime's HV Smart Monster Lab 2.0.2, HV Forge Helper & HV Trainer
hansvar92's HV Equipment Comparison 0.6.5.0, HV Magic Scores 2.0.3.5 & Monster Letters to Number
Superlatanium's Income Summary 1.4.6 (minimal ^^)
sssss2's HV Battle Helper 1.0.4 + css & HV Utility 1.7.1

- HV Dark Lite now has an inline monster letters to numbers, note that this function is disabled by default in the full version.
- The forge page has been fixed (again, the third time already).
- The SpellSpam box display has also been fixed for Chrome-based versions (makes it twice).
- The remaining filters have been replaced/erased case by case.

Screenshots:
Attached Image Attached Image
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Apr 6 2016, 11:40
Post #2827
NerfThis



Active Poster
*******
Group: Catgirl Camarilla
Posts: 2,467
Joined: 3-February 14
Level 500 (Ponyslayer)


HVEquipCompare_0.6.5.1 [attachmentid=83295]

Changes:
* 0.6.5.1
- Update to Wiki Ranges data (6 April 2016)
- Added Oak Staff Counter-Resist.

EDB, Proficiency, Elemental Damage Mitigation set maximum wiki value.
before set representative value (Holy/Elec, Supportive) of EDB, Proficiency and Elemental Damage Mitigation.
ex) [attachmentid=83296]

Post-processing: Staff EDB Pmax values, Arcanist Interference (25% the of Leather), Club of Slaughter WD, Power Helmet of Slaughter ADB and Radiant Phase MDB.

Cheat-sheet
f: forum link
h: HTML link
r: open Wiki page

t: original base
b: current base (original + forge/IW)
y: original base vs. {SEMLP}Max
i: original base lv scale
o: original base compare

e: level 0 stat compare, +forge/IW
q: direct stat compare, +forge/IW
u: stat scale with your level

w: compare stats (+forge/IW) vs. {SEMLP}Max

If equipment have forge upgrade or have IW potency or different level, key T, Y, O may be useful better than key B, W, E.

Note: Some new wiki base values are less than old wiki base values (below HV v.0.82, especially non-Pmax)
Don't rely on 100% of new base values (Smax, Emax, Mmax)


-------------------------------------------------------------------------------------------------------
log

total data: 4678 obsolete: 511 updated: 3882 duplicated: 0 burden: 86 interference: 64 equal: 68 miss: 67 wiki table rows: 1165 (skip: 22; Burden (Ethereal), Interference (Ethereal, Battlecaster))

511 + 3882 + 0 + 86 + 64 + 68 + 67 = 4678

miss: 67

Damage Mitigations: 55 dummy values
Buckler: 20 values (Elem, Crushing, Slashing, Piercing)
Kite Shield: 20 values (Elem, Crushing, Slashing, Piercing)
Force: 15 values (Crushing, Slashing, Piercing)

Burden: 2 dummy values
Force: 2 dummy values (Mithril)

Interference Arcanist: 10 wiki miss values
Shade: 2 values x5 = 10

20 + 20 + 15 + 2 + 10 = 67

This post has been edited by hansvar92: Apr 9 2016, 08:15
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Apr 6 2016, 13:15
Post #2828
f4tal



Veteran Poster
********
Group: Members
Posts: 2,662
Joined: 10-January 13
Level 416 (Godslayer)


hansvar92, great work! Thanks for update ^^
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Apr 6 2016, 17:12
Post #2829
Fudo Masamune



Passive Poster
*******
Group: Gold Star Club
Posts: 1,636
Joined: 2-February 10
Level 500 (Ponyslayer)


reloader doesn't work with new tampermonkey updates? (v 4.0.10)

-edit-
adding a semicolon somewhere fix it :/ problem is I forgot where, it's (was) flagged with red x circle in tampermonkey.
oh whatever, at least it's working.

-edit2-
last edit was only for RE, tried to enter arena and....
sometimes (actually most of the time) it doesn't work after new round (page reload) and it needs a few attacks before the reloader start working again :/
oh well, it's 2am and my eyes itch from the flashing, quiting arena then.

This post has been edited by Fudo Masamune: Apr 6 2016, 21:24
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Apr 6 2016, 23:41
Post #2830
FabulousCupcake



Casual Poster
****
Group: Gold Star Club
Posts: 496
Joined: 15-April 14
Level 451 (Dovahkiin)


QUOTE(Fudo Masamune @ Apr 6 2016, 17:12) *

reloader doesn't work with new tampermonkey updates? (v 4.0.10)

-edit-
adding a semicolon somewhere fix it :/ problem is I forgot where, it's (was) flagged with red x circle in tampermonkey.
oh whatever, at least it's working.

-edit2-
last edit was only for RE, tried to enter arena and....
sometimes (actually most of the time) it doesn't work after new round (page reload) and it needs a few attacks before the reloader start working again :/
oh well, it's 2am and my eyes itch from the flashing, quiting arena then.


Which version of reloader/chrome?
It's still working on my end with latest tampermonkey/chromium.

This post has been edited by FabulousCupcake: Apr 6 2016, 23:50
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Apr 7 2016, 03:35
Post #2831
Fudo Masamune



Passive Poster
*******
Group: Gold Star Club
Posts: 1,636
Joined: 2-February 10
Level 500 (Ponyslayer)


QUOTE(FabulousCupcake @ Apr 7 2016, 04:41) *

Which version of reloader/chrome?
It's still working on my end with latest tampermonkey/chromium.


it's the old 1.2, going to try 1.3.3a now.

-edit- it worked fine now (IMG:[invalid] style_emoticons/default/biggrin.gif)

btw it's iron portable 44 with tampermonkey 4.0.10

This post has been edited by Fudo Masamune: Apr 7 2016, 03:46
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Apr 8 2016, 15:54
Post #2832
Juggernaut Santa



Living in HV 0.83 until Tenboro adds the Tower to Persistent
***********
Group: Gold Star Club
Posts: 11,135
Joined: 26-April 12
Level 500 (Ponyslayer)


Equipment Popup has problems with Chrome.
Even if I add "https://forums.e-hentai.org/index.php?*" to the included links, when I hover on equipment links the rectangle appears but stays in constant loading and doesn't show the equipment at all.

Anyway, if I edit the link in the address bar removing the https and reload the page, the equipments show.

Seems like https is blocking something in the script.
Last version of chrome and tampermonkey.

On Firefox+Greasemonkey it works fine with https too, though.



Also, Show Gems of Reloader doesn't work good on Chrome.
Gems does not appear when they're dropped and disappear when you use them
They appear the round following the one they were dropped, and disappear only the round following the one they were used...in simple terms Reloader does not reload the gem icons but waits for the page to reload completely at the end of the round to update their icons.

This post has been edited by ppp82p: Apr 8 2016, 16:23
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Apr 8 2016, 17:22
Post #2833
FabulousCupcake



Casual Poster
****
Group: Gold Star Club
Posts: 496
Joined: 15-April 14
Level 451 (Dovahkiin)


QUOTE(ppp82p @ Apr 8 2016, 15:54) *

Also, Show Gems of Reloader doesn't work good on Chrome.
Gems does not appear when they're dropped and disappear when you use them
They appear the round following the one they were dropped, and disappear only the round following the one they were used...in simple terms Reloader does not reload the gem icons but waits for the page to reload completely at the end of the round to update their icons.


Which version of reloader/chrome?
It shows up fine on my end; v1.3.3a and latest chrome + tampermonkey.

This post has been edited by FabulousCupcake: Apr 8 2016, 17:23
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Apr 8 2016, 17:29
Post #2834
Juggernaut Santa



Living in HV 0.83 until Tenboro adds the Tower to Persistent
***********
Group: Gold Star Club
Posts: 11,135
Joined: 26-April 12
Level 500 (Ponyslayer)


Reloader 1.3.3a + Latest Chrome (49.0.2623.112 m) + Latest Tampermonkey (4.0.10)
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Apr 8 2016, 18:30
Post #2835
FabulousCupcake



Casual Poster
****
Group: Gold Star Club
Posts: 496
Joined: 15-April 14
Level 451 (Dovahkiin)


Huh, that's strange.
I just tested it and the gems definitely shows up immediately on drop without reloading the page, on the same round.

If the issue persists, you might want to try CracklingCast with the reloader ( with mousemelee and gem display disabled ) // ( or simply simrock's vanilla reloader )
iirc it has a built-in gem display feature too.

This post has been edited by FabulousCupcake: Apr 8 2016, 18:31
User is offlineProfile CardPM
Go to the top of the page
+Quote Post


291 Pages V « < 140 141 142 143 > » 
Reply to this topicStart new topic
1 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
0 Members:

 


Lo-Fi Version Time is now: 21st September 2025 - 07:38