Welcome Guest ( Log In | Register )

4 Pages V < 1 2 3 4 >  
Reply to this topicStart new topic
> HV Keybinds

 
post May 21 2012, 03:21
Post #21
Stifflerfun21



Casual Poster
****
Group: Members
Posts: 259
Joined: 8-December 11
Level 211 (Godslayer)


Less clicking... I like.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post May 21 2012, 03:21
Post #22
Stifflerfun21



Casual Poster
****
Group: Members
Posts: 259
Joined: 8-December 11
Level 211 (Godslayer)


Less clicking... I like.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post May 22 2012, 04:03
Post #23
grumpymal



I hate everything >:C
***********
Group: Gold Star Club
Posts: 10,923
Joined: 2-April 08
Level 362 (Godslayer)


Well that's....interesting.
CODE
Error: Component is not available
Source File: file:///.../hvkeybinds-2.4.1.user.js
Line: 54


Says this is the suspect line:
CODE
var overriddenKeyDown = document.onkeydown;


FF 3.6.17, GM 0.9.20, vanilla install script from thread with no keybinds added yet. I could probably figure out what's wrong and fix it myself, but just in case I'm not the only one who runs into this problem, you should probably take a look.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post May 22 2012, 10:30
Post #24
rkinasz



Regular Poster
*****
Group: Members
Posts: 501
Joined: 8-March 12
Level 246 (Godslayer)


This is no longer relevant

This post has been edited by rkinasz: May 3 2024, 01:45
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post May 23 2012, 02:08
Post #25
grumpymal



I hate everything >:C
***********
Group: Gold Star Club
Posts: 10,923
Joined: 2-April 08
Level 362 (Godslayer)


Based on all of the documentation I've seen for onkeydown, I think it has something to do with it expecting a function call for that event. It was something I ran into a lot some time ago when I was helping someone else develop a hotkey script. I don't really remember how I got around it and I don't have a copy of it any more.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jun 9 2012, 20:22
Post #26
Yuuki17



魔法少女
*******
Group: Members
Posts: 1,051
Joined: 4-March 12
Level 347 (Godslayer)


Had this working initially, when I switched and added some keys it no longer works for me.
Did I mess up somewhere with this?
CODE
Bind(KEY_END, Cast("Magic Missile"));
Bind(KEY_DOWN, Cast("Chain Lightning"));
Bind(KEY_PAGEDOWN, Cast("Hurricane"));
Bind(KEY_LEFT, Cast("Cure"));
Bind(12, Cast("Banish"));
Bind(KEY_RIGHT, Cast("Purge"));
Bind(KEY_HOME, Cast("Pestilence"));
Bind(KEY_UP, Cast("Haste"));
Bind(KEY_PAGEUP, Cast("Shadow Veil"));
Bind(46, Cast("Weaken"));
Bind(107, Cast("Imperil"));
Bind(109, Cast("Silence"));
Bind(KEY_COMMA, UseNext(ManaPotion));
Bind(KEY_PERIOD, UseNext(SpiritPotion));

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

 
post Jun 10 2012, 09:54
Post #27
hentai_fusion



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


hmm... don't think '12' is a valid key code...
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jun 10 2012, 12:55
Post #28
kjeron



Casual Poster
***
Group: Members
Posts: 112
Joined: 6-September 11
Level 332 (Godslayer)


QUOTE(hentai_fusion @ Jun 10 2012, 02:54) *

hmm... don't think '12' is a valid key code...

It is, its '5' on the numpad, with numlock off.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jul 1 2012, 23:14
Post #29
Handsome Phil



Retired
*******
Group: Gold Star Club
Posts: 2,198
Joined: 12-July 09
Level 392 (Godslayer)


Awesome script! Finally I can play my HentaiVerse like all the other MMOs/Action RPGs out there (WoW, Diablo 3 etc.) with fast keyboard presses instead of clicking on each spell every time. (IMG:[invalid] style_emoticons/default/biggrin.gif)
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jul 8 2012, 06:31
Post #30
-HS-



百合は正義!
****
Group: Members
Posts: 275
Joined: 29-October 09
Level 121 (Ascended)


I've got a problem with the script.
Unbinding the default keys is no problem, but I can't seem to override them.
Has anyone else encountered this problem?
I'm using the newest Firefox version along with Greasemonkey.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jul 8 2012, 06:42
Post #31
n125



Elite Poster
*********
Group: Gold Star Club
Posts: 6,282
Joined: 23-May 08
Level 500 (Godslayer)


QUOTE(-HS- @ Jul 7 2012, 21:31) *

I've got a problem with the script.
Unbinding the default keys is no problem, but I can't seem to override them.
Has anyone else encountered this problem?
I'm using the newest Firefox version along with Greasemonkey.


