Welcome Guest ( Log In | Register )

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

 
post Aug 22 2013, 23:17
Post #828
VriskaSerket



Veteran Poster
********
Group: Catgirl Camarilla
Posts: 4,118
Joined: 27-December 08
Level 500 (Godslayer)


QUOTE(hentai_fusion @ Aug 22 2013, 17:52) *

someone please fix the HV keybinds script...

the latest chrome update broke it...


latest chrome update changed java core.

right now found only ".onclick()" not works. use ".click()" instead.
will look closer when have free time.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Aug 22 2013, 23:39
Post #829
VriskaSerket



Veteran Poster
********
Group: Catgirl Camarilla
Posts: 4,118
Joined: 27-December 08
Level 500 (Godslayer)


QUOTE(VriskaSerket @ Jun 20 2013, 11:18) *

arr, another one! last one.
MonsterLab BabySitter v 1.51. "happyhappyjoyjoy" edition. (thanks, Tenboro, that made my day.) )
Attached File  HV___MonsterLab_BabySitter.user.zip ( 1.51k ) Number of downloads: 502
(food+pills+crystals for all)

Attached File  HV___MonsterLab_BabySitter__lite_.user.zip ( 899bytes ) Number of downloads: 401
(only food+pills.)

Attached File  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
Attached File  HV_MonsterLab_BabySitter.zip ( 3.36k ) Number of downloads: 396
(all versions)


added new MonsterLab BabySitter for new chrome.
also, can somepony change link in wiki to this post?
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Aug 23 2013, 06:50
Post #830
k-kirei



Newcomer
*
Group: Recruits
Posts: 17
Joined: 25-March 13
Level 240 (Godslayer)


HV Better Melee
Version 1.0.2

For those who are tired of moving / stretching their arm pressing 1-0 and prefer to just their move mouse a little instead.

How to use:
1. Point mouse into a mob.
2. Hold down 'A' button on your keyboard.
3. ????
4. Mob dies. Point mouse to next mob.

Two handed operation is easier than one (IMG:[invalid] style_emoticons/default/biggrin.gif)

More features:
- Change monster listing from A-J to 1-10, for those who are more comfortable using 1-0
- NEW! Script now works if you happened to battle in non-http://hentaiverse.org/?s=Battle* URL. (i.e. you closed browser and resumed battle in default/home http://hentaiverse.org/ URL)
- NEW! Weapon skills join the party! Z X C for skill 1 2 3 respectively. (Requires hvstat skill buttons to be enabled, at least for now... Also, not tested for weapon skills other than DW skills, but they should work properly. Lolz.)
- NEW! Augments hvstat skill buttons :hover CSS with yellow background now, so you don't misclick another skill. (hvstat, y u no give hover background?!?)

Enjoy.

Attached File  HVBetterMelee.user.js.zip ( 921bytes ) Number of downloads: 1027


This post has been edited by k-kirei: Aug 23 2013, 06:50
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Aug 24 2013, 02:52
Post #831
freakerup



Voyeur
****
Group: Members
Posts: 367
Joined: 2-November 11
Level 307 (Godslayer)


If anyone would find changing the Dark Blue over Black to something more visible.

Added:
Irrelevant of HentaiVerse Font Engine or Custom.
Cyan Bar - v1.00. - Change all blue bars to cyan. Easier to see.
Attached Image

This post has been edited by freakerup: Aug 24 2013, 08:54
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Aug 24 2013, 07:07
Post #832
e-Stark



Unknown to death, Unaware of loss...
*******
Group: Catgirl Camarilla
Posts: 1,773
Joined: 20-May 13
Level 500 (Ponyslayer)


I just tried HVKeybinds today... It doesn't work on Firefox? (IMG:[invalid] style_emoticons/default/huh.gif)
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Aug 24 2013, 09:55
Post #833
freakerup



Voyeur
****
Group: Members
Posts: 367
Joined: 2-November 11
Level 307 (Godslayer)


QUOTE(e-Stark @ Aug 24 2013, 07:07) *

