What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal
RebornBuddy Forums

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Sending HB Hotkey Commands from AHK GUI

remtownloljk

New Member
Joined
Dec 4, 2011
Messages
60
Sending HB Hotkey Commands from AHK GUI [WILL PAY FOR HELP IF NEEDED]

Hi,

So i just need help with having my Autohotkey GUI script be recognized by Honorbuddy Combat Routines.

Basically it's just a simple script that allows me to click a button on the GUI and it simulates a keystroke/s.

Now when i click one of the buttons it will send the keystroke to literally everything, but when i hotkey for example "Burst Toggle" in Cokx's Combat Routine for some reason it does not recognize the Keystroke like it would pressing the button on a keyboard.

Iv'e tried Controlsend to Wow, Honorbuddy and just regular Send ###

The reason i need this is that i have a physical disability where i cannot use my arms/hands (spinal cord injury) so i click pretty much everything that a combat routine doesn't do for me.

This GUI idea will be such a massive help if i can just somehow get Honorbuddy to recognize it as a normal keystroke. I understand that this isn't Autohotkey support but i have no where else to go with this :(


Thanks so much, i appreciate it alot.

Here's the AHK Code if that helps

Code:
WinGet, wowid, list, World of Warcraft
#IfWinActive, World of Warcraft
 
Gui,+AlwaysOnTop
 
#SingleInstance, Force
CustomColor = 000001
Gui +LastFound +AlwaysOnTop +ToolWindow -Caption +E0x08000000
Gui, Color, %CustomColor%
Gui, Font, s10, Lucida Console
 
Gui, Add, Text, x0 y0 w115 gGuiMove 0x5
 
Gui, Show, h321 w218 NoActivate, Test
Gui, Color, 000000
Gui, Font, S15 cRed Bold Italic, Verdana
 
 
Gui, Add, Button, h100 w100 x6 y7   gFEAR,FEAR
Gui, Add, Button, h100 w100 x6 y110 gSTUN,STUN
Gui, Add, Button, h100 w100 x6 y213 gRUN,RUN
 
Gui, Add, Button, h100 w100 x112 y7   gBURST,BURST
Gui, Add, Button, h100 w100 x112 y110 gSPACE2,SPACE2
Gui, Add, Button, h100 w100 x112 y213 gSPACE3,SPACE3
 
return
 
 
 
 
;;;Label's
 
 
RUN:
	Send {3}
return
 
STUN:
	Send {2}
return
 
FEAR:
	Send {1}
return
 
BURST:
	Send {4}
return
 
SPACE2:
	Send {5}
return
 
SPACE3:
	Send {6}
return
 
;;For drag moving the GUI
GuiMove: 
    PostMessage, 0xA1, 2,,, ahk_class AutoHotkeyGUI
Return
 
GuiClose:
    ExitApp
 
Last edited:
[Moved to Honorbuddy general forum. Since not an issue with broken Honorbuddy, post does not belong in the Support forum.]
 
Back
Top