adrianhmartinez Posted October 10, 2013 Share Posted October 10, 2013 how do you make mouse move on a full screen game that has its on cursore. even if i make it windowed it still doesnt move Quote Link to comment Share on other sites More sharing options...
LordJashin Posted October 11, 2013 Share Posted October 11, 2013 SCAR Divi's mouse/keyboard input functions don't work for some games. For most "browser" based games though, it works. Same with screen searching (bitmap finding). It might not work in some games. Games use hardware acceleration, gpu software, and special mouse/keyboard input routines such as "XInput", "DirectX", etc. Some even have "shields" to block the functions that SCAR uses for mouse/keyboard input (Windows API SendInput). If you still wanna give it a try. Try "activating" the window before you do mouse/keyboard manipulation. e.g. GetClient.Activate; // ... Mouse Manipulation here and rest of script Quote Link to comment Share on other sites More sharing options...