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

using WM_MOUSEMOVE instead of AutoIt :P

Giwin

Well-Known Member
Joined
Dec 3, 2011
Messages
3,431
Reaction score
48
So, for my AH plugin I would like to use WM_MOUSEMOVE instead of using AutoIt, the clicking is now dealt with using WM_LBUTTONDOWN/UP which I've managed to get working successfully but getting stuck with MOUSEMOVE... can anyone give me an example of WM_MOUSEMOVE using the internal Styx PostMessage.

Using AutoIt works and it works good but I'd rather not use it.

Thanks
 
So, for my AH plugin I would like to use WM_MOUSEMOVE instead of using AutoIt, the clicking is now dealt with using WM_LBUTTONDOWN/UP which I've managed to get working successfully but getting stuck with MOUSEMOVE... can anyone give me an example of WM_MOUSEMOVE using the internal Styx PostMessage.

Using AutoIt works and it works good but I'd rather not use it.

Thanks
why are you using autoit? we have access to ALL the API, clicking buttons is completely unnecessary.
 
not for hardware events and addons that check to see what button you've pressed lol

Just for posting on AH, very rare hardware event required... just easier :)
 
Last edited:
not for hardware events and addons that check to see what button you've pressed lol

Just for posting on AH, very rare hardware event required... just easier :)
how do you think the anti-afk works? we edit the time of the last hardware event. professionbuddy manages to use the AH just fine, and it doesn't use the mouse to click things. what exactly are you trying to do where you need this, so we can show you what you need to be doing.
 
You could probably take a look at the .cs that PB has the AH code in.

Just a thought.
 
using Lua now, works very well and I didn't know you could use protected lua code :P so definitely helps since it's not global so it won't take over my mouse.
 
using Lua now, works very well and I didn't know you could use protected lua code :P so definitely helps since it's not global so it won't take over my mouse.
Yes because of how honorbuddy works, to get most things to work we had to hook api thats protected, so as a developer its nice because you have access to EVERYTHING that blizzard does, not everything that blizzard has access to is documented though, but if you poke enough and see what things do you can find how to use that api.
check out docs - World of Warcraft Programming: A Guide and Reference for Creating WoW Addons

it has a running list of api you can use and events you can hook.
 
Back
Top