Loading. Please Wait... 
 |
 |
 |
HV Script Thread, Discuss your creations. Includes guidelines and infos for script creation (2020-02-28 upd) |
|
Aug 6 2015, 22:04
|
boulay
Group: Gold Star Club
Posts: 2,675
Joined: 27-June 11

|
Posting a new version here, the other one had some unwanted effects ^^
HV_Battle_Compact.css ( 6.75k )
Number of downloads: 112
HV_Battle_Compact_Chrome.zip ( 1.48k )
Number of downloads: 64This Modifies the battle interface to reduce used space. Should be nice for multitasking and, even if it was not intended at first, mobile playing... I fixed some derps while I was at it: - the item panel was relocated to make the use more efficient - the training level disappearance has been cleared too... (IMG:[ invalid] style_emoticons/default/laugh.gif) Monsters are still disposed like this: 1 2 3 4 5 6 7 8 9 10  Script for installing the .css directly, made by djackallstar CODE // ==UserScript== // @name HV Battle Compact // @updateURL about:blank // @grant GM_getResourceURL // @resource hv_battlecompact http://forums.e-hentai.org/index.php?act=Attach&type=post&id=68301 // @include http://hentaiverse.org/* // ==/UserScript==
var cssId = 'hv_battlecompact' if(!document.getElementById(cssId)) { var link = document.createElement('link') link.id = cssId link.rel = 'stylesheet' link.type = 'text/css' link.media = 'all' link.href = GM_getResourceURL('hv_battlecompact') document.head.appendChild(link) } This post has been edited by boulay: Aug 6 2015, 22:11
|
|
|
|
 |
|
Aug 7 2015, 00:08
|
zeh_lp
Group: Members
Posts: 2,044
Joined: 31-January 11

|
QUOTE(boulay @ Aug 6 2015, 22:04)  Posting a new version here, the other one had some unwanted effects ^^
OMG I love it (IMG:[ invalid] style_emoticons/default/wub.gif)
|
|
|
Aug 9 2015, 17:11
|
Acer37
Group: Members
Posts: 209
Joined: 19-December 12

|
I can't get any scripts to work in Iron. They show up in the extensions and are enabled, but they don't do anything. All I did was download the script zip and then drag the user.js to the extension tab like I have done in fire fox. I have these same scripts working in fire fox. Any advice would be very helpful.
|
|
|
Aug 10 2015, 05:31
|
tatarime
Group: Gold Star Club
Posts: 802
Joined: 23-June 10

|
QUOTE(Acer37 @ Aug 9 2015, 17:11)  I can't get any scripts to work in Iron. They show up in the extensions and are enabled, but they don't do anything. All I did was download the script zip and then drag the user.js to the extension tab like I have done in fire fox. I have these same scripts working in fire fox. Any advice would be very helpful.
Tampermonkey
|
|
|
Aug 12 2015, 14:23
|
Dead-ed
Group: Members
Posts: 3,577
Joined: 4-March 14

|
Excuse me, is there any script which is able to highlight certain keywords on the screen automatically? Say, i input some monster names to the script as a list & so on. I'll give 200k as incentive, yeah it's small due to my bad finance & priorities.
This post has been edited by Dead-ed: Aug 12 2015, 15:30
|
|
|
Aug 12 2015, 22:43
|
tatarime
Group: Gold Star Club
Posts: 802
Joined: 23-June 10

|
QUOTE(Dead-ed @ Aug 12 2015, 14:23)  Excuse me, is there any script which is able to highlight certain keywords on the screen automatically? Say, i input some monster names to the script as a list & so on. I'll give 200k as incentive, yeah it's small due to my bad finance & priorities.
Here you are. Config: Alt + W
HV___Keyword_Highlighter.user.zip ( 1.66k )
Number of downloads: 57
|
|
|
Aug 12 2015, 22:51
|
Dead-ed
Group: Members
Posts: 3,577
Joined: 4-March 14

