I had nonlinearity to the maximum, but the feeling of driving was still not realistic for me. The driving was still very sensitive and linear, it wasn't even like in a car, and not like a truck at all.
I tried a mods to adjust the driving to realism, but it was still not good. I thought the steering wheel just couldn't be set to reality.
But now I have found advice on how to edit controls.sii
here I attach the original text from the author of this adjustment:
"One way to fix this is to use non-linearity. This makes the steering less sensitive near the center, while still allowing for full steering lock. But as you may know, using it is awful. That's because the way ETS/ATS calculates non-linearity causes a dead-zone at the center of steering, which feels sluggish and unresponsive. This non-linearity is mostly useful for game-pads.
The goal of this post is to fix that non-linearity, and luckily, it's very easy for you to implement the fix. The way it's fixed is by changing the non-linearity calculation to make the steering linear (no dead-zone) near the center, then having it ramp up near full lock, so that you can still turn your wheels all the way."
the following parameters are interchanged:
"mix steering `dsteering - (pow(normalize(abs(sel(c_jisteer, -j_steer?0, j_steer?0)), c_steer_dz), (1.0 + c_steer_func * 0.5)) * sign(sel(c_jisteer, -j_steer?0, j_steer?0)))`"
for
"mix steering `dsteering - (( A / B * 1/70 - 1) * (1 - pow(normalize(abs(j_steer?0), c_steer_dz), 4)) * c_steer_func/2 + 1) * normalize(abs(j_steer?0), c_steer_dz) * sign(sel(c_jisteer, -j_steer?0, j_steer?0))`"
In the replacement line, you'll see A and B near the beginning. Change these. A is the number of degrees your steering wheel rotates (e.g. 1080 for T150). B is the steering ratio. (for my T150 38CM is the best settins: "mix steering `dsteering - (( 1080 / 45 * 1/70 - 1).......)
Choose a steering ratio. This is the sensitivity near the center of steering. A higher number means lower sensitivity. A normal car is usually around 15-20. A truck might be 20-40. I like mine at 35 for 1080 - 38cm steering wheel. For reference, default steering with a 900 degree steering wheel is 12.86, way too low!
Open the game, go to settings, and set steering non-linearity to max (full right). Your sensitivity should be at max as well (always when using a steering wheel). The steering near the center of you steering wheel should now have the steering ratio you set in the replacement line. If this is too little sensitivity, dial the non-linearity slider back. Turning it down makes the steering more sensitive near the center. At 0 (full left) the steering is completely linear, and the fix has no effect.
Now I have finally set up the steering wheel as I always wanted, with a great deal of non-linearity and the feeling of driving is really close to the reality in the truck. Now I play ETS2 / ATS with much more pleasure than before
(I did not find this information on the forum. It is possible that this editing of controls.sii is already presented here on the forum, and if so, I apologize for the duplication, and the moderator delete the topic.)