As the title states, my GZDoom is having a hard time saving three particular preferences - Allow Crouch, Allow Jump and Allow Freeload. For some unknown reason, they are always set to default, which is on, which is not what I prefer.. All other settings save just fine. Only these 3 that refuse.
Does anybody else get this behavior?
GZDoom 4.13.2 Silicon not saving user settings
Moderator: GZDoom Developers
Forum rules
Contrary to popular belief, we are not all-knowing-all-seeing magical beings!
If you want help you're going to have to provide lots of info. Like what is your hardware, what is your operating system, what version of GZDoom/LZDoom/whatever you're using, what mods you're loading, how you're loading it, what you've already tried for fixing the problem, and anything else that is even remotely relevant to the problem.
We can't magically figure out what it is if you're going to be vague, and if we feel like you're just wasting our time with guessing games we will act like that's what you're really doing and won't help you.
Contrary to popular belief, we are not all-knowing-all-seeing magical beings!
If you want help you're going to have to provide lots of info. Like what is your hardware, what is your operating system, what version of GZDoom/LZDoom/whatever you're using, what mods you're loading, how you're loading it, what you've already tried for fixing the problem, and anything else that is even remotely relevant to the problem.
We can't magically figure out what it is if you're going to be vague, and if we feel like you're just wasting our time with guessing games we will act like that's what you're really doing and won't help you.
-
- Posts: 42
- Joined: Mon Nov 18, 2024 3:08 pm
-
-
- Posts: 26877
- Joined: Tue Jul 15, 2003 4:58 pm
- Location: Scotland
Re: GZDoom 4.13.2 Silicon not saving user settings
Could you be auto-loading a mod that explicitly deactivates them?
BTW, this seems likely to be more of a technical issue than a bug. I'll wait to see how the discussion pans out but I will move the thread for you if that turns out to be the case.
BTW, this seems likely to be more of a technical issue than a bug. I'll wait to see how the discussion pans out but I will move the thread for you if that turns out to be the case.
-
- Posts: 42
- Joined: Mon Nov 18, 2024 3:08 pm
Re: GZDoom 4.13.2 Silicon not saving user settings
Ah, sorry, I'm new; I guess you're right, it may not actually be a bug, I was hoping someone else might chime in, but the more I think about it, the more I wonder if it's a launcher thing. I can make a new topic if it doesn't belong here -
But to answer your question, it's not an autoload issue, it was acting like this right out of the box, nothing but an IWAD loaded. FWIW I checked my GZDoom ini and freelook is set to false...
But to answer your question, it's not an autoload issue, it was acting like this right out of the box, nothing but an IWAD loaded. FWIW I checked my GZDoom ini and freelook is set to false...

-
- Posts: 2149
- Joined: Thu May 02, 2013 1:27 am
- Operating System Version (Optional): Windows 10
- Graphics Processor: nVidia with Vulkan support
- Location: Brazil
Re: GZDoom 4.13.2 Silicon not saving user settings
The only options I'm aware of for disabling crouch, jump and freelook are the ones in the "Gameplay Options" menu, and the options in that menu are what's called "dmflags". Those don't get saved like other options because they were originally made for configuring multiplayer games. (And still are mostly for that)
If you want them to stay on, you can use an autoexec file to set them on when GZDoom starts, though I don't know where you'd put it on Mac OS.
If you want them to stay on, you can use an autoexec file to set them on when GZDoom starts, though I don't know where you'd put it on Mac OS.
-
- Posts: 42
- Joined: Mon Nov 18, 2024 3:08 pm
Re: GZDoom 4.13.2 Silicon not saving user settings
Hey, nice! That makes sense, that I couldn't find where they were saved.. They weren't. I'm pretty sure I know where to put the auto exec file, just gotta figure out what it needs. Thanks, this is a nice solution!phantombeta wrote: ↑Wed Nov 20, 2024 1:27 am The only options I'm aware of for disabling crouch, jump and freelook are the ones in the "Gameplay Options" menu, and the options in that menu are what's called "dmflags". Those don't get saved like other options because they were originally made for configuring multiplayer games. (And still are mostly for that)
If you want them to stay on, you can use an autoexec file to set them on when GZDoom starts, though I don't know where you'd put it on Mac OS.
-
- Posts: 42
- Joined: Mon Nov 18, 2024 3:08 pm
Re: GZDoom 4.13.2 Silicon not saving user settings
Soo, I'm back; I figured out where to *put* the autoexec.cfg file, (I think you can define the path in the main cfg.ini file) but I realized I don't know the commands to, "set flags" maybe? I'm not sure that's what it's called, but I looked at a list of console commands for GZDoom (all of them I guess) and I couldn't find anything related to crouch/jump/freelook. It couldn't be a straightforward as simply as putting "allowcrouch true" ?
-
- Posts: 2149
- Joined: Thu May 02, 2013 1:27 am
- Operating System Version (Optional): Windows 10
- Graphics Processor: nVidia with Vulkan support
- Location: Brazil
Re: GZDoom 4.13.2 Silicon not saving user settings
You just need to put this in the autoexec file:
Code: Select all
sv_nojump true
sv_nocrouch true
sv_nofreelook true