Welcome Guest ( Log In | Register )

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

 
post Oct 18 2014, 14:09
Post #1747
Kazsax



Newcomer
**
Group: Gold Star Club
Posts: 70
Joined: 1-October 09
Level 418 (Godslayer)


QUOTE(Razor320 @ Oct 18 2014, 09:31) *

kazsax11, try to switch to custom font in settings.

Javascript engine doesn't throw alert boxes with exceptions by default (well, not anymore, once upon a time this was other way around), usually when something isn't work like intended and browser is responsive it means script terminated early in unusual way.

Thanks, worked perfect.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Oct 19 2014, 11:10
Post #1748
n125



Elite Poster
*********
Group: Gold Star Club
Posts: 6,282
Joined: 23-May 08
Level 500 (Godslayer)


Hate to ask, but is there a script that will check all of your monsters for gifts? Preferably one that lets you check above a minimum PL. I know that Vriska's Monster Lab Babysitter does this, but I don't need to feed the farm every day.

This post has been edited by n125: Oct 19 2014, 11:10
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Oct 19 2014, 18:15
Post #1749
Falbala456



Active Poster
*******
Group: Members
Posts: 1,176
Joined: 21-April 09
Level 353 (Godslayer)


QUOTE(midoriyama)
I just installed Greasemonkey and HV Stat 5.6.5.1 for my Firefox 32.0.3 (a new computer with Linux, in case it might be relevant).

Greasemonkey is enabled, HVStat is enabled, but I don't see any changes whatsoever.

I haven't read the whole 87 pages of this thread, but I suppose the problem is already commented here (→ [github.com] [github.com] https://github.com/GaryMcNabb/HVSTAT/wiki/Changelog-v5.6.5.1 ) and is still unsolved. In that case, is there an alternate script available for newer browsers & versions of HV?


Oh great, I just reinstalled firefox after some problems and now that >_>.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Oct 20 2014, 11:04
Post #1750
oohmrparis



We are ping-pong player
*****
Group: Gold Star Club
Posts: 524
Joined: 18-June 13
Level 500 (Ponyslayer)


HV counter plus v3.6
Attached File  HV___counter_plus.user.zip ( 1.41k ) Number of downloads: 904


show battleturns and runtimes with popup
't/s' is the number of turns per second (turns / second)

・IW bug fixed.
・display design fixed.


This post has been edited by oohmrparis: Oct 20 2014, 11:08
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Oct 20 2014, 11:07
Post #1751
oohmrparis



We are ping-pong player
*****
Group: Gold Star Club
Posts: 524
Joined: 18-June 13
Level 500 (Ponyslayer)


HV conditioner v1.6

Attached File  HV_conditioner.user.zip ( 2.67k ) Number of downloads: 286


CODE
var prof = {  
  filter: 100,  
  best: '#1100CD',  
  better: '#00B000'
};



ALL : Repair equipment of less than the number of filter when you click. Default is less than 100%. Text color changes red when material is not enough.
Right click : Repair the equipment if the one can repair.
Change text color if the condition is 76 or 51(best) and 77~80 or 52~60(better). Default is blue when best, green when better. Specified in the color name or color code.

・became faster. (use Ajax)
・display design fixed? (My browser cannot confirm this bug)
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Oct 21 2014, 22:01
Post #1752
Dan31



Chilling around
********
Group: Members
Posts: 4,399
Joined: 26-March 12
Level 491 (Godslayer)


Some time ago, I made a script to compile a list of items from an equipment pane, for shrining results.

It's rather basic and may need rework.

It compiles a list of for all unlocked gear with ID, gear name, pxp and bazaar price when visiting the equipment store.

Attached File  HV___List_Items.user.js.txt ( 912bytes ) Number of downloads: 75
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Oct 22 2014, 02:04
Post #1753
djackallstar



ดีjackallstar
**********
Group: Gold Star Club
Posts: 8,221
Joined: 23-July 14
Level 500 (Godslayer)


QUOTE(ctxl @ Sep 27 2014, 22:07) *
now hides your useless salvaged/sold account-bound junk by default
you're given a [i.imgur.com] 'Show All' thing to click if you want them back
[pastie.org] pastie
[pastebin.com] pastebin

Thanks a lot, I don't need to dig thru the trash heap any more. (IMG:[invalid] style_emoticons/default/smile.gif)

QUOTE(oohmrparis @ Oct 20 2014, 17:07) *
HV conditioner v1.6
-snip-