|
QUOTE(tatarime @ Aug 12 2015, 13:43)  Here you are. Config: Alt + W
HV___Keyword_Highlighter.user.zip ( 1.66k )
Number of downloads: 57thanks, sending the reward asap.
|
|
|
|
 |
|
Aug 16 2015, 02:08
|
VriskaSerket
Group: Catgirl Camarilla
Posts: 4,118
Joined: 27-December 08

|
QUOTE(VriskaSerket @ Jun 20 2013, 11:18) 
HV___MonsterLab_BabySitter.user.zip ( 1.51k )
Number of downloads: 502 (food+pills+crystals for all)
HV___MonsterLab_BabySitter__lite_.user.zip ( 899bytes )
Number of downloads: 401 (only food+pills.)
HV___MonsterLab_BabySitter__bad_Santa_.user.zip ( 1.02k )
Number of downloads: 166 (only food+pills only for good(set min PL by G) and not dead(no red bars) monsters ) for chrome @ 21.08.13
HV_MonsterLab_BabySitter.zip ( 3.36k )
Number of downloads: 396 (all versions) Updated for 0.83 -moved gift stat code to main ml page. -removed restoring morale by crystals feature. -still feeding with food(not overfeeding) and pills.
HV___MonsterLab_BabySitter.user.js.zip ( 1.51k )
Number of downloads: 125How to use: press "f" to feed them all with food and pills  ================ for old chrome versions replace ".click()" with ".onclick()" ================ if you want only gift stat feature use this instead CODE // ==UserScript== // @name HV - MonsterLab BabySitter // @match http://hentaiverse.org/?s=Bazaar&ss=ml // @run-at document-end // @version 1.83 // ==/UserScript==
var gifts = null; var mb = document.getElementById("messagebox"); if (mb!=null) { gifts = mb.outerHTML.match(/Received.*?\./g); } if (gifts!=null) { gifts.sort(); gifts2 = []; j = 0; gifts2[j] = []; gifts2[j][0]='total: '; gifts2[j][1]=gifts.length; for (var i=0; i < gifts.length; i++) { if (gifts2[j][0] == gifts[i]) { gifts2[j][1]++; } else { j++; gifts2[j] = []; gifts2[j][0]=gifts[i]; gifts2[j][1]=1; } } var giftstext = '<div id="messagebox" style="height:500px; font-size:14pt"> '; for (var i=0; i < gifts2.length; i++) { giftstext += (gifts2[i][0]+' x'+gifts2[i][1]+'<br>'); } giftstext += ' </div>'; var mb = document.getElementById("messagebox"); if (mb == null){ mb = document.createElement("div"); document.body.appendChild(mb); } mb.outerHTML = giftstext; }
This post has been edited by VriskaSerket: Nov 2 2015, 11:05
|
|
|
|
 |
|
Aug 16 2015, 06:40
|
Void Domain
Group: Catgirl Camarilla
Posts: 2,131
Joined: 30-May 10

|
QUOTE(VriskaSerket @ Aug 16 2015, 08:08)  -removed restoring morale by crystals feature.
Why remove this? So now I have to morale them manually? (IMG:[ invalid] style_emoticons/default/huh.gif)
|
|
|
Aug 16 2015, 08:04
|
VriskaSerket
Group: Catgirl Camarilla
Posts: 4,118
Joined: 27-December 08

|
QUOTE(Void Domain @ Aug 16 2015, 04:40)  Why remove this? So now I have to morale them manually? (IMG:[ invalid] style_emoticons/default/huh.gif) O_o someone actually used that? why? pills always was cheaper than crystals.
|
|
|
Aug 16 2015, 09:27
|
Void Domain
Group: Catgirl Camarilla
Posts: 2,131
Joined: 30-May 10

|
QUOTE(VriskaSerket @ Aug 16 2015, 14:04)  O_o someone actually used that? why? pills always was cheaper than crystals.
I am just slowly feeding my low pl mobs to 1000 (IMG:[ invalid] style_emoticons/default/laugh.gif)
|
|
|
Aug 16 2015, 12:54
|
VriskaSerket
Group: Catgirl Camarilla
Posts: 4,118
Joined: 27-December 08

