soulhealer Posted January 14, 2005 Posted January 14, 2005 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...?
buzz44 Posted January 14, 2005 Posted January 14, 2005 if u are doing that u must use controlsend, except it cant send !@%@$^%&) characters etc... looking up the UDF controlsendplus. qq
soulhealer Posted January 14, 2005 Author Posted January 14, 2005 i tried ControlSend, it didn't work either. hm, what is "UDF controlsendplus" ? can't find it on the help file.
Fur Posted January 14, 2005 Posted January 14, 2005 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 Jon Posted January 15, 2005 Administrators Posted January 15, 2005 Adjusting the Opt("SendKeyDownDelay", 50) might help too with games (find a value that works for the game).
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now