Nice job. (IMG:[invalid] style_emoticons/default/smile.gif)
A suggestion: Add a color to the text when cond%<50% to warn the player:
var prof = {
filter: 100,
best: 'red',
better: 'blue',
bad: 'purple'
};
...
if (info[1] >= 50) {
var diff = info[1] - Math.floor(info[1] / 25) * 25;
var num = info[1] >= 75? 5: 10;
if (diff == 1) color = prof.best;
else if (diff && diff <= num) color = prof.better;
else color = '#5C0D11';
}
else { color = bad; }
pane.style.color = color;

QUOTE(Dan31 @ Oct 22 2014, 04:01) *

Some time ago, I made a script to compile a list of items from an equipment pane, for shrining results.
It's rather basic and may need rework.
It compiles a list of for all unlocked gear with ID, gear name, pxp and bazaar price when visiting the equipment store.
Attached File  HV___List_Items.user.js.txt ( 912bytes ) Number of downloads: 75

Thanks for sharing.
Just wanna say that if someone wants the list to be automatically copied into the clipboard, add this to the metadata block:
CODE
@grant GM_setClipboard

And replace
CODE
window.prompt("Copy this (CTRL+C)):", to_print);

with this
CODE
GM_setClipboard(to_print)


This post has been edited by djackallstar: Oct 22 2014, 02:05
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Oct 23 2014, 07:47
Post #1754
tetron



Certified Retard!
*********
Group: Gold Star Club
Posts: 5,583
Joined: 30-July 14
Level 488 (Godslayer)


QUOTE(oohmrparis @ Oct 20 2014, 14:37) *

HV conditioner v1.6

Attached File  HV_conditioner.user.zip ( 2.67k ) Number of downloads: 286


CODE
var prof = {  
  filter: 100,  
  best: '#1100CD',  
  better: '#00B000'
};

ALL : Repair equipment of less than the number of filter when you click. Default is less than 100%. Text color changes red when material is not enough.
Right click : Repair the equipment if the one can repair.
Change text color if the condition is 76 or 51(best) and 77~80 or 52~60(better). Default is blue when best, green when better. Specified in the color name or color code.

・became faster. (use Ajax)
・display design fixed? (My browser cannot confirm this bug)


Color change not happening (Except for the "lack of material" case) in Iron 28 (Not the portable one). (IMG:[invalid] style_emoticons/default/sad.gif)
Wait. Just reinstalled Iron 28. Script is working properly now. (IMG:[invalid] style_emoticons/default/smile.gif)

This post has been edited by tetron: Oct 23 2014, 07:59
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Oct 23 2014, 17:59
Post #1755
djackallstar



ดีjackallstar
**********
Group: Gold Star Club
Posts: 8,221
Joined: 23-July 14
Level 500 (Godslayer)


QUOTE(djackallstar @ Sep 12 2014, 18:33) *

Script name
Realtime Auction Countdown Timer

Fixed some bugs. [github.com] Download link unchanged.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Oct 23 2014, 18:35
Post #1756
tetron



Certified Retard!
*********
Group: Gold Star Club
Posts: 5,583
Joined: 30-July 14
Level 488 (Godslayer)


-double post-

This post has been edited by tetron: Oct 23 2014, 18:36
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Oct 23 2014, 18:35
Post #1757
tetron



Certified Retard!
*********
Group: Gold Star Club
Posts: 5,583
Joined: 30-July 14
Level 488 (Godslayer)


QUOTE(djackallstar @ Oct 23 2014, 21:29) *

Fixed some bugs. [github.com] Download link unchanged.

Malfunctioning. Showing way more time! Example:

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

 
post Oct 23 2014, 19:06
Post #1758
djackallstar



ดีjackallstar
**********
Group: Gold Star Club
Posts: 8,221
Joined: 23-July 14
Level 500 (Godslayer)


QUOTE(tetron @ Oct 24 2014, 00:35) *

Malfunctioning. Showing way more time! Example:

Attached Image

