Jump to content


Photo

Diablo 3 and my automove


  • Please log in to reply
2 replies to this topic

#1 rehpmariner

rehpmariner
  • Members
  • 9 posts

Posted 21 May 2012 - 06:49 PM

I have used a macro for awhile that makes me constantly run by making the spacebar an autorun toggle:

Space:: 
if GetKeyState("LButton") 
   Click right up 
else 
   click right down 
return

It works but it uses the skill in the right button slot no matter if I put RButton or LButton. Is it Diablo 3 that is screwing me up?

#2 janopn

janopn
  • Members
  • 691 posts

Posted 21 May 2012 - 07:22 PM

Hi!
You are getting the state of the Left button.
BUT you are sending the Right button.
If you want it to send the left button...

Space:: 
if GetKeyState("LButton") 
   Click up 
else 
   click down 
return


#3 rehpmariner

rehpmariner
  • Members
  • 9 posts

Posted 22 May 2012 - 12:46 AM

dohthx,imanidiot