Welcome Guest ( Log In | Register )

44 Pages V « < 40 41 42 43 44 >  
Reply to this topicStart new topic
> [Script] Monsterbation 1.4.1.2, A comprehensive hovering script for HentaiVerse and ISK. Including CrunkJuice 1.3.0, an out-of-battle script

 
post May 2 2023, 18:21
Post #821
Noni



Hataraku Noni-sama
***********
Group: Catgirl Camarilla
Posts: 13,131
Joined: 19-February 16
Level 500 (Ponyslayer)


QUOTE(Alorian @ May 1 2023, 22:55) *

And what is this wheelleft/right anyway? Google says that this is horizontal scrolling and it works on other sites if you hold down the mouse wheel and swipe the mouse left or right, but in the PM window in chrome, this action does not trigger the spell (I am interested in the spell of silence)
How can I call this action and does it work at all in the script?

P.S. In general, my main problem is that I can't set up hotkeys for the spells I need (silence, for example) on the keyboard keys so that they work when I hover over the monster icon. This action works fine when I press the left or right mouse button with the pointer, but if, for example, I write such a code:
CODE
Bind(KEY_S, Any, Cast('Silence');

and I press the activation key when my cursor is pointed at the monster, then the spell is not used. But at the same time, this code:
CODE
Bind(KEY_S, Hooveraction(Strongest([ToggleHover, Cast('Silence')]), true));

it works fine, although at first I have to press the Z key, which is inconvenient. How do I write code that would activate a silence spell on a monster under the cursor when a key is pressed?

P.P.S. I found an x-mouse button control program that allows you to reassign mouse keys, and now I can activate the left/right wheel using the side mouse keys. At least figured it out. But still, I will be glad if someone tells me the correct code so that the spells are activated by pressing a key under the mouse cursor.


CODE
Bind(KEY_S, Any, Cast('Silence');
you are missing a bracket. Please use the Monsterbation Linter, it's such a terrible pain to get it fault free without it: https://forums.e-hentai.org/index.php?showtopic=253425
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jul 4 2023, 20:18
Post #822
wanghao012345aol



Newcomer
**
Group: Members
Posts: 52
Joined: 22-January 19
Level 372 (Dovahkiin)


alertBuffs: '/(healthpot.png|manapot.png|scroll.png|infusion.png|regen.png|heartseeker.png|arcanemeditation.png|protection.png|channeling.png)/',

protection.png
channeling.png

I added these but did not stop. Am I doing something wrong? (ver 1.4.1.2.w)
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jul 5 2023, 04:59
Post #823
LogJammin



MagNet Magnate
*****
Group: Catgirl Camarilla
Posts: 597
Joined: 11-October 14
Level 500 (Ponyslayer)


QUOTE(wanghao012345aol @ Jul 4 2023, 18:18) *

alertBuffs: '/(healthpot.png|manapot.png|scroll.png|infusion.png|regen.png|heartseeker.png|arcanemeditation.png|protection.png|channeling.png)/',

protection.png
channeling.png

I added these but did not stop. Am I doing something wrong? (ver 1.4.1.2.w)


Stop on channeling is forbidden, so it's hardcoded to not work on channeling if I remember right

No idea why it isn't working with protection, maybe add protection_scroll.png and see if that works?
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jul 5 2023, 08:25
Post #824
wanghao012345aol



Newcomer
**
Group: Members
Posts: 52
Joined: 22-January 19
Level 372 (Dovahkiin)


QUOTE(LogJammin @ Jul 5 2023, 04:59) *

Stop on channeling is forbidden, so it's hardcoded to not work on channeling if I remember right

No idea why it isn't working with protection, maybe add protection_scroll.png and see if that works?


Thanks for the reply.
I added protection_scroll.png and tried it and it works.
With protection.png it did not work.

edit:
It worked fine, adding it to the critical buffs in the monsterbation menu, not from a user script in tempermonkey.

This post has been edited by wanghao012345aol: Jul 5 2023, 20:26
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Aug 5 2023, 16:30
Post #825
m33b00



Newcomer
*
Group: Recruits
Posts: 12
Joined: 30-December 21
Level 308 (Godslayer)


The behavior of mouse bindings is different from key bindings, which makes me confuse

CODE
Impulse(Cast('Imperil'))


When mouse hovers over monster A, the code above binding "wheel up" works in sequence:
1.wheel up
2.choose spell Imperil
3.cast spell on monster A

CODE

// Bind(KEY_I, HoverAction(Cast('Imperil')));\ -- Cast Imperil on selected monster, ignore alerts.
// Bind(KEY_I, HoverAction(Strongest([ToggleHover, Cast('Imperil')]), true));\ -- Single cast of Imperil, respect alerts.
// Bind(KEY_I, Strongest([TargetMonster(0), Cast('Imperil')]));\ -- Cast Imperil on monster A.
// Bind(KEY_I, Strongest([CursorTarget, Cast('Imperil')]));\ -- Cast Imperil on selected monster.
// Bind(KEY_I, CursorHover);\ -- Hover on selected monster, recommended use with clearRound = true.


Whichever code above doesn't work like mouse binding.With mouse hovering, they work in sequence:
1.Press KEY_I
2.choose spell Imperil
3.end, no casting action (all code make no difference)

Is there any way to bind keyboard and make their behavior the same as mouse binding? thanks
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Aug 31 2023, 02:04
Post #826
SidZBear



Regular Poster
*****
Group: Gold Star Club
Posts: 560
Joined: 31-May 16
Level 500 (Ponyslayer)


Picked this up again after being away from a while. working on getting my bindings and actions set up again, but im having issues with hover action.

CODE
Bind(KEY_A, Any, Impulse(Strongest([Cast('Cure'), Cast('Full-Cure'), Use(1)])));
works just fine, but
CODE
Strongest([Use(2), Cast('Paradise Lost'), Cast('Banishment'), Cast('Smite')])
does not; not only that but when I try to save it gives me a pop up of somekind and reverts the line. what gives?
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Aug 31 2023, 09:51
Post #827
wanghao012345aol



Newcomer
**
Group: Members
Posts: 52
Joined: 22-January 19
Level 372 (Dovahkiin)


Bind(KEY_1, Any, Strongest([TargetMonster(1), Cast('Imperil')]));
Bind(KEY_2, Any, Strongest([TargetMonster(4), Cast('Imperil')]));

When there are 4 monsters, pressing KEY2 does not cast imperil.
Why is this?
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Aug 31 2023, 15:41
Post #828
SidZBear



Regular Poster
*****
Group: Gold Star Club
Posts: 560
Joined: 31-May 16
Level 500 (Ponyslayer)


QUOTE(wanghao012345aol @ Aug 31 2023, 00:51) *

Bind(KEY_1, Any, Strongest([TargetMonster(1), Cast('Imperil')]));
Bind(KEY_2, Any, Strongest([TargetMonster(4), Cast('Imperil')]));

When there are 4 monsters, pressing KEY2 does not cast imperil.
Why is this?

Monster numbers are 0-9, so monster 4 in the code is monster 5 in the encounter
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Sep 2 2023, 10:46
Post #829
wanghao012345aol



Newcomer
**
Group: Members
Posts: 52
Joined: 22-January 19
Level 372 (Dovahkiin)


QUOTE(SidZBear @ Aug 31 2023, 15:41) *

Monster numbers are 0-9, so monster 4 in the code is monster 5 in the encounter


Bind(KEY_1, Any, Strongest([TargetMonster(0), Cast('Imperil')]));
Bind(KEY_2, Any, Strongest([TargetMonster(3), TargetMonster(4), Cast('Imperil')]));
Bind(KEY_3, Any, Strongest([TargetMonster(6), TargetMonster(7), Cast('Imperil')]));

It worked. Thank you very much.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Sep 15 2023, 19:43
Post #830
eramosat



Active Poster
*******
Group: Gold Star Club
Posts: 1,366
Joined: 9-October 10
Level 462 (Godslayer)


QUOTE(wanghao012345aol @ Sep 2 2023, 04:46) *

Bind(KEY_1, Any, Strongest([TargetMonster(0), Cast('Imperil')]));
Bind(KEY_2, Any, Strongest([TargetMonster(3), TargetMonster(4), Cast('Imperil')]));
Bind(KEY_3, Any, Strongest([TargetMonster(6), TargetMonster(7), Cast('Imperil')]));

It worked. Thank you very much.


speaking of this exact code...

when I am hovering, pressing keys 1 2 or 3 do not trigger, the hover action continues. in order to use these keybinds to cast Imperil, I have to move my cursor off of the active monsters.

In my Monsterbation script, I notice a feature to turn off Hover at the start of a round with a note "in case you want to Imperil first". I suppose this is for me...via in-game Settings

not sure why some commands "break through" Hover actions but not these ones. But I'll try it.

Update: well turning off Hover at start of round allowed 1 Imperil to be cast...but not additional casts. Any advice to allow up to 3 casts is appreciated.

SecondUpdate: I see from some previous posts on similar subject that moving cursor away may simply be the preferred/proper method?

This post has been edited by eramosat: Sep 15 2023, 20:12
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Sep 17 2023, 11:44
Post #831
LupoRosa



Lurker
Group: Lurkers
Posts: 2
Joined: 22-November 20
Level 31 (Journeyman)


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

 
post Sep 24 2023, 14:10
Post #832
myrstidal



Newcomer
*
Group: Members
Posts: 42
Joined: 17-March 09
Level 434 (Godslayer)


I'm using Monsterbation 1.4.1.2 and I have the option "advance to next round using ajax. set to false if you use other scripts that do not support this" enabled but during battles it doesn't automatically skip to the next round. The only other script I have installed is HVtoolbox, which I don't think affects battles. Does anybody have any ideas why it doesn't work in my case?

Edit: Tried switching back to 1.3.2.1 and the problem fixed itself. I guess there's something in 1.4.1.2 that doesn't agree with my browser or something.

This post has been edited by myrstidal: Sep 24 2023, 16:55
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Sep 27 2023, 18:58
Post #833
Saito1992



Newcomer
**
Group: Members
Posts: 73
Joined: 12-June 23
Level 237 (Destined)


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

 
post Oct 6 2023, 14:29
Post #834
pizzcato2014



Lurker
Group: Recruits
Posts: 4
Joined: 1-October 21
Level 283 (Godslayer)


Thank you for your script.it really saves my mouse.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Oct 14 2023, 15:23
Post #835
Evyy



Regular Poster
******
Group: Members
Posts: 892
Joined: 19-March 08
Level 401 (Dovahkiin)


Is this a thing? If you have Vital Strike ready to use and the monster you're currently hovering (in my case it's the schoolgirls in DWD) is stunned, temporarily stop the hovering action so you can (manually) use Vital Strike. It's a bit mentally draining to pay attention 1) whether Vital Strike is not on CD 2) schoolgirl boss is stunned (which doesn't last long, like 3 turns, requires a little reflex).
User is online!Profile CardPM
Go to the top of the page
+Quote Post

 
post Oct 15 2023, 06:07
Post #836
jakalsito



