Page 1 of 1

Is it possible to create a second virtual cursor in the game?

Posted: 11 May 2021, 20:40
by emanate22
The game I played folds up the data in the upper right corner,and there is no other way to view it except by stopping the mouse there. This is very very upset. so I need a second mouse cursor which only needs to be stopped there to let me read the data directly. I tried several softwares that control multiple cursors with multiple mice, but they were not ideal for me. Because cursor just move there but not STAYING in the true sense, so the data is still folded. May I ask Can ahk achieve this function. how to make such a script.or if there are other ways to solve it.thank you for telling me.This is the script I use temporarily

Code: Select all

b::
MouseGetPos,xpos,ypos
Sleep,1
Loop
{
GetKeyState, state, b, P ;
if state=U
{
Break
}
MouseMove,1810,28
}
MouseMove,xpos,ypos
[Mod edit: [code][/code] tags added.]

Re: Is it possible to create a second virtual cursor in the game?

Posted: 11 May 2021, 20:55
by swagfag
not possible. grab whatever data u need by reading from the game's memory.

Re: Is it possible to create a second virtual cursor in the game?

Posted: 11 May 2021, 22:32
by emanate22
swagfag wrote:
11 May 2021, 20:55
not possible. grab whatever data u need by reading from the game's memory.
Reading memory may be banned

Re: Is it possible to create a second virtual cursor in the game?

Posted: 21 May 2021, 14:32
by swagfag
well, thats something ull just have to test on ur own, should u decide to go through with this approach