You don't have to unbind a default key before you assign it to something else. Just assigning another function to a default key should be enough to override its default function.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jul 8 2012, 07:07
Post #32
-HS-



百合は正義!
****
Group: Members
Posts: 275
Joined: 29-October 09
Level 121 (Ascended)


QUOTE(n125 @ Jul 8 2012, 06:42) *

You don't have to unbind a default key before you assign it to something else. Just assigning another function to a default key should be enough to override its default function.

Yes, that's what I've been doing.
I tried reinstalling the script several times, but even unchanged (with M already assigned) it doesn't seem to work for me.
I've never had any problems with other HV scripts though.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jul 10 2012, 22:21
Post #33
rkinasz



Regular Poster
*****
Group: Members
Posts: 501
Joined: 8-March 12
Level 246 (Godslayer)


QUOTE(-HS- @ Jul 7 2012, 22:07) *

Yes, that's what I've been doing.
I tried reinstalling the script several times, but even unchanged (with M already assigned) it doesn't seem to work for me.
I've never had any problems with other HV scripts though.


Sorry for not responding sooner. Are you using the default HV font engine? I recently found my script won't work unless you use downloadable/custom fonts. I may fix this in the future.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jul 16 2012, 15:53
Post #34
-HS-



百合は正義!
****
Group: Members
Posts: 275
Joined: 29-October 09
Level 121 (Ascended)


QUOTE(rkinasz @ Jul 10 2012, 22:21) *

Sorry for not responding sooner. Are you using the default HV font engine? I recently found my script won't work unless you use downloadable/custom fonts. I may fix this in the future.


Ahhh, so that was the problem.
Thank you, I'm going to try it with custom fonts now.

Edit: works great now. Thanks!

This post has been edited by -HS-: Jul 16 2012, 16:25
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jul 16 2012, 22:18
Post #35
rkinasz



Regular Poster
*****
Group: Members
Posts: 501
Joined: 8-March 12
Level 246 (Godslayer)


This is no longer relevant

This post has been edited by rkinasz: May 3 2024, 01:45
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Aug 22 2012, 05:17
Post #36
ehzzz777



Casual Poster
****
Group: Members
Posts: 473
Joined: 31-March 12
Level 316 (Godslayer)


(IMG:[invalid] style_emoticons/default/smile.gif) very cool tools,thanks very much!
If key"R" (Recast last Spell) can be replaced with any another key,that's perfect ,I think so (IMG:[invalid] style_emoticons/default/rolleyes.gif)
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Aug 26 2012, 22:09
Post #37
Handsome Phil



Retired
*******
Group: Gold Star Club
Posts: 2,198
Joined: 12-July 09
Level 392 (Godslayer)


Can't install the script anymore into Chrome (latest version) unless it comes directly from the official Chrome Web Store. Halp??

Edit #1: Never mind, managed to install it through Tampermomkey instead. :)

Edit #2: Alright now it's a big deal again, I disabled Tampermomkey as it made HentaiVerse unacceptable laggy. Now what do I do? :(

Edit #3: Thanks to the guys at the IRC channel I managed to install the script without using Tampermomkey, here's how:

QUOTE
<MrTT> It says it must be from play store, that is a LIE
<MrTT> step 1: download them
<MrTT> step 2: open extensions window
<MrTT> step 3: drag file into extension window


This post has been edited by Handsome Phil: Aug 26 2012, 23:35
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Aug 30 2012, 07:36
Post #38
4EverLost



Just 1 of Santa's little Helpers
************
Group: Gold Star Club
Posts: 36,632
Joined: 2-April 10
Level 463 (Godslayer)


I want to add more bindings but I can't seem to find the file to edit for chrome, I did for FF but I can't seem to find the right one for chrome.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Aug 30 2012, 08:03
Post #39
danixxx



Currently exhausted
*********
Group: Catgirl Camarilla
Posts: 7,340
Joined: 3-September 10
Level 500 (Godslayer)


QUOTE(4EverLost @ Aug 30 2012, 07:36) *

I want to add more bindings but I can't seem to find the file to edit for chrome, I did for FF but I can't seem to find the right one for chrome.


I think it's the same.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Nov 25 2012, 12:06
Post #40
darkcuph



Newcomer
*
Group: Recruits
Posts: 12
Joined: 18-November 12
Level 108 (Ascended)


Hello..

I'm trying to put Iris Strike into the script but still didn't work so far.

I am able to use Magic Missile by pressing M, but nothing happened when I cast Iris Strike (Shift + A). So far I only have these two:

Bind(KEY_M, Cast("Magic Missile"));
Bind(KEY_A, Shift, Cast("Iris Strike"));
User is offlineProfile CardPM
Go to the top of the page
+Quote Post


4 Pages V < 1 2 3 4 >
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: 8th June 2025 - 19:07