Welcome Guest ( Log In | Register )

291 Pages V « < 216 217 218 219 220 > »   
Reply to this topicStart new topic
> HV Script Thread, Discuss your creations. Includes guidelines and infos for script creation (2020-02-28 upd)

 
post Jun 29 2017, 10:29
Post #4341
piyin



Reasons to love the IRS.
***********
Group: Gold Star Club
Posts: 10,797
Joined: 4-February 09
Level 500 (Ponyslayer)


QUOTE(Superlatanium @ Jun 29 2017, 02:28) *


1.-Bazaaring wasn't working, but salvaging should work, I can't reproduce whatever problem you're having.



2.- If the inventory keeps refreshing, that means it's failing to grab an ID of an item in your inventory. See the this.getId function, around line 103. Maybe there's an old artifact, an untradeable, or some other unique item that I don't have that's causing problems. At the end of the getId function, just before the last line "getItemIds();", can you add the following line:
alert(name);
and tell me what it says? Knowing the name of the troublesome item should help narrow down the issue

3.- Such as?


1A.- Can select the equipments with the script, but after i salvage them (and the notification apperars), i refresh and they are still there. thats the scenario.

2A.- will try.

3A- The variables i want are the percentilas ranges and ADB/MDB/EMD and etc related to the quality of the equipments (if there are any)... So they could apperars when equipment lists are made... exactly how the auction equipment appears... but whitout doing it manually (took too much time for me).
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jun 29 2017, 11:34
Post #4342
Superlatanium



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


QUOTE(piyin @ Jun 29 2017, 08:29) *
1A.- Can select the equipments with the script, but after i salvage them (and the notification apperars), i refresh and they are still there. thats the scenario.
Check network activity: a successful salvage should have the format like
CODE
url: https://hentaiverse.org/?s=Forge&ss=sa&filter=1handed
parameters: select_item=133838852
If there's no network activity or the parameters are different, that'll give an idea as to what's wrong.
QUOTE(piyin @ Jun 29 2017, 08:29) *
So they could apperars when equipment lists are made... exactly how the auction equipment appears... but whitout doing it manually (took too much time for me).
Done-ish, that wasn't hard to implement via copy and paste, though the code is very hacky.

This post has been edited by Superlatanium: Jun 29 2017, 11:41
User is online!Profile CardPM
Go to the top of the page
+Quote Post

 
post Jun 29 2017, 16:34
Post #4343
friggo



~Snug as a bug in a rug~
*******
Group: Gold Star Club
Posts: 2,134
Joined: 9-October 14
Level 500 (Ponyslayer)


QUOTE(Sapo84 @ Jun 29 2017, 15:25) *

There is a working HVCounterPlus script.


Link pretty please? I've looked through the last ten pages but didn't see it anywhere.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jun 29 2017, 16:59
Post #4344
Scremaz



A certain pervert. OT expert. Just dancing around in the game.
***********
Group: Gold Star Club
Posts: 24,304
Joined: 18-January 07
Level 500 (Ponyslayer)


QUOTE(friggo @ Jun 29 2017, 16:34) *

Link pretty please? I've looked through the last ten pages but didn't see it anywhere.

https://forums.e-hentai.org/index.php?showt...p;#entry4885963

at least i guess...
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jun 29 2017, 17:03
Post #4345
sickentide



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


QUOTE(abc12345678901 @ Jun 29 2017, 06:38) *

I put cure as my right click but it only works if my cursor is over the mob list in battle and is there anyway to disable the pop up menu you get when you right click?

it would be problematic to override clicks everywhere on the page, so click actions only work on monsters. i'm still looking for a solution to the context menu thing

QUOTE(DJNoni @ Jun 29 2017, 07:24) *

is it true that I can't use left click to troggle hover? I can assign mid click and right click. But right click also gives the browser right click popup as well as the function.

i tested it and i can use left click to both initiate and disable hover, you just have to click on a live monster
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jun 29 2017, 17:16
Post #4346
Sapo84



Deus lo vult
********
Group: Gold Star Club
Posts: 3,332
Joined: 14-June 09
Level 500 (Ponyslayer)


QUOTE(Scremaz @ Jun 29 2017, 16:59) *

I was referring to
https://forums.e-hentai.org/index.php?s=&am...t&p=4884931
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jun 29 2017, 17:19
Post #4347
simrock87



<('.'<) (>'.')> (^'.')>
*****
Group: Members
Posts: 647
Joined: 12-June 11
Level 399 (Godslayer)


QUOTE(sickentide @ Jun 29 2017, 15:03) *

it would be problematic to override clicks everywhere on the page, so click actions only work on monsters. i'm still looking for a solution to the context menu thing
i tested it and i can use left click to both initiate and disable hover, you just have to click on a live monster

CODE

monster.addEventListener('contextmenu', e => {
e.preventDefault();
// ...
});

Doesn't work? :>
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jun 29 2017, 17:33
Post #4348
friggo



~Snug as a bug in a rug~
*******
Group: Gold Star Club
Posts: 2,134
Joined: 9-October 14
Level 500 (Ponyslayer)


QUOTE(Sapo84 @ Jun 29 2017, 18:16) *


Should've looked further back (IMG:[invalid] style_emoticons/default/blush.gif)

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

 
post Jun 29 2017, 17:44
Post #4349
sickentide



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


QUOTE(simrock87 @ Jun 29 2017, 17:19) *

CODE

monster.addEventListener('contextmenu', e => {
e.preventDefault();
// ...
});

Doesn't work? :>

