Sherlock Holmes: Nemesis

Sherlock Holmes: Nemesis

Felix :) Jul 10, 2013 @ 3:20am
Is it possible to invert the mouse?
Unfortunately I did not find the option.
< >
Showing 1-10 of 10 comments
Maag Sathgart Sep 8, 2013 @ 12:09pm 
I thought this problem only was found in The Awaken! I'm disappointed by this simple fact!
aliendream Mar 1, 2014 @ 7:47pm 
One way to get around this is to use the program GlovePIE to create a mouse invert script:

if alt then mouse.SwallowMovement = true mouse.DirectInputY = mouse.DirectInputY - Delta (mouse1.DirectInputY) mouse.DirectInputY = mouse.DirectInputY - Delta (mouse1.DirectInputY) mouse.DirectInputX = mouse.DirectInputX + Delta (mouse1.DirectInputX) else mouse.SwallowMovement = false endif

When the alt key is held-down it will invert the mouse. You need to use a key-detect as you don't want the mouse inverted for the menus. It's not perfect and it does appear to swallow too many movements but it is a solution that at least allowed me to play the game when in first person. I'm no expert with GlovePIE, as it's just a brief look, so others may have more to add.

I also use a batch file to start the game, ie

start d:\Games\GlovePIE\piefree /run d:\Games\GlovePIE\SherlockNemesis.PIE start D:\Games\Steam\steam.exe -applaunch 11040

Source: http://glovepie.org/forum/viewtopic.php?f=10&t=183
Last edited by aliendream; Mar 1, 2014 @ 7:51pm
Rudolf Fischer Oct 24, 2018 @ 8:24am 
No ingame invert-mouse option??? omg!
RuThaN666 Dec 26, 2021 @ 4:57am 
Hello,
im unable to make mouse invert working - Win 10 GlovePIE 0.43, 0.45.. i need it without any key press..

var.invert = true

if var.invertMouse = true then
mouse.SwallowMovement = true
mouse.DirectInputY = mouse.DirectInputY - Delta (mouse1.DirectInputY)
mouse.DirectInputX = mouse.DirectInputX + Delta (mouse1.DirectInputX)
else
mouse.SwallowMovement = false
endif

Its still working for you?
mmustric Dec 26, 2021 @ 9:11pm 
Don't bother with glove pie while it works a little bit the screen will be jumpy and unusable. I have spent many hours trying to tweak the above code and it just doesn't work well. I have searched for many years for an invert mouse solution for many games. The only one that actually works is the one described here:
https://www.reddit.com/r/Genshin_Impact/comments/prgfwn/mouse_yaxis_invert_solution/

Install the driver within RawAccel_v1.4.4.zip then run the invert mouse program within InvertMouse.zip.
Its perfect. All games that do not support invert mouse are now playable with this.
Last edited by mmustric; Dec 26, 2021 @ 9:12pm
RuThaN666 Dec 30, 2021 @ 2:12pm 
Thanks i will try it. I would like to test GlovePie solution too, its not working at all maybe wrong code.
mmustric Dec 30, 2021 @ 3:41pm 
When I did play with glove pie and looked at various posts this is what I ended with but its basically the same as what aliendream posted. I just tried it with a game and I couldn't get it to work though but when this did work it gave me a way to toggle it off and on in game using my mouse's thumb button (Button4).

if Mouse.Button4 then //edit the Keys in this line
var.invert = not var.invert
Pie.MouseDPI = 1000
wait 250ms
end if

if var.invert = true then
mouse.SwallowMovement = true
mouse.DirectInputY = mouse.DirectInputY - 2* Delta (mouse1.DirectInputY)
mouse.DirectInputX = mouse.DirectInputX + Delta (mouse1.DirectInputX)
else
mouse.SwallowMovement = false
endif
RuThaN666 Jan 3, 2022 @ 12:46pm 
Thanks, i saved it for future, i now finished game when i needed it, but example there are game like Terminator future shoch etc, where this still be handy, because of inverted mouse only in some parts of games.

Less hope that someone in future will fix GlovePIe to make it working again.
SourceError Sep 4, 2024 @ 3:20pm 
This kind of thing is extremely annoying and it was very lazy of the developers not to include this in the options menu. Luckily in this case there's a relatively simple solution. There's a setup.ini file located in "%HOMEPATH%\AppData\Roaming\Games\sherlock holmes versus arsene lupin". Note that by default the AppData directory is hidden so you will have to select View->Show->Hidden items in File Explorer to navigate to it. Edit the setup.ini file and under the [camera] section there is a line "invert_camera = NO", change the NO to YES, save the file and restart the game, the camera will be inverted for 1st person view.
SourceError Sep 4, 2024 @ 3:28pm 
Originally posted by SourceError:
This kind of thing is extremely annoying and it was very lazy of the developers not to include this in the options menu. Luckily in this case there's a relatively simple solution. There's a setup.ini file located in "%HOMEPATH%\AppData\Roaming\Games\sherlock holmes versus arsene lupin". Note that by default the AppData directory is hidden so you will have to select View->Show->Hidden items in File Explorer to navigate to it. Edit the setup.ini file and under the [camera] section there is a line "invert_camera = NO", change the NO to YES, save the file and restart the game, the camera will be inverted for 1st person view.

While you're at it, you'll probably also want to change sense = 50 to something lower. 25 works okay for me.
< >
Showing 1-10 of 10 comments
Per page: 1530 50

Date Posted: Jul 10, 2013 @ 3:20am
Posts: 10