SUBSIM Radio Room Forums



SUBSIM: The Web's #1 resource for all submarine & naval simulations since 1997

Go Back   SUBSIM Radio Room Forums > Silent Hunter 3 - 4 - 5 > Silent Hunter III
Forget password? Reset here

Reply
 
Thread Tools Display Modes
Old 01-22-15, 06:25 PM   #1
Delta Wolf
Engineer
 
Join Date: Apr 2013
Posts: 209
Downloads: 155
Uploads: 0
Default

Quote:
Originally Posted by hatemf90 View Post
thanks!

heres another small question... how do I make it not go back to speed 1 every time I receive a message? it drives me crazy when searching for ships with my hand constantly on the + to increase speed again.
I believe there is also a fix for this in H.sie's patcher....


15. WarNews - by Stiebler and h.sie
TC doesn't drop down to 1 when a radio message is received.



Thread here....

http://www.subsim.com/radioroom/showthread.php?t=174225
Delta Wolf is offline   Reply With Quote
Old 11-06-15, 04:21 AM   #2
a.g.
Swabbie
 
Join Date: Nov 2015
Posts: 11
Downloads: 18
Uploads: 0
Default

Yesterday I bought the game on Steam after seeing some YouTube videos, and was immediately annoyed at how twitchy the camera rotation was, so I did some digging and found a hard-coded floating point constant that can be used to tweak sensitivity. It's located at offset 0x11daa4 in sh3.exe (seems valid for both raw Steam and h.sie patched one), and by default is set to 1/600. Thus for instance changing bytes like this to reduce it to 1/3600 makes all camera rotations with the mouse a lot slower:

Code:
0011DAA4: 0e -> b4
0011DAA5: 74 -> a2
0011DAA6: DA -> 91
0011DAA7: 3a -> 39
Maybe someone can make a more convenient way to do this, but it works for me
a.g. is offline   Reply With Quote
Old 11-06-15, 10:31 AM   #3
Aktungbby
Gefallen Engel U-666
 
Aktungbby's Avatar
 
Join Date: Jul 2013
Location: On a tilted, overheated, overpopulated spinning mudball on Collision course with Andromeda Galaxy
Posts: 29,997
Downloads: 24
Uploads: 0


Default welcome aboard!

a.g.!
__________________

"Only two things are infinite; The Universe and human squirrelyness?!!
Aktungbby is offline   Reply With Quote
Old 11-07-15, 09:38 AM   #4
Jimbuna
Chief of the Boat
 
Jimbuna's Avatar
 
Join Date: Feb 2006
Location: 250 metres below the surface
Posts: 190,500
Downloads: 63
Uploads: 13


Default

Welcome to SubSim a.g.
__________________
Wise men speak because they have something to say; Fools because they have to say something.
Oh my God, not again!!

Jimbuna is offline   Reply With Quote
Old 11-07-15, 10:06 AM   #5
makman94
Hellas
 
Join Date: Jul 2008
Posts: 2,325
Downloads: 182
Uploads: 7


Default

Quote:
Originally Posted by a.g. View Post
Yesterday I bought the game on Steam after seeing some YouTube videos, and was immediately annoyed at how twitchy the camera rotation was, so I did some digging and found a hard-coded floating point constant that can be used to tweak sensitivity. It's located at offset 0x11daa4 in sh3.exe (seems valid for both raw Steam and h.sie patched one), and by default is set to 1/600. Thus for instance changing bytes like this to reduce it to 1/3600 makes all camera rotations with the mouse a lot slower:

Code:
0011DAA4: 0e -> b4
0011DAA5: 74 -> a2
0011DAA6: DA -> 91
0011DAA7: 3a -> 39
Maybe someone can make a more convenient way to do this, but it works for me
hello a.g. and wellcome,

it works on my machine too!
but i think that you made it very slow now.
if we want ,for example,...1/1800 what are the values that must be entered ?
__________________
Knowledge is the only thing that nobody can ever take from you...



Mediafire page:http://www.mediafire.com/folder/da50.../Makman94_Mods
makman94 is offline   Reply With Quote
Old 11-07-15, 01:30 PM   #6
a.g.
Swabbie
 
Join Date: Nov 2015
Posts: 11
Downloads: 18
Uploads: 0
Default

I normally set my OS mouse sensitivity high, so I needed a lot of correction (although after a bit of play, maybe 6x is a tiny bit too much even for me ). The value is just a single precision floating point number, and here's a lookup table generated with a quick script:

1x slower: 0e 74 da 3a (i.e. original value)
2x slower: 0e 74 5a 3a
3x slower: b4 a2 11 3a
4x slower: 0e 74 da 39
5x slower: 3e c3 ae 39
6x slower: b4 a2 91 39
7x slower: 34 a9 79 39
8x slower: 0e 74 5a 39
9x slower: 45 2e 42 39
a.g. is offline   Reply With Quote
Old 11-12-15, 03:42 AM   #7
a.g.
Swabbie
 
Join Date: Nov 2015
Posts: 11
Downloads: 18
Uploads: 0
Default

