Resident Evil 0

Resident Evil 0

View Stats:
Shadefyre Jan 26, 2016 @ 3:47am
Cursor
Is there no way to hide the cursor? For me it's always on screen, even when out of menus. Wasn't a problem playing through, but now that I'm recording it is kind of pain to have there all the time.
< >
Showing 1-5 of 5 comments
HellbillyDeluxe Jan 26, 2016 @ 4:42am 
Just move it to the lower right corner of your screen and the cursor should be gone.
Truly Baz Jan 26, 2016 @ 4:44am 
I hardly ever notice it, should be fine
SageX85 Jan 26, 2016 @ 10:38am 
Here, copy those two to two text files

run re0hd run cursor

MouseGetPos, origX, origY loop { if processexist("re0hd.exe") { x:=A_ScreenWidth y:=A_ScreenHeight MouseGetPos, CheckVarX, CheckVarY sleep, 1000 MouseGetPos, CheckVarX2, CheckVarY2 If (CheckVarX = x) or (CheckVarX = y) { sleep, 100 } If (CheckVarX = CheckVarX2) or (CheckVarX = CheckVarY2) { MouseMove %x%, %y% sleep,1000 } } else { MouseMove origX, origY exit } } ProcessExist(Name){ Process,Exist,%Name% return Errorlevel }

Then with ahk2exe you create 2 exes, the first one is the launcher that runs both the game and the cursor hidder, for the sake of this code, call it cursor.exe. The second hides the cursor in the bottom right corner, every 2-3 seconds it will check if the mouse is outside the corner and return it to the hidding spot if it isnt, hidding it for good, if it is it will sleep for .1 seconds and then redo the loop. When you exit the game it will close itself, and should return the cursor to where it was when it launched, its a dirty hack made with autohotkey, but its working for me in every game where the cursor stays on screen, its made for gamepad so if you want to play kb+m, then this is not really for you, but you can edit the code to suit your needs.

Now in steam hide the game original game and create a shortcut to the launcher.
Last edited by SageX85; Jan 26, 2016 @ 10:41am
Shadefyre Jan 26, 2016 @ 4:36pm 
I guess I should have mentioned that I'm using mouse and keyboard. So I suppose there isn't a fix for that.
Originally posted by SageX85:
Here, copy those two to two text files

run re0hd run cursor

MouseGetPos, origX, origY loop { if processexist("re0hd.exe") { x:=A_ScreenWidth y:=A_ScreenHeight MouseGetPos, CheckVarX, CheckVarY sleep, 1000 MouseGetPos, CheckVarX2, CheckVarY2 If (CheckVarX = x) or (CheckVarX = y) { sleep, 100 } If (CheckVarX = CheckVarX2) or (CheckVarX = CheckVarY2) { MouseMove %x%, %y% sleep,1000 } } else { MouseMove origX, origY exit } } ProcessExist(Name){ Process,Exist,%Name% return Errorlevel }

Then with ahk2exe you create 2 exes, the first one is the launcher that runs both the game and the cursor hidder, for the sake of this code, call it cursor.exe. The second hides the cursor in the bottom right corner, every 2-3 seconds it will check if the mouse is outside the corner and return it to the hidding spot if it isnt, hidding it for good, if it is it will sleep for .1 seconds and then redo the loop. When you exit the game it will close itself, and should return the cursor to where it was when it launched, its a dirty hack made with autohotkey, but its working for me in every game where the cursor stays on screen, its made for gamepad so if you want to play kb+m, then this is not really for you, but you can edit the code to suit your needs.

Now in steam hide the game original game and create a shortcut to the launcher.
Is there a mod for this? Or do you have to do it manually?
< >
Showing 1-5 of 5 comments
Per page: 1530 50