Page 1 of 1

Inputs for games

Posted: Fri May 27, 2016 4:16 am
by Ikonos
Would there be any reason why a game would accept one input but not another. I am trying to play the game endless legend which is a simulation game similar to civilization. A lot of the game is controlled with the left mouse click but to make a character moved to another position within the game requires a right-click however it doesn't work but left click does. Would there be any reason why this would happen?

Re: Inputs for games

Posted: Fri May 27, 2016 4:32 pm
by Zathras
Perhaps the right click needs to be held down for a moment. Try adding a little wait time between the press and release of the right click in the macro. Like this,

Code: Select all

<MOUSEBUTTONINPUT button="RIGHT" behaviour="PRESS"/>
<WAIT time="25"/>
<MOUSEBUTTONINPUT button="RIGHT" behaviour="RELEASE"/>
You may need to experiment with the length of the wait time.

Re: Inputs for games

Posted: Sat May 28, 2016 4:17 am
by Ikonos
I don't think that's the case. If that were the case all I would have to do is hold down the right-click using the facial feature I have set for right-click. I've tried also using Dragon NaturallySpeaking to right-click. I was just wondering if anybody knew why the game would need a right-click from a USB input like a mouse or controller but not through a program.