Ahk help with the new build.

Posts 12 of 2 · Page 1 of 1
Ahk help with the new build.
I currently run an autohotkey program with realm for a few things, but one of the most important is the ability to use special ability by right clicking. The new build added the ability to right click on a players name in chat to teleport/lock whatever. It works flawlessly unless im running my autohotkey in which case it just uses my ability and no menu pops up. I was wondering if anyone could help me fix this problem?
I don't know the AHK syntax but this should fix your problem


Code:
if(Mouse_Click_Right)
{
Send(Ability);
Send(Mouse_Click_Right);
}


Or for a better solution


Code:
//only to right click on name
If(CTRL + Mouse_Click_Right)
{
Send(Mouse_Click_Right);
}
Posts 12 of 2 · Page 1 of 1

Post a Reply

Similar Threads

Tags for this Thread

None

Need help?