Page 1 of 2
					
				Bear Warrior and hotkeys
				Posted: Mon Mar 26, 2018 10:58 am
				by KOPOJIbPAKOB
				Please make bear warrior abilities usable via hotkeys. It is annoying to grind and impossible to PvP when you need to manually click all the abilities (some of those are in different parts of the screen). There is a pic of this bloody hell.
 
P.S. It is really hilarious having a feat that counters HipSters to null, but being unable to use it because you simply don't have the time to click on it, and hotkeys are blocked.
 
			
					
				Re: Bear Warrior and hotkeys
				Posted: Mon Mar 26, 2018 1:04 pm
				by artemitavik
				Have you tried setting up your other 3 bars of hotkeys on screen?
I believe it's under Options, two vertical and one horizontal.
			 
			
					
				Re: Bear Warrior and hotkeys
				Posted: Mon Mar 26, 2018 1:07 pm
				by KOPOJIbPAKOB
				artemitavik wrote:Have you tried setting up your other 3 bars of hotkeys on screen?
I believe it's under Options, two vertical and one horizontal.
All the bars are blocked, everything is blocked except mode bar and additional custom bear warrior bar with 3 buttons. There is no way to set hotkeys for them.
 
			
					
				Re: Bear Warrior and hotkeys
				Posted: Mon Mar 26, 2018 1:11 pm
				by artemitavik
				Hm, odd.
Have you tried opening up your character sheet and dragging the feats directly from there to a hotbar?
I've never seen hotbars not be able to be turned on before.
			 
			
					
				Re: Bear Warrior and hotkeys
				Posted: Mon Mar 26, 2018 1:39 pm
				by Valefort
				It's a shapechange effect so all hotbars are deactivated.
			 
			
					
				Re: Bear Warrior and hotkeys
				Posted: Mon Mar 26, 2018 2:05 pm
				by KOPOJIbPAKOB
				Valefort wrote:It's a shapechange effect so all hotbars are deactivated.
But isn't this possible to create a script that automatically sets knockdown hotkey to 1, charge to 2 and roar to 3 while in bear form?
 
			
					
				Re: Bear Warrior and hotkeys
				Posted: Mon Mar 26, 2018 2:44 pm
				by Valefort
				I had to search to make sure but the events caught by the GUI are very limited, all of them are mouse related except the enter key. So, choose wisely, what should the Enter key do ? KD, Charge or Roar ?
			 
			
					
				Re: Bear Warrior and hotkeys
				Posted: Mon Mar 26, 2018 2:54 pm
				by Steve
				Okay, this is just a thought, more related to understanding what 
can be done, not actually what 
should be done:
Like with Expose Weakness being a Mode that auto-applies, could Imp. Knockdown become a Mode for Bear Warriors when in Bear Form, and that it would fire automatically?  Would that be cool, or would that suck, because it would randomly (?) use up an attack?  Or, maybe like Expose Weakness, just "lay over" the first attack of the Round?
And, could Charge—if you have that feat—be auto-applied if you make a running attack?  How would the Engine know, right?  Maybe Charge would background calculate the distance when you click Attack/Space Bar, and auto-convert to a Charge attack?  
Anyway...the brain just fired off...but maybe misfired off?!!?   

 
			
					
				Re: Bear Warrior and hotkeys
				Posted: Mon Mar 26, 2018 3:01 pm
				by KOPOJIbPAKOB
				Valefort wrote:I had to search to make sure but the events caught by the GUI are very limited, all of them are mouse related except the enter key. So, choose wisely, what should the Enter key do ? KD, Charge or Roar ?
But enter key opens chat...
Is there really no way to do something? T_T 
Steve wrote:Okay, this is just a thought, more related to understanding what 
can be done, not actually what 
should be done:
Like with Expose Weakness being a Mode that auto-applies, could Imp. Knockdown become a Mode for Bear Warriors when in Bear Form, and that it would fire automatically?  Would that be cool, or would that suck, because it would randomly (?) use up an attack?  Or, maybe like Expose Weakness, just "lay over" the first attack of the Round?
And, could Charge—if you have that feat—be auto-applied if you make a running attack?  How would the Engine know, right?  Maybe Charge would background calculate the distance when you click Attack/Space Bar, and auto-convert to a Charge attack?  
Anyway...the brain just fired off...but maybe misfired off?!!?   

 
I think buffing bear warrior is a good idea. Basically, you are playing without a keyboard in bear form, so you will always be outplayed by a person who plays with.
 
			
					
				Re: Bear Warrior and hotkeys
				Posted: Mon Mar 26, 2018 3:20 pm
				by Aspect of Sorrow
				Macro the simulated mouse down event to the coordinate on the screen to any hardware input of your choosing. This is not a bug.
			 
			
					
				Re: Bear Warrior and hotkeys
				Posted: Mon Mar 26, 2018 3:27 pm
				by KOPOJIbPAKOB
				Aspect of Sorrow wrote:Macro the simulated mouse down event to the coordinate on the screen to any hardware input of your choosing. This is not a bug.
I have absolutely no idea how to it (I am 0 in programming), are there any articles about that?
 
			
					
				Re: Bear Warrior and hotkeys
				Posted: Mon Mar 26, 2018 3:28 pm
				by Aspect of Sorrow
				
			 
			
					
				Re: Bear Warrior and hotkeys
				Posted: Mon Mar 26, 2018 4:50 pm
				by KOPOJIbPAKOB
				Aspect of Sorrow wrote:Macro the simulated mouse down event to the coordinate on the screen to any hardware input of your choosing.
I finally figured out how to make script that makes mouse click at the icon and then return to its previous position, but there is a delay, and sometimes my mouse cursor doesn't return to its position, in general it feels clumsy and inconvinient compared to normal abilities used by normal hotkeys. But thanks for the advice.
Aspect of Sorrow wrote:This is not a bug.
By the way, I didn't say anything about the bug, but controling bear warrior is a hell. I recommend everyone who disagree to play with a left hand tied behind one's back.
 
			
					
				Re: Bear Warrior and hotkeys
				Posted: Mon Mar 26, 2018 5:26 pm
				by Aspect of Sorrow
				You can import user32.dll and interop 
Code: Select all
mouse_event(uint dwFlags, uint dx, uint dy, uint cButtons, uint dwExtraInfo)
0x02 for mouse down, 0x04 for mouse up.
Code: Select all
mouse_event(0x02 | 0x04, (int in pixels from left side of screen), (int in pixels from top), 0,);
 
			
					
				Re: Bear Warrior and hotkeys
				Posted: Tue Mar 27, 2018 1:00 pm
				by Valefort
				Btw nothing prevents you from dragging the Bear warrior GUI to a more convenient spot.