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

Semi Automated Play

Not2Legit

Member
Joined
Jul 17, 2012
Messages
145
Reaction score
0
So, I've looked everywhere to find a macro program that would allow me to cast 1, 2, 3, LMouse on LMouse down( CM Wiz =P ), to find I'm pretty sure it's...not going to happen. Is there a way to make a semi automated script, that whenever mobs in range -> Spam keyset, so I can free run with my friends, so I can save my left hand from smash 1, 2, 3 8 million times a second. My G700 allows me to set these functions, Reassign MouseWheel to LMouse w/keystroke 1, 2, 3. But I don't know how to set it to execute every 25ms while pressed, it also won't recognize in game as LMouse being depressed when holding MouseWheel, which is supposed to trigger LMouse.

Frost Nova - 1
Diamond Skin - 2
Explosive Blast - 3
Energy Twister - LMouse
 
Last edited:
Download AutoHotKey, make a new script and paste this.

d:: Loop
{
if not GetKeyState("d", "P")
break


Send 1
Sleep 50
Send 2
Sleep 50
Send 3
Sleep 50
Click
Sleep 50
}
return

I had my stopmove button in diablo set to "space" so by pressing space and d it will cast 1-2-3 and left mouse click in a loop.

Edit:This could cause a ban from blizzard as it's not allowed.
 
Last edited:
Back
Top