Newcomer
**
Group: Members
Posts: 64
Joined: 6-November 10
Level 435 (Dovahkiin)


Hello, could you recommend and teach me how to install scripts? I'm terrible at programming. greetings
User is online!Profile CardPM
Go to the top of the page
+Quote Post

 
post Oct 15 2023, 07:45
Post #837
Pretty anon



Full power, full throttle
*******
Group: Gold Star Club
Posts: 1,663
Joined: 10-April 17
Level 500 (Ponyslayer)


QUOTE(jakalsito @ Oct 14 2023, 22:07) *

Hello, could you recommend and teach me how to install scripts? I'm terrible at programming. greetings


Just gotta be familiar with userscript managers, basically a sort of program that will, as the name implies, manage your userscripts. Here's a better explanation from the past.

QUOTE(Pretty anon @ Mar 3 2022, 18:53) *

Hi, to make use of these scripts people use userscript managers such as Tampermonkey, Greasemonkey, Firemonkey and god knows how many monkeys there were around. In any case those script managers are usually available as browser extensions. So when you install the one you prefer the most to your browser of choice, you can now start adding the scripts provided here.

After that you can just click on the script link ending in .js and an installation prompt will open from the dashboard of your manager where you just need to click "Install". If clicking the script just opens a new tab with a lot of text and code you can also open the dashboard of your manager, press "Add", "+" or similar and copy paste the contents of the script, and in the case of Tampermonkey you just press "File" and "Save" after that and you're done.