|
QUOTE(Void Domain @ Aug 16 2015, 07:27)  I am just slowly feeding my low pl mobs to 1000 (IMG:[ invalid] style_emoticons/default/laugh.gif) well, sorry, but that script wasnt designed for that .)
|
|
|
Aug 16 2015, 17:56
|
tetron
Group: Gold Star Club
Posts: 5,583
Joined: 30-July 14

|
QUOTE(VriskaSerket @ Aug 16 2015, 05:38)  Updated for 0.83 -moved gift stat code to main ml page. -removed restoring morale by crystals feature. -still feeding with food(not overfeeding) and pills. [attachmentid=68821] How to use: press "f" to feed them all with food and pills
================ for old chrome versions replace ".click()" with ".onclick()" ================
Wait a minute...I don't see the part of the code which is used to feed Happy Pills. (IMG:[ invalid] style_emoticons/default/huh.gif) This post has been edited by tetron: Aug 16 2015, 17:59
|
|
|
|
 |
|
Aug 17 2015, 00:40
|
VriskaSerket
Group: Catgirl Camarilla
Posts: 4,118
Joined: 27-December 08

|
QUOTE(tetron @ Aug 16 2015, 15:56)  Wait a minute...I don't see the part of the code which is used to feed Happy Pills. (IMG:[ invalid] style_emoticons/default/huh.gif) damn, sorry, im the worst copypaster ever. i accidentally whole of it. and tested only 2 days, not enough to notice that. fixed.
|
|
|
Aug 18 2015, 13:52
|
tatarime
Group: Gold Star Club
Posts: 802
Joined: 23-June 10

|
"Keyword Highlighter" script is released.  
HV___Keyword_Highlighter_0.4.user.zip ( 3.37k )
Number of downloads: 56(02/20: https & alt)
HV___Keyword_Highlighter_for_Battle.user.zip ( 2.68k )
Number of downloads: 129This is stable version of it. It supports a variety of CSS Style (e.g. color, background-color, font-weight, text-shadow, etc...). And it can also be used as "HVSTAT" or "Equipment Highlights". Config: Alt + W This post has been edited by tatarime: Feb 20 2017, 15:10
|
|
|
Aug 18 2015, 14:08
|
karyl123
Group: Gold Star Club
Posts: 1,659
Joined: 9-January 11

|
hello is there any script that tell if there is no enchancement on main weapon when starting arena ?
|
|
|
Aug 19 2015, 19:58
|
tatarime
Group: Gold Star Club
Posts: 802
Joined: 23-June 10

|
QUOTE(karyl123 @ Aug 18 2015, 14:08)  hello is there any script that tell if there is no enchancement on main weapon when starting arena ?
Is this what you mean? Please change the line of "var weponurl" in the script to your weapon.
HV___Check_Enchant.user.zip ( 624bytes )
Number of downloads: 75 *Sorry, there was probably a bug in earlier version* This post has been edited by tatarime: Aug 19 2015, 21:10
|
|
|
|
 |
|
Aug 19 2015, 20:31
|
karyl123
Group: Gold Star Club
Posts: 1,659
Joined: 9-January 11

|
QUOTE(tatarime @ Aug 20 2015, 00:58)  Is this what you mean? Please change the line of "var weponurl" in the script to your weapon. [attachmentid=69062]
thankyou. but cannot test it. because I already use all my arena attemp. maybe after reset i will give update (IMG:[ invalid] style_emoticons/default/biggrin.gif) update. : purfect (IMG:[ invalid] style_emoticons/default/biggrin.gif) This post has been edited by karyl123: Aug 20 2015, 02:46
|
|
|
2 User(s) are reading this topic (2 Guests and 0 Anonymous Users)
0 Members:
|
 |
 |
 |
|
|
|