I forgot to append "&offset=..." to the URL. (IMG:[invalid] style_emoticons/default/wacko.gif)
Thanks for reporting this, it's fixed now.
(IMG:[i.imgur.com] http://i.imgur.com/d7ExwuS.png)

This post has been edited by djackallstar: Oct 23 2014, 19:09
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Oct 25 2014, 06:12
Post #1759
tuypo



Casual Poster
***
Group: Members
Posts: 178
Joined: 6-January 14
Level 116 (Ascended)


where am i meant to extract the equipment comparison script to?
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Oct 25 2014, 08:17
Post #1760
Razor320



Casual Poster
***
Group: Members
Posts: 220
Joined: 17-October 13
Level 361 (Godslayer)


Search "How to install user script" using your favorite internet search service provider.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Oct 26 2014, 11:47
Post #1761
crazymagic



Newcomer
**
Group: Members
Posts: 65
Joined: 23-April 11
Level 231 (Godslayer)


Does the No "You are Victorious Popup" still work for anyone on Chrome?
The only scripts active when I'm playing hentaiverse are the HV scripts but the "Victorious Popup" one is the only one that doesn't work. It works on Firefox for some reason though.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Oct 27 2014, 03:32
Post #1762
kumosu



Nazchu~
****
Group: Members
Posts: 428
Joined: 11-July 14
Level 300 (Hero)


QUOTE(crazymagic @ Oct 26 2014, 18:47) *

Does the No "You are Victorious Popup" still work for anyone on Chrome?
The only scripts active when I'm playing hentaiverse are the HV scripts but the "Victorious Popup" one is the only one that doesn't work. It works on Firefox for some reason though.

You use Tampermonkey right.
You can drag the .js file into Chrome extension tab, it work and much faster than tamper. But the stupid current Chrome kill all scripts, so either find a lower version of Chrome, or use Iron.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Oct 27 2014, 13:47
Post #1763
Razor320



Casual Poster
***
Group: Members
Posts: 220
Joined: 17-October 13
Level 361 (Godslayer)


QUOTE(kumosu @ Oct 27 2014, 05:32) *

You use Tampermonkey right.
You can drag the .js file into Chrome extension tab, it work and much faster than tamper. But the stupid current Chrome kill all scripts, so either find a lower version of Chrome, or use Iron.

With Google Chrome you can switch to Dev channel - stable enough and allows to use any extensions. Open "Extensions" page, check "Developer mode" box, then drop userscript file on window.

FYI, unstable channel for this browser called "Canary".
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Oct 28 2014, 17:17
Post #1764
Zoom0211



Casual Poster
****
Group: Gold Star Club
Posts: 290
Joined: 5-June 14
Level 500 (Godslayer)


QUOTE(Gasior @ Oct 7 2014, 23:19) *

Made in free time.

HV Equipment Comparison 0.6.4.0

Attached File  HVEquipCompare_0.6.4.0.zip ( 21.15k ) Number of downloads: 1826


- Update to Wiki Ranges data (26 August 2014)
- Update to HV 0.81
- Added " T " hotkey to calculate approximate base values before forge&iw (not sure about iw part)
-- work only on pages where you can see "Upgrades and Enchantments"
- Now also compares Durability (max Condition)


Thx for your update,but here have some problem
[imgur.com] http://imgur.com/qji3Yop
[imgur.com] http://imgur.com/Rs7meiQ

How could Evade be S-5 (IMG:[invalid] style_emoticons/default/dry.gif)

User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Oct 28 2014, 17:40
Post #1765
arialinnoc



Rest time!! _(:з」∠)_
**********
Group: Gold Star Club
Posts: 7,704
Joined: 6-April 10
Level 500 (Newbie)


QUOTE(Zoom0211 @ Oct 28 2014, 22:17) *

Thx for your update,but here have some problem
[imgur.com] http://imgur.com/qji3Yop
[imgur.com] http://imgur.com/Rs7meiQ

How could Evade be S-5 (IMG:[invalid] style_emoticons/default/dry.gif)


Fixed the pic for you (IMG:[invalid] style_emoticons/default/tongue.gif)

(IMG:[i.imgur.com] http://i.imgur.com/0P0pFsR.png)

It should be S-1.24 Evasion.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Oct 28 2014, 19:23
Post #1766
arialinnoc



Rest time!! _(:з」∠)_
**********
Group: Gold Star Club
Posts: 7,704
Joined: 6-April 10
Level 500 (Newbie)


QUOTE(arialinnoc @ Oct 28 2014, 22:40) *

Fixed the pic for you (IMG:[invalid] style_emoticons/default/tongue.gif)

(IMG:[i.imgur.com] http://i.imgur.com/0P0pFsR.png)

It should be S-1.24 Evasion.


Fixed after I did this--->
QUOTE
Change USE_MULTIPLIER to FALSE at the beginning of script.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post


291 Pages V « < 87 88 89 90 > » 
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: 15th September 2025 - 13:10