Loading. Please Wait... 
 |
 |
 |
HV Script Thread, Discuss your creations. Includes guidelines and infos for script creation (2020-02-28 upd) |
|
Oct 18 2014, 14:09
|
Kazsax
Newcomer
  Group: Gold Star Club
Posts: 70
Joined: 1-October 09

|
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.
|
|
|
Oct 19 2014, 11:10
|
n125
Group: Gold Star Club
Posts: 6,282
Joined: 23-May 08

|
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
|
|
|
|
 |
|
Oct 19 2014, 18:15
|
Falbala456
Group: Members
Posts: 1,176
Joined: 21-April 09

|
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 >_>.
|
|
|
|
 |
|
Oct 20 2014, 11:04
|
oohmrparis
Group: Gold Star Club
Posts: 524
Joined: 18-June 13

|
HV counter plus v3.6
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
|
|
|
|
 |
|
Oct 20 2014, 11:07
|
oohmrparis
Group: Gold Star Club
Posts: 524
Joined: 18-June 13

|
HV conditioner v1.6
HV_conditioner.user.zip ( 2.67k )
Number of downloads: 286CODE 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)
|
|
|
|
 |
|
Oct 21 2014, 22:01
|
Dan31
Group: Members
Posts: 4,399
Joined: 26-March 12

|
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.
HV___List_Items.user.js.txt ( 912bytes )
Number of downloads: 75
|
|
|
|
 |
|
Oct 22 2014, 02:04
|
djackallstar
Group: Gold Star Club
Posts: 8,221
Joined: 23-July 14

|
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] pastebinThanks 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.
HV___List_Items.user.js.txt ( 912bytes )
Number of downloads: 75Thanks 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
|
|
|
|
 |
|
Oct 23 2014, 07:47
|
tetron
Group: Gold Star Club
Posts: 5,583
Joined: 30-July 14

|
QUOTE(oohmrparis @ Oct 20 2014, 14:37)  HV conditioner v1.6
HV_conditioner.user.zip ( 2.67k )
Number of downloads: 286CODE 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
|
|
|
|
 |
|
Oct 23 2014, 17:59
|
djackallstar
Group: Gold Star Club
Posts: 8,221
Joined: 23-July 14

|
QUOTE(djackallstar @ Sep 12 2014, 18:33)  Script name Realtime Auction Countdown Timer
Fixed some bugs. [ github.com] Download link unchanged.
|
|
|
Oct 23 2014, 18:35
|
tetron
Group: Gold Star Club
Posts: 5,583
Joined: 30-July 14

|
-double post-
This post has been edited by tetron: Oct 23 2014, 18:36
|
|
|
Oct 23 2014, 18:35
|
tetron
Group: Gold Star Club
Posts: 5,583
Joined: 30-July 14

|
QUOTE(djackallstar @ Oct 23 2014, 21:29)  Fixed some bugs. [ github.com] Download link unchanged. Malfunctioning. Showing way more time! Example: 
|
|
|
Oct 23 2014, 19:06
|
djackallstar
Group: Gold Star Club
Posts: 8,221
Joined: 23-July 14

|
QUOTE(tetron @ Oct 24 2014, 00:35)  Malfunctioning. Showing way more time! Example:  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
|
|
|
Oct 25 2014, 06:12
|
tuypo
Group: Members
Posts: 178
Joined: 6-January 14

|
where am i meant to extract the equipment comparison script to?
|
|
|
Oct 25 2014, 08:17
|
Razor320
Group: Members
Posts: 220
Joined: 17-October 13

|
Search "How to install user script" using your favorite internet search service provider.
|
|
|
Oct 26 2014, 11:47
|
crazymagic
Newcomer
  Group: Members
Posts: 65
Joined: 23-April 11

|
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.
|
|
|
Oct 27 2014, 03:32
|
kumosu
Group: Members
Posts: 428
Joined: 11-July 14

|
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.
|
|
|
|
 |
|
Oct 27 2014, 13:47
|
Razor320
Group: Members
Posts: 220
Joined: 17-October 13

|
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".
|
|
|
|
 |
|
Oct 28 2014, 17:17
|
Zoom0211
Group: Gold Star Club
Posts: 290
Joined: 5-June 14

|
QUOTE(Gasior @ Oct 7 2014, 23:19)  Made in free time. HV Equipment Comparison 0.6.4.0
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/Rs7meiQHow could Evade be S-5 (IMG:[ invalid] style_emoticons/default/dry.gif)
|
|
|
1 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
0 Members:
|
 |
 |
 |
|
|
|