I just tried HVKeybinds today... It doesn't work on Firefox? (IMG:[invalid] style_emoticons/default/huh.gif)


// @name HV Keybinds
// @namespace HVKEYBIND
// @version 2.4.1

Right about line 124 there is a line that will look like:
CODE

if(spell.id > 1000){

and for firefox v19 changing it to:
CODE

if((!(spell==null))&& (spell.id > 1000)){


and it worked. Not fully tested though.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Aug 24 2013, 16:46
Post #834
e-Stark



Unknown to death, Unaware of loss...
*******
Group: Catgirl Camarilla
Posts: 1,773
Joined: 20-May 13
Level 500 (Ponyslayer)


Works now... thank you very much... (IMG:[invalid] style_emoticons/default/smile.gif)
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Aug 25 2013, 23:30
Post #835
sickentide



sexromancer
*******
Group: Catgirl Camarilla
Posts: 1,355
Joined: 31-August 10
Level 500 (Ponyslayer)


Here are cast, use and toggle functions that work with Chrome 29.

CODE
function Cast(name) {return function() {if (spell = document.querySelector('.bts > div[onmouseover *= "'+name+'"]')) spell.click();}}

function Use(name) {return function() {if (item = document.querySelector('.bti3 > div[onmouseover *= "'+name+'"]')) item.click();}}

function Toggle(name) {return function() {if (state = document.querySelector('#ckey_' + name.toLowerCase())) state.click();}}
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Aug 28 2013, 08:45
Post #836
freakerup



Voyeur
****
Group: Members
Posts: 367
Joined: 2-November 11
Level 307 (Godslayer)


QUOTE(atest1 @ Aug 13 2013, 05:02) *

Here is HV-Magic Scores 2.0.3.1
Now the aditional Magic Damage in Radiant phase and Spell Critical Damage in Mystic phase are computed correctly.
CAUTION: After install this script, you must first visit equipment page before it works correctly.

BTW, thanks for the help of Treesion, lltt013 and ddwiki (IMG:[invalid] style_emoticons/default/tongue.gif)

Attached File  magicscores2_Edited.user.zip ( 16.08k ) Number of downloads: 1694




Added support for HentaiVerse Font Engine.
HV - MagicScores2 - Version 2.0.3.1.HVFS.01
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Sep 6 2013, 15:23
Post #837
rmr



Regular Poster
******
Group: Members
Posts: 831
Joined: 26-June 11
Level 351 (Godslayer)


How can I cast spell with HV keybinds in chrome29 ?
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Sep 6 2013, 22:46
Post #838
walkleft



Casual Poster
****
Group: Members
Posts: 303
Joined: 28-September 11
Level 352 (Dovahkiin)


QUOTE(k-kirei @ Aug 22 2013, 21:50) *

HV Better Melee
Version 1.0.2

For those who are tired of moving / stretching their arm pressing 1-0 and prefer to just their move mouse a little instead.

How to use:
1. Point mouse into a mob.
2. Hold down 'A' button on your keyboard.
3. ????
4. Mob dies. Point mouse to next mob.

Two handed operation is easier than one (IMG:[invalid] style_emoticons/default/biggrin.gif)

More features:
- Change monster listing from A-J to 1-10, for those who are more comfortable using 1-0
- NEW! Script now works if you happened to battle in non-http://hentaiverse.org/?s=Battle* URL. (i.e. you closed browser and resumed battle in default/home http://hentaiverse.org/ URL)
- NEW! Weapon skills join the party! Z X C for skill 1 2 3 respectively. (Requires hvstat skill buttons to be enabled, at least for now... Also, not tested for weapon skills other than DW skills, but they should work properly. Lolz.)
- NEW! Augments hvstat skill buttons :hover CSS with yellow background now, so you don't misclick another skill. (hvstat, y u no give hover background?!?)

Enjoy.

Attached File  HVBetterMelee.user.js.zip ( 921bytes ) Number of downloads: 1027



Is it possible to use it like older version? Without A being pressed. I might need to use that A for something else. Also, maybe it is because I use older version, but it overruns even when a message pops up and attack once more.

So, when enemy deals super dmg and I have only 1 hp left from spark of life, I still die from predetermined action.

Attack! Even if it means my death!
-Famous last words-

Does this version have the bug fixed?

I was happy to see HV STAT option of "Adjust key event handling not to overrun when an alert is shown", but was disappointed this does not apply to mousemelee. (IMG:[invalid] style_emoticons/default/sad.gif)

Just that bug fixed, I want nothing moar!
except a full macro that farms 300 lv arena in IWBH mode without using potion for me when I am not at home. (IMG:[invalid] style_emoticons/default/tongue.gif)


This post has been edited by walkleft: Sep 6 2013, 22:50
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Sep 7 2013, 04:23
Post #839
Lement



Lalalala la~ la la~!
********
Group: Members
Posts: 2,977
Joined: 28-February 12
Level 326 (Godslayer)


walkleft: The 'bug' you mentioned is both easy to fix and I've done it in mah personal version and once for someone else, just that been lazy about releasing since it would need bunch of other upgrades too.. For now, do this:
CODE

var HP = document.getElementsByClassName('cwbt1')[0].children[0].children[0].innerText.split('/');HP = parseFloat(HP[0])/parseFloat(HP[1]); if(HP>0.4){
//enter your script code here
}

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

 
post Sep 7 2013, 22:03
Post #840
walkleft



Casual Poster
****
Group: Members
Posts: 303
Joined: 28-September 11
Level 352 (Dovahkiin)


QUOTE(Lement @ Sep 6 2013, 19:23) *

walkleft: The 'bug' you mentioned is both easy to fix and I've done it in mah personal version and once for someone else, just that been lazy about releasing since it would need bunch of other upgrades too.. For now, do this:
CODE

var HP = document.getElementsByClassName('cwbt1')[0].children[0].children[0].innerText.split('/');HP = parseFloat(HP[0])/parseFloat(HP[1]); if(HP>0.4){
//enter your script code here
}



failed. Maybe its my horrible misunderstanding or scripting skill problem.

What I did

1.Extracted CRX file
2.opened js file
3.wrapped the original script with the code above. I put the original at the place of //enter your script code here.
4.imported into chrome.(dont know how to zip it back to crx file, and I guess that doesnt matter much)
5.hovered over enemy, nothing happened.

Well, thanks for the effort anyway.



Nevermind. All I needed to do was changing the document start to document end. And it worked as what I supposed the new script would do. Thank you

This post has been edited by walkleft: Sep 7 2013, 22:07
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Sep 13 2013, 09:41
Post #841
FiniteA



Active Poster
*******
Group: Members
Posts: 2,419
Joined: 3-November 11
Level 413 (Godslayer)


QUOTE(rmr @ Sep 6 2013, 21:23) *

How can I cast spell with HV keybinds in chrome29 ?

[pastie.org] Here you are.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Sep 14 2013, 15:39
Post #842
ctxl



バカ
****
Group: Members
Posts: 425
Joined: 20-May 12
Level 455 (Godslayer)


HV - Inline Difficulty Changer for 0.77
Added pink fluffy unicorns dancing on rainbows..?

Attached File  difficulty.user.zip ( 1.49k ) Number of downloads: 2777

Attached Image

-----------
HV - Track Drops for 0.77
Same as the last version, with more PFUDOR.
Note that PFUDOR drops were still tracked with v2.0, just not displayed.

[pastebin.com] Version 2.1 filters out everything below Exquisite as 'Trash Gear' by default.
Comment out that line if you don't want this to happen.

This post has been edited by ctxl: Sep 14 2013, 16:10
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Sep 15 2013, 05:23
Post #843
FiniteA



Active Poster
*******
Group: Members
Posts: 2,419
Joined: 3-November 11
Level 413 (Godslayer)


[pastie.org] HV Keybind 2.4.2

Should now work with FF & Chrome.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Sep 15 2013, 07:31
Post #844
hentai_fusion



Nyo
************
Group: Gold Star Club
Posts: 33,486
Joined: 14-August 09
Level 500 (Ponyslayer)


QUOTE(FiniteA @ Sep 15 2013, 11:23) *

[pastie.org] HV Keybind 2.4.2

Should now work with FF & Chrome.


unbinding a default key so that i can use it for something else does not work...
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Sep 15 2013, 08:22
Post #845
yobi00



Regular Poster
*****
Group: Members
Posts: 700
Joined: 13-August 13
Level 380 (Godslayer)


QUOTE(FiniteA @ Sep 15 2013, 12:23) *

[pastie.org] HV Keybind 2.4.2

Should now work with FF & Chrome.


There are two KEY_UPs but no KEY_LEFT defined.

QUOTE
--- old-pastie-8326802.js 2013-09-15 15:01:26.488280655 +0900
+++ new-pastie-8326802.js 2013-09-15 15:04:41.884955474 +0900
@@ -11,7 +11,7 @@
var KEY_A = 65, KEY_B = 66, KEY_C = 67, KEY_D = 68, KEY_E = 69, KEY_F = 70, KEY_G = 71, KEY_H = 72, KEY_I = 73, KEY_J = 74, KEY_K = 75, KEY_L = 76, KEY_M = 77;
var KEY_N = 78, KEY_O = 79, KEY_P = 80, KEY_Q = 81, KEY_R = 82, KEY_S = 83, KEY_T = 84, KEY_U = 85, KEY_V = 86, KEY_W = 87, KEY_X = 88, KEY_Y = 89, KEY_Z = 90;
var KEY_1 = 49, KEY_2 = 50, KEY_3 = 51, KEY_4 = 52, KEY_5 = 53, KEY_6 = 54, KEY_7 = 55, KEY_8 = 56, KEY_9 = 57, KEY_0 = 48;
-var KEY_SPACE = 32, KEY_ENTER = 13, KEY_PAGEUP = 33, KEY_PAGEDOWN = 34, KEY_END = 35, KEY_HOME = 36, KEY_UP = 37, KEY_UP = 38, KEY_RIGHT = 39, KEY_DOWN = 40;
+var KEY_SPACE = 32, KEY_ENTER = 13, KEY_PAGEUP = 33, KEY_PAGEDOWN = 34, KEY_END = 35, KEY_HOME = 36, KEY_LEFT = 37, KEY_UP = 38, KEY_RIGHT = 39, KEY_DOWN = 40;
var KEY_F1 = 112, KEY_F2 = 113, KEY_F3 = 114, KEY_F4 = 115, KEY_F5 = 116, KEY_F6 = 117, KEY_F7 = 118, KEY_F8 = 119, KEY_F9 = 120, KEY_F10 = 121, KEY_F11 = 122, KEY_F12 = 123;
var KEY_COMMA = 188, KEY_PERIOD = 190, KEY_SLASH = 191, KEY_FORWARDSLASH = 191, KEY_GRAVE = 192, KEY_TILDE = 192, KEY_LBRACKET = 219, KEY_BACKSLASH = 220;
var KEY_SEMI = 186, KEY_RBRACKET = 221, KEY_APOSTROPHE = 222;
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Sep 16 2013, 05:20
Post #846
Ichy



~ Loli Trainer ~
***********
Group: Catgirl Camarilla
Posts: 13,061
Joined: 19-February 09
Level 500 (Dovahkiin)


would it be possible to get a modification of some Tracking tool?
All it has to do is to notify me if a Legendary or Peerless has dropped! I wont notice myself thanks to no popup (IMG:[invalid] style_emoticons/default/duck.gif)
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Sep 16 2013, 14:16
Post #847
rmr



Regular Poster
******
Group: Members
Posts: 831
Joined: 26-June 11
Level 351 (Godslayer)


It is unable to cover the hotkeys S, D , and G with HV Keybind 2.4.2.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post


291 Pages V « < 41 42 43 44 > » 
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: 22nd January 2025 - 03:22