I put those values from the table into a small patch kit, because I didn't feel like making a custom program to change the value arbitrarily. I also couldn't find how to upload files here, so here's a dropbox link:

https://www.dropbox.com/s/2ukktbo3do...esens.zip?dl=1
a.g. is offline   Reply With Quote
Old 11-15-15, 06:06 PM   #8
Seebär
Swabbie
 
Join Date: Oct 2005
Posts: 5
Downloads: 17
Uploads: 0
Icon14 Great!!

Thanks a lot a.g for this batch file.
For me, in first person view in SH3, the mouse sensivity was also way too high.

I'm using the /2 slowdown, and it is much better now.

Thanks for sharing this!
Seebär is offline   Reply With Quote
Old 11-15-15, 06:55 PM   #9
Aktungbby
Gefallen Engel U-666
 
Aktungbby's Avatar
 
Join Date: Jul 2013
Location: On a tilted, overheated, overpopulated spinning mudball on Collision course with Andromeda Galaxy
Posts: 29,997
Downloads: 24
Uploads: 0


Default Welcome back

Seebär!
__________________

"Only two things are infinite; The Universe and human squirrelyness?!!
Aktungbby is offline   Reply With Quote
Old 08-23-22, 12:54 AM   #10
fkampf
Stowaway
 
Posts: n/a
Downloads:
Uploads:
Default

Quote:
Originally Posted by a.g. View Post
I normally set my OS mouse sensitivity high, so I needed a lot of correction (although after a bit of play, maybe 6x is a tiny bit too much even for me ). The value is just a single precision floating point number, and here's a lookup table generated with a quick script:

1x slower: 0e 74 da 3a (i.e. original value)
2x slower: 0e 74 5a 3a
3x slower: b4 a2 11 3a
4x slower: 0e 74 da 39
5x slower: 3e c3 ae 39
6x slower: b4 a2 91 39
7x slower: 34 a9 79 39
8x slower: 0e 74 5a 39
9x slower: 45 2e 42 39
Hi
I found on SH4 Gold Edition (Ubiconnect) the address you want start to edit is:
00197E90
but the values to slow down mouse are the same. Thank you.
Too bad this tweak isn't valid for keyboard too, it remains too fast for aiming, even with CTRL
  Reply With Quote
Old 09-13-22, 12:51 AM   #11
Aktungbby
Gefallen Engel U-666
 
Aktungbby's Avatar
 
Join Date: Jul 2013
Location: On a tilted, overheated, overpopulated spinning mudball on Collision course with Andromeda Galaxy
Posts: 29,997
Downloads: 24
Uploads: 0


Default

fkampf! on the surface after a 12 year silent run!"
__________________

"Only two things are infinite; The Universe and human squirrelyness?!!
Aktungbby is offline   Reply With Quote
Old 06-17-17, 09:33 PM   #12
Benets
Nub
 
Join Date: Jun 2017
Posts: 2
Downloads: 0
Uploads: 0
Default Invert mouse and sensitivity

You can invert mouse on CFG. I did that and works perfectly. I've also change the speed to be the lowest speed as default and ctr is fast and shift faster.

On "command_en.cfg"

replace the [cmd80] to [cmd91] with this text below.
It simply change the position of command to up and down and speed with ctrl holding to normal and vice versa

[Cmd80]
Name=To_left
Ctxt=1,2,3,5,6,9
Key0=0x25,Rc,""

[Cmd81]
Name=To_left_fast
Ctxt=1,2,3,5,6,9
Key0=0x25,Rs,""

[Cmd82]
Name=To_left_slow
Ctxt=1,2,3,5,6,9
MnID=0x31000001
Key0=0x25,R,""

[Cmd83]
Name=To_right
Ctxt=1,2,3,5,6,9
Key0=0x27,Rc,""
Key1=0xb0,Rc,""

[Cmd84]
Name=To_right_fast
Ctxt=1,2,3,5,6,9
Key0=0x27,Rs,""
Key1=0xb0,Rs,""

[Cmd85]
Name=To_right_slow
Ctxt=1,2,3,5,6,9
MnID=0x31000003
Key0=0x27,R,""
Key1=0xb0,R,""

[Cmd86]
Name=To_up
Ctxt=1,2,3,5,6,9
Key0=0x28,Rc,""
Key1=0xb1,Rc,""

[Cmd87]
Name=To_up_fast
Ctxt=1,2,3,5,6,9
Key0=0x28,Rs,""
Key1=0xb1,Rs,""

[Cmd88]
Name=To_up_slow
Ctxt=1,2,3,5,6,9
MnID=0x31000004
Key0=0x28,R,""
Key1=0xb1,R,""

[Cmd89]
Name=To_down
Ctxt=1,2,3,5,6,9
Key0=0x26,Rc,""

[Cmd90]
Name=To_down_fast
Ctxt=1,2,3,5,6,9
Key0=0x26,Rs,""

[Cmd91]
Name=To_down_slow
Ctxt=1,2,3,5,6,9
MnID=0x31000002
Key0=0x26,R,""
Benets is offline   Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -5. The time now is 05:27 AM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright © 1995- 2025 Subsim®
"Subsim" is a registered trademark, all rights reserved.