i tried something like that and couldn't get it to work, but this specific code did it, thank you
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jun 29 2017, 18:29
Post #4350
adz



Casual Poster
***
Group: Members
Posts: 170
Joined: 19-June 15
Level 496 (Godslayer)


I have found an issue with the Monsterbation Script:

When i am at low Health (configured threshold) and use a healing Spell (Cure, Full-Cure) afterwards, Hoverplay does not reenable. I need to reload HV or advance to the next round to make it work again.

Is this by design?

After casting the the healing spell, i was above my configured health threshold of course.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jun 29 2017, 18:35
Post #4351
sickentide



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


QUOTE(adz @ Jun 29 2017, 18:29) *

Is this by design?

yes, hoverplay has to be reinitiated after dealing with an alert condition. in the latest version, the default is to do this by pressing W or right-clicking on any live monster, and it can be bound to other buttons/keys
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jun 29 2017, 18:42
Post #4352
adz



Casual Poster
***
Group: Members
Posts: 170
Joined: 19-June 15
Level 496 (Godslayer)


Is there an option to disable this behaviour?

It slows down the gameplay considerably.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jun 29 2017, 18:50
Post #4353
sickentide



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


QUOTE(adz @ Jun 29 2017, 18:42) *

Is there an option to disable this behaviour?

It slows down the gameplay considerably.

i don't like the idea of that, but there have been several requests like this, so i'm considering adding it to a later version

This post has been edited by sickentide: Jun 29 2017, 18:51
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jun 29 2017, 18:54
Post #4354
adz



Casual Poster
***
Group: Members
Posts: 170
Joined: 19-June 15
Level 496 (Godslayer)


Please do it!

Its the only true dealbreaker of this script, with this fixed it would be perfect.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jun 29 2017, 19:48
Post #4355
sickentide



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


QUOTE(adz @ Jun 29 2017, 18:54) *

Please do it!

Its the only true dealbreaker of this script, with this fixed it would be perfect.

hover now resumes automatically if there are no alerts Attached File  HentaiverseMonsterbation.1.0.3.user.js.zip ( 6.54k ) Number of downloads: 119


This post has been edited by sickentide: Jun 29 2017, 20:56
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jun 29 2017, 19:55
Post #4356
adz



Casual Poster
***
Group: Members
Posts: 170
Joined: 19-June 15
Level 496 (Godslayer)


Awesome!

Now its perfect!
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jun 29 2017, 20:37
Post #4357
AnonDarkMage7



Regular Poster
******
Group: Gold Star Club
Posts: 925
Joined: 1-June 12
Level 500 (Ponyslayer)


QUOTE(sickentide @ Jun 29 2017, 19:48) *

hover now resumes automatically if there are no alerts [attachmentid=104979]

I have
stopOnChannelling = false,
yet it keeps stopping on channeling
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jun 29 2017, 20:55
Post #4358
hc br



Veteran Poster
********
Group: Catgirl Camarilla
Posts: 3,679
Joined: 18-October 15
Level 500 (Ponyslayer)


QUOTE(Superlatanium @ Jun 28 2017, 15:49) *

HV Item Manager, fixed up for 0.85

Attached File  HV_Item_Manager_1.6.0.user.js.txt ( 41.64k ) Number of downloads: 494


Not every function may work, but most of them do, including setting equip/item prices, MMing, and making customized equip lists. See holy_demon's post for features and usage details.

Fixed for Iron as well as Chrome/Firefox.

The credits pane has been added to many pages.

I'll try to fix any critical problems if anyone sees any, but I'm not going to bother with anything minor, now that most of the functionality has been restored, since this isn't my script.


[attachembed=104981]

[attachembed=104982]
CODE

   function createToolbox() {
      addCSSRule(".item_toolbox{position: fixed; display: block; border: 2px solid; padding:2px; background: #EDEBDF; width:70px; left: 5px; top: 5px; z-index: 10; color:#5C0D12; font: bold normal 16px 'Arial';}");
      addCSSRule(".item_toolbox button {width:65px; cursor:pointer; z-index:inherit; font: bolder normal 14px 'Consolas';}");
      addCSSRule(".item_toolbox input,.item_toolbox textarea{font: normal normal 15px 'Consolas';}");
      addCSSRule(".item_modal {position: absolute; display:block; border:inherit; padding:2px; background:inherit; left: 75px; top: 0px; width:300px; z-index:inherit; font: bolder normal 16px 'Arial';}");
      addCSSRule(".item_modal button {float:left}");


This post has been edited by hc br: Jun 29 2017, 20:55
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jun 29 2017, 20:56
Post #4359
sickentide



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


QUOTE(abc12345678901 @ Jun 29 2017, 20:37) *

I have
stopOnChannelling = false,
yet it keeps stopping on channeling

oh, whoops. should be fixed now Attached File  HentaiverseMonsterbation.1.0.3.user.js.zip ( 6.54k ) Number of downloads: 119
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jun 29 2017, 20:58
Post #4360
piyin



Reasons to love the IRS.
***********
Group: Gold Star Club
Posts: 10,797
Joined: 4-February 09
Level 500 (Ponyslayer)


QUOTE(Superlatanium @ Jun 29 2017, 11:34) *

Done-ish, that wasn't hard to implement via copy and paste, though the code is very hacky.


Thanks! but what are the codes? $adb or what?
User is offlineProfile CardPM
Go to the top of the page
+Quote Post


291 Pages V « < 216 217 218 219 220 > » 
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: 25th January 2025 - 01:38