I also recommend checking the latest posts of the threads for each script along with their opening post to check for the latest versions available. Some of them also require for you to have a custom font set in your HV settings to work properly so if having problems try setting that first.


This post has been edited by Pretty anon: Oct 15 2023, 07:46
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Oct 15 2023, 20:18
Post #838
Ilovecommm



Lurker
Group: Lurkers
Posts: 1
Joined: 25-September 23
Level 67 (Expert)


Nobody got a tutorial ta instal the script on mobile? I can make it work o copy/Pasteur the script in tempermonley but notjing
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Oct 16 2023, 07:42
Post #839
Hinoka



Active Poster
*******
Group: Catgirl Camarilla
Posts: 2,033
Joined: 28-April 13
Level 500 (Ponyslayer)


QUOTE(Ilovecommm @ Oct 15 2023, 11:18) *

Nobody got a tutorial ta instal the script on mobile? I can make it work o copy/Pasteur the script in tempermonley but notjing


Use Nightly on Mobile. I use it all the time with Tampermonkey. Then you can play anywhere you want.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Nov 11 2023, 23:07
Post #840
Vanz/452



~(=^‥^)/
****
Group: Members
Posts: 467
Joined: 15-September 10
Level 388 (Dovahkiin)


QUOTE(Ilovecommm @ Oct 15 2023, 12:18) *

Nobody got a tutorial ta instal the script on mobile? I can make it work o copy/Pasteur the script in tempermonley but notjing

I just did that and works in regular Firefox.

Thanks for the script. (IMG:[invalid] style_emoticons/default/wink.gif)
User is offlineProfile CardPM
Go to the top of the page
+Quote Post


44 Pages V « < 40 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: 3rd April 2025 - 14:09