Jump to content

Recommended Posts

Posted

function like Send("whatever") to the game window, doesn't work at all. except for mouse macro like MouseClick function. in short, the only macro that works, that is mouse macro.

i tried several other macro programs(other than autoit), gives the same result. somehow this game maybe have kinda protection...

so, perhaps anyone could give some idea, how to solve this matter? any hint/tips...?

Posted

I've noticed that sometimes just a Send("{SPACE}") seems to be 'too fast' for a game to catch, although knowing how events work, I don't see how this could be the case.

I've found a workaround by using:

Send("{SPACE down}")
Sleep(50)
Send("{SPACE up}")

This usually does the trick.

Cheers.

  • Administrators
Posted

Adjusting the Opt("SendKeyDownDelay", 50) might help too with games (find a value that works for